        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);
            color: #d4af37;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .star {
            position: absolute;
            background: #d4af37;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 0.8; }
        }

        .container {
            text-align: center;
            padding: 20px;
            padding-bottom: 100px;
            max-width: 900px;
            position: relative;
            z-index: 10;
        }

        .logo {
            font-size: 5rem;
            font-weight: bold;
            background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 50%, #d4af37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: 0.2rem;
            animation: none !important;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
        }

        @keyframes glow {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3); }
        }

        .subtitle {
            font-size: 1.3rem;
            color: #b8956a;
            margin-bottom: 3rem;
            letter-spacing: 0.1rem;
            font-style: italic;
        }

        .divider {
            width: 200px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            margin: 2rem auto;
        }

        .main-text {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 1rem;
            font-weight: 300;
            letter-spacing: 0.05rem;
        }

        .description {
            font-size: 1.1rem;
            color: #b8956a;
            line-height: 1.8;
            margin: 2rem auto;
            max-width: 600px;
        }

        .wing {
            display: none;
        }

        .wing-left {
            left: -100px;
            top: 50%;
            transform: translateY(-50%) scaleX(-1);
        }

        .wing-right {
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
        }

        @keyframes float {
            0%, 100% { transform: translateY(-50%) translateX(0); }
            50% { transform: translateY(-50%) translateX(20px); }
        }

        .logo-image {
            margin: 2rem 0;
            animation: fadeIn 1.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 175, 55, 0.1);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            color: #d4af37;
            transition: all 0.3s ease;
            text-decoration: none;
            cursor: pointer;
        }

        .social-btn:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: #d4af37;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        .about-btn {
            font-size: 1.3rem;
            font-weight: bold;
            font-family: 'Georgia', serif;
        }

        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            text-align: center;
            background: rgba(10, 10, 10, 0.8);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            backdrop-filter: blur(10px);
            z-index: 100;
        }

        .footer p {
            color: #8b7355;
            font-size: 0.9rem;
            letter-spacing: 0.05rem;
        }

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
        .popup-content {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);
            border: 2px solid rgba(212, 175, 55, 0.5);
            border-radius: 15px;
            padding: 3rem 2.5rem;
            max-width: 600px;
            width: 100%;
            position: relative;
            box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
            transform: scale(0.95);
            transition: transform 0.2s ease;
        }
        
        .popup-overlay.active .popup-content {
            transform: scale(1);
        }       
        
        
                @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .popup-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 35px;
            height: 35px;
            background: rgba(212, 175, 55, 0.1);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            color: #d4af37;
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .popup-close:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: #d4af37;
            transform: rotate(90deg);
        }

        .popup-title {
            font-size: 2rem;
            color: #d4af37;
            margin-bottom: 1.5rem;
            text-align: center;
            letter-spacing: 0.15rem;
        }

        .popup-text {
            font-size: 1.05rem;
            color: #b8956a;
            line-height: 1.9;
            margin-bottom: 2rem;
            text-align: justify;
        }

        .audio-player {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 10px;
        }

        .play-btn {
            padding: 0.8rem 2.5rem;
            background: rgba(212, 175, 55, 0.1);
            border: 2px solid rgba(212, 175, 55, 0.4);
            border-radius: 30px;
            color: #d4af37;
            font-size: 1rem;
            font-family: 'Georgia', serif;
            letter-spacing: 0.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .play-btn:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: #d4af37;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        .play-btn.playing {
            background: rgba(212, 175, 55, 0.2);
            border-color: #d4af37;
        }

        @media (max-width: 768px) {
            body {
                overflow: hidden;
                height: 100vh;
            }
            
            .container {
                padding: 10px 15px;
                padding-bottom: 70px;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            
            .logo { 
                font-size: 2.5rem;
                margin-bottom: 0.5rem;
            }
            
            .subtitle { 
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }
            
            .divider {
                margin: 1rem auto;
                width: 150px;
            }
            
            .logo-image {
                margin: 1rem 0;
            }
            
            .logo-image img {
                max-width: 240px !important;
            }
            
            .main-text { 
                font-size: 1.5rem;
            }
            
            .description { 
                font-size: 0.9rem;
                margin: 1rem auto;
                line-height: 1.6;
            }
            
            .wing { 
                display: none;
            }
            
            .social-links { 
                gap: 1rem;
                margin-top: 1.5rem;
            }
            
            .social-btn { 
                width: 40px;
                height: 40px;
            }

            .about-btn {
                font-size: 1.1rem;
            }
            
            .social-btn svg {
                width: 20px;
                height: 20px;
            }
            
            .social-links-container.active {
    max-height: 9999px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.action-buttons {
    margin-top: 1.5rem !important;
}
            
            .footer {
                padding: 1rem;
            }
            
            .footer p { 
                font-size: 0.7rem;
            }

            .popup-content {
                padding: 2rem 1.5rem;
                margin: 10px;
            }

            .popup-title {
                font-size: 1.5rem;
            }

            .popup-text {
                font-size: 0.95rem;
                line-height: 1.7;
            }

            .play-btn {
                padding: 0.7rem 2rem;
                font-size: 0.9rem;
            }
            
                .popup-overlay {
        align-items: flex-start;
        padding-top: 20vh;
    }
    
    .popup-content {
        padding: 2rem 1.5rem;
        margin: 10px;
        max-height: 70vh;
        overflow-y: auto;
    }

    .popup-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .popup-text {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left; /* Better than justify on mobile */
    }

    .play-btn {
        padding: 0.7rem 2rem;
        font-size: 0.9rem;
    }
    
    .audio-player {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .popup-close {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }
}
            
            
        .action-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.main-btn {
    padding: 0.9rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: #d4af37;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.main-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.main-btn.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.social-links-container {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.6s ease !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.social-links-container.active {
    max-height: 9999px !important;
    opacity: 1 !important;
    margin-top: 2rem !important;
    visibility: visible !important;
    overflow: visible !important;
}
        