        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: linear-gradient(rgba(255, 250, 245, 0.9), rgba(255, 245, 235, 0.85)),
                        url('https://images.unsplash.com/photo-1490750967868-88aa4486c946?w=1200') center/cover fixed;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            position: relative;
            overflow-x: hidden;
        }

        .floating-element {
            position: absolute;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
            pointer-events: none;
            font-size: 24px;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-delay: 1s;
        }

        .floating-element:nth-child(3) {
            bottom: 15%;
            left: 8%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(4) {
            bottom: 25%;
            right: 10%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        .container {
            max-width: 600px;
            width: 100%;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .profile {
            text-align: center;
            margin-bottom: 40px;
        }

        .profile-pic {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 3px solid rgba(160, 120, 90, 0.3);
            margin: 0 auto 24px;
            object-fit: cover;
            background: linear-gradient(135deg, #d4a574 0%, #c19a6b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            box-shadow: 0 8px 24px rgba(139, 105, 80, 0.2);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 24px rgba(139, 105, 80, 0.2);
            }
            50% {
                transform: scale(1.02);
                box-shadow: 0 12px 32px rgba(139, 105, 80, 0.3);
            }
        }

        .username {
            font-size: 25px;
            font-weight: 400;
            color: #6b5444;
            margin-bottom: 12px;
            letter-spacing: 1px;
            font-style: italic;
        }

        .bio {
            font-size: 16px;
            color: #8b7355;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .links {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .link-button {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(160, 120, 90, 0.2);
            color: #6b5444;
            text-decoration: none;
            padding: 22px 32px;
            border-radius: 20px;
            font-size: 16px;
            font-weight: 400;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(139, 105, 80, 0.15);
            animation: slideIn 0.6s ease-out backwards;
        }

        .link-button:nth-child(1) { animation-delay: 0.1s; }
        .link-button:nth-child(2) { animation-delay: 0.2s; }
        .link-button:nth-child(3) { animation-delay: 0.3s; }
        .link-button:nth-child(4) { animation-delay: 0.4s; }
        .link-button:nth-child(5) { animation-delay: 0.5s; }
        .link-button:nth-child(6) { animation-delay: 0.6s; }
        .link-button:nth-child(7) { animation-delay: 0.7s; }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .link-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .link-button:hover::before {
            left: 100%;
        }

        .link-button:hover {
            transform: translateY(-4px) scale(1.02);
            border-color: rgba(160, 120, 90, 0.4);
            box-shadow: 0 8px 28px rgba(139, 105, 80, 0.25);
            background: rgba(255, 255, 255, 0.95);
        }

        .link-button:active {
            transform: translateY(-2px) scale(1.01);
        }

        .footer {
            text-align: center;
            margin-top: 48px;
            color: #8b7355;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 1px;
            opacity: 0;
            animation: fadeIn 1s ease-out 1s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .sparkle {
            position: absolute;
            font-size: 12px;
            opacity: 0;
            animation: sparkle 2s ease-in-out infinite;
        }

        .sparkle:nth-child(5) {
            top: 30%;
            left: 5%;
            animation-delay: 0.5s;
        }

        .sparkle:nth-child(6) {
            top: 60%;
            right: 8%;
            animation-delay: 1.5s;
        }

        @keyframes sparkle {
            0%, 100% {
                opacity: 0;
                transform: scale(0);
            }
            50% {
                opacity: 1;
                transform: scale(1);
            }
        }