@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");

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

:root {
    --primary-color: #10B981;
    --primary-glow: rgba(16, 185, 129, 0.4);
    --dark-color: #050807;
    --card-color: rgba(20, 28, 24, 0.6);
    --light-color: #F8FAFC;
    --muted-color: #9CA3AF;
    --secondary-color: #059669;
    --bg-color: #0A0E0C;
    --gold-color: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --border-color: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FDE047 100%);
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--light-color);
    background-color: var(--bg-color);
    font-size: 16px;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Header */
header {
    background: rgba(10, 14, 12, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.25rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.7rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.02em;
}

.logo::before {
    content: "🕌";
    -webkit-text-fill-color: initial;
    filter: drop-shadow(0 2px 8px var(--primary-glow));
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--muted-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

 .nav-links a:hover {
    color: var(--light-color);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
    color: var(--primary-color);
    background: rgba(16, 185, 129, 0.1);
}

/* Main Content */
main {
    padding-top: 100px;
    min-height: calc(100vh - 100px);
}

.content {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    position: relative;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: var(--light-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.page-header .last-updated {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Section Cards - Glassmorphic */
.section-card {
    background: var(--card-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.section-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

.section-card:hover::before {
    opacity: 1;
}

.section-card h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.01em;
}

.section-card h3 {
    color: var(--light-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    letter-spacing: -0.01em;
}

.section-card p {
    color: var(--muted-color);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.section-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-card ul li {
    color: var(--muted-color);
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.section-card ul li::before {
    content: "✦";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    top: 0.5rem;
}

.section-card strong {
    color: var(--light-color);
    font-weight: 600;
}

/* Links */
.section-card a:not(.external-link) {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px dashed rgba(16, 185, 129, 0.4);
}

.section-card a:not(.external-link):hover {
    color: var(--gold-color);
    border-bottom-color: var(--gold-color);
}

/* External Links List */
.external-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.external-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.external-link:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.external-link span {
    color: var(--light-color);
    font-weight: 500;
    font-size: 1.05rem;
}

.external-link .arrow {
    margin-left: auto;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.external-link:hover .arrow {
    transform: translateX(5px);
}

/* Simple External Links List */
.external-links-simple {
    margin-top: 1.5rem;
}

.external-links-simple ul {
    list-style: none !important;
    padding: 0 !important;
}

.external-links-simple ul li {
    padding: 0.5rem 0 !important;
}

.external-links-simple ul li::before {
    content: "🔗" !important;
    color: var(--primary-color) !important;
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 1rem !important;
}

.external-links-simple a {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.external-links-simple a:hover {
    color: var(--gold-color) !important;
}

/* Contact Card Special */
.contact-card {
    background: linear-gradient(135deg, rgba(20, 28, 24, 0.8) 0%, rgba(16, 185, 129, 0.15) 100%);
    text-align: center;
    border-color: rgba(16, 185, 129, 0.2);
}

.contact-card .email {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light-color);
    padding: 1.25rem 2.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin-top: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.contact-card .email:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 30px var(--primary-glow);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--muted-color);
    font-size: 0.95rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
    background: rgba(5, 8, 7, 0.9);
}

footer a {
    color: var(--muted-color);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

footer a:hover {
    color: var(--primary-color);
}

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-card {
        padding: 1.5rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-links a {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    header {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2.8rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 10rem 2rem 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

.hero-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 2rem;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--muted-color);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.app-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--light-color);
    color: var(--dark-color);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.app-store-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2), 0 0 20px var(--primary-glow);
    background: #ffffff;
}

/* Feature Grid */
.features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--light-color);
    letter-spacing: -0.02em;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--card-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(16, 185, 129, 0.1);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature-item h3 {
    color: var(--light-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-item p {
    color: var(--muted-color);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Badge/Tag */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 0.75rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge.gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-color);
    border-color: rgba(212, 175, 55, 0.3);
}

.badge.new {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* CTA Section */
.cta {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.cta .content {
    background: rgba(20, 28, 24, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 32px;
    padding: 5rem 3rem;
    max-width: 900px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 1.25rem;
    color: var(--muted-color);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}