:root {
    --bg-deep: #0f0c29;
    --bg-mid: #302b63;
    --bg-light: #24243e;
    --accent-gold: #ffd700;
    --accent-neon: #00f3ff;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--bg-deep), var(--bg-mid), var(--bg-light));
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Image Overlay */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: -1;
    filter: contrast(1.2) brightness(0.8);
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    z-index: 10;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: float 6s ease-in-out infinite;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 10px var(--accent-neon));
}

.glow-animation {
    animation: pulseGlow 3s infinite alternate;
}

/* Typography */
h1.english-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--text-primary), var(--accent-neon));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

h2.urdu-title {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.urdu-desc {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.2rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Button */
.cta-container {
    margin-top: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--bg-mid), var(--bg-deep));
    border: 1px solid var(--accent-neon);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.5);
    background: linear-gradient(45deg, var(--bg-deep), var(--bg-mid));
    border-color: var(--accent-gold);
}

.cta-button .icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 5px var(--accent-neon)); }
    100% { filter: drop-shadow(0 0 20px var(--accent-neon)); }
}

/* Responsive */
@media (max-width: 600px) {
    h1.english-title {
        font-size: 2.5rem;
    }
    
    h2.urdu-title {
        font-size: 2rem;
    }
    
    .glass-card {
        padding: 3rem 1.5rem;
    }
}
