:root {
            /* Dark Theme Only */
            --primary-peach: #D4926F;
            --soft-pink: #B87070;
            --warm-beige: #A68B5B;
            --gold-accent: #E6B85C;
            --text-dark: #F5E6D3;
            --text-light: #E0C9A0;
            --bg-light: linear-gradient(135deg, #2D1B1B 0%, #3D2A2A 50%, #4A3333 100%);
            --card-light: rgba(45, 27, 27, 0.85);
            --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Floating Background Animation */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-particle {
            position: absolute;
            border-radius: 50%;
            background: var(--primary-peach);
            opacity: 0.15;
            animation: float 8s ease-in-out infinite;
        }

        .floating-particle:nth-child(1) {
            width: 25px;
            height: 25px;
            top: 15%;
            left: 8%;
            animation-delay: 0s;
        }

        .floating-particle:nth-child(2) {
            width: 18px;
            height: 18px;
            top: 65%;
            left: 85%;
            animation-delay: 2s;
        }

        .floating-particle:nth-child(3) {
            width: 30px;
            height: 30px;
            top: 35%;
            left: 75%;
            animation-delay: 4s;
        }

        .floating-particle:nth-child(4) {
            width: 22px;
            height: 22px;
            top: 85%;
            left: 15%;
            animation-delay: 1s;
        }

        .floating-particle:nth-child(5) {
            width: 16px;
            height: 16px;
            top: 25%;
            left: 45%;
            animation-delay: 3s;
        }

        .floating-particle:nth-child(6) {
            width: 20px;
            height: 20px;
            top: 55%;
            left: 25%;
            animation-delay: 5s;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg) scale(1); 
                opacity: 0.15;
            }
            25% { 
                transform: translateY(-25px) rotate(90deg) scale(1.1); 
                opacity: 0.25;
            }
            50% { 
                transform: translateY(-15px) rotate(180deg) scale(0.9); 
                opacity: 0.2;
            }
            75% { 
                transform: translateY(-30px) rotate(270deg) scale(1.05); 
                opacity: 0.18;
            }
        }

        /* Main Container */
        .container {
            max-width: 420px;
            margin: 0 auto;
            padding: 80px 25px 50px;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        /* Profile Section */
        .profile-section {
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeInUp 1.2s ease 0.3s forwards;
        }

        .profile-picture {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-peach), var(--gold-accent), var(--soft-pink));
            background-size: 300% 300%;
            padding: 5px;
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .profile-picture:hover {
            transform: scale(1.05);
        }

        .profile-inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--warm-beige);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .profile-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .channel-name {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
            background: linear-gradient(45deg, var(--text-dark), var(--gold-accent), var(--primary-peach));
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textGradient 3s ease-in-out infinite;
        }

        @keyframes textGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .bio {
            font-size: 17px;
            color: var(--text-light);
            font-weight: 400;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 10px;
            position: relative;
            padding: 0 20px;
        }

        .bio::before, .bio::after {
            content: "🪷";
            position: absolute;
            opacity: 0.6;
        }

        .bio::before {
            left: 0;
            top: 0;
        }

        .bio::after {
            right: 0;
            bottom: 0;
        }

        .bio-hindi {
            font-size: 15px;
            color: var(--text-light);
            font-weight: 400;
            opacity: 0.8;
            position: relative;
        }

        .bio-hindi::before, .bio-hindi::after {
            content: "🌸";
            position: absolute;
            opacity: 0.5;
        }

        .bio-hindi::before {
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .bio-hindi::after {
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Links Section */
        .links-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .link-button {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 22px 28px;
            background: var(--card-light);
            border: none;
            border-radius: 20px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 17px;
            box-shadow: var(--shadow-light);
            backdrop-filter: blur(15px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateX(-60px);
            cursor: pointer;
        }

        .link-button:nth-child(1) { animation: slideInLeft 1s ease 0.5s forwards; }
        .link-button:nth-child(2) { animation: slideInLeft 1s ease 0.7s forwards; }
        .link-button:nth-child(3) { animation: slideInLeft 1s ease 0.9s forwards; }
        .link-button:nth-child(4) { animation: slideInLeft 1s ease 1.1s forwards; }

        .link-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .link-button:hover::before {
            left: 100%;
        }

        .link-button:hover {
            transform: translateY(-6px) scale(1.03);
        }

        .link-icon {
            font-size: 28px;
            margin-right: 20px;
            transition: all 0.4s ease;
        }

        .link-text {
            flex: 1;
            text-align: left;
            transition: all 0.4s ease;
        }

        /* Individual Button Styles */
        .youtube-btn {
            background: linear-gradient(135deg, #FF6B6B, #FF8E8E, #FFB3B3);
        }

        .youtube-btn:hover {
            background: linear-gradient(135deg, #FF5252, #FF7979, #FFA6A6);
            box-shadow: 0 20px 60px rgba(255, 107, 107, 0.5);
        }

        .youtube-btn:hover .link-icon {
            transform: scale(1.3) rotate(10deg);
            animation: bounce 0.6s ease;
        }

        .telegram-btn {
            background: linear-gradient(135deg, #54A9EB, #79C3F0, #9DD4F5);
        }

        .telegram-btn:hover {
            background: linear-gradient(135deg, #4A9BE8, #6BB8ED, #8CCEF2);
            box-shadow: 0 20px 60px rgba(84, 169, 235, 0.5);
        }

        .telegram-btn:hover .link-icon {
            transform: scale(1.3) translateX(8px);
            animation: pulse 0.6s ease;
        }

        .instagram-btn {
            background: linear-gradient(135deg, #E1306C, #F56565, #FCCC63, #FF9FF3);
        }

        .instagram-btn:hover {
            background: linear-gradient(135deg, #D42858, #F45353, #FBC02D, #FF8AEB);
            box-shadow: 0 20px 60px rgba(225, 48, 108, 0.5);
        }

        .instagram-btn:hover .link-icon {
            transform: scale(1.3) rotate(-10deg);
            animation: wiggle 0.6s ease;
        }

        .facebook-btn {
            background: linear-gradient(135deg, #1877F2, #42A5F5, #64B5F6);
        }

        .facebook-btn:hover {
            background: linear-gradient(135deg, #166FE5, #2196F3, #5EADF5);
            box-shadow: 0 20px 60px rgba(24, 119, 242, 0.5);
        }

        .facebook-btn:hover .link-icon {
            transform: scale(1.3);
            animation: heartbeat 0.8s ease;
        }

        /* Button Animations */
        @keyframes bounce {
            0%, 100% { transform: scale(1.3) rotate(10deg) translateY(0); }
            50% { transform: scale(1.4) rotate(15deg) translateY(-3px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1.3) translateX(8px); }
            50% { transform: scale(1.4) translateX(10px); }
        }

        @keyframes wiggle {
            0%, 100% { transform: scale(1.3) rotate(-10deg); }
            25% { transform: scale(1.4) rotate(-15deg); }
            75% { transform: scale(1.4) rotate(-5deg); }
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1.3); }
            50% { transform: scale(1.5); }
        }

        /* Main Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Footer Styles */
        .footer {
            margin-top: 80px;
            padding: 40px 25px 30px;
            text-align: center;
            position: relative;
        }

        .footer-content {
            max-width: 420px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1.2s ease 1.5s forwards;
        }

        .mehndi-decoration {
            font-size: 24px;
            color: var(--gold-accent);
            margin: 15px 0;
            opacity: 0.8;
            animation: sparkle 3s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% { 
                opacity: 0.8; 
                transform: scale(1) rotate(0deg); 
            }
            50% { 
                opacity: 1; 
                transform: scale(1.1) rotate(5deg); 
            }
        }

        .footer-text {
            font-size: 16px;
            color: var(--text-light);
            font-weight: 400;
            margin: 20px 0;
            line-height: 1.6;
        }

        .creator-link {
            color: var(--gold-accent);
            text-decoration: none;
            font-weight: 700;
            position: relative;
            transition: all 0.4s ease;
        }

        .creator-link::before {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold-accent), var(--primary-peach));
            transition: width 0.4s ease;
        }

        .creator-link:hover {
            color: var(--primary-peach);
            transform: translateY(-2px);
        }

        .creator-link:hover::before {
            width: 100%;
        }

        /* Desktop/Laptop Specific Styles */
        @media (min-width: 768px) {
            .container {
                max-width: 500px;
            }
            
            .link-button {
                padding: 22px 35px;
            }
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            .container {
                padding: 60px 20px 30px;
                max-width: 100%;
            }

            .profile-picture {
                width: 120px;
                height: 120px;
            }

            .channel-name {
                font-size: 26px;
            }

            .bio {
                font-size: 15px;
            }

            .bio-hindi {
                font-size: 14px;
            }

            .link-button {
                padding: 18px 22px;
                font-size: 15px;
            }

            .link-icon {
                font-size: 24px;
                margin-right: 16px;
            }

            .footer {
                margin-top: 60px;
            }

            .mehndi-decoration {
                font-size: 20px;
            }

            .footer-text {
                font-size: 14px;
            }
        }

        @media (max-width: 360px) {
            .container {
                padding: 50px 15px 25px;
            }

            .link-button {
                padding: 16px 20px;
                font-size: 14px;
            }

            .link-icon {
                font-size: 22px;
                margin-right: 14px;
            }

            .profile-picture {
                width: 100px;
                height: 100px;
            }
        }

        /* Loading Animation */
        .loading {
            opacity: 0;
        }

        .loaded {
            opacity: 1;
        }