/* Ron Penones | December 30th 2025 - Feel free to share and reproduce, the core idea is mine with some assistance of AI. Padayon! */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: url('01.jpg') no-repeat center center/cover;
            overflow: hidden;
            padding: 20px;
        }

        /* Glassmorphism effect tang ina! */
        .card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            padding: 40px;
            width: 100%;
            max-width: 350px;
            text-align: center;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
            animation: fadeIn 1s ease-in-out;
        }

        /* Circular sa profile picture ko dahil pogi ako. */
        .profile-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #00f2ff; /* Cyber Blue */
            box-shadow: 0 0 15px #00f2ff, 0 0 30px #00f2ff;
            margin-bottom: 25px;
        }

        /* Button para pipindutin. */
        .cyber-btn {
            display: inline-block;
            margin-top: 10px;
            padding: 12px 24px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #fff;
            background: #000;
            border: 2px solid #ff00ff;
            border-radius: 8px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 14px;
            box-shadow: 4px 4px 0px #ff00ff;
        }

        .cyber-btn:hover {
            background: #ff00ff;
            color: #000;
            box-shadow: 0px 0px 20px #ff00ff;
            transform: translateY(-2px);
        }

        .cyber-btn:active {
            transform: translate(2px, 2px);
            box-shadow: none;
        }

        /* Animations kemerot. */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Mobile viewing mga mars. */
        @media (max-width: 480px) {
            .card {
                padding: 30px 20px;
            }
            .profile-img {
                width: 120px;
                height: 120px;
            }
        }
