:root {
    --bg-primary: #04091A;
    --bg-secondary: #0A1128;
    --bg-tertiary: #131E3D;
    --accent: #E8B746;
    --accent-hover: #FADB7F;
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --border-color: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-primary);
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.text-center { text-align: center; }
.accent { color: var(--accent); }
.accent-text { color: var(--accent); }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; }
.pb-0 { padding-bottom: 0 !important; }
.mt-4 { margin-top: 1.5rem; }

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #D4A030);
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 183, 70, 0.4);
    color: #000;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(4, 9, 26, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(4, 9, 26, 0.85);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    display: inline-flex;
    align-items: center;
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.logo:hover {
    transform: scale(1.03);
}

.navbar.scrolled .logo {
    height: 42px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 5% 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at top right, rgba(232, 183, 70, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.1), transparent 50%),
        url('assets/images/omoades/africa-map-neon.jpeg') center/cover no-repeat;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 9, 26, 0.75) 0%, rgba(4, 9, 26, 0.85) 60%, var(--bg-primary) 100%);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDIiLz4KPC9zdmc+') repeat;
    opacity: 0.6;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 2;
}

.hero-title {
    font-size: 4.8rem;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.detail-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Sections */
.section {
    padding: 110px 5%;
}

.dark-bg { background-color: var(--bg-primary); }
.darker-bg { background-color: var(--bg-secondary); }

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

.text-center.section-title::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    width: 100px;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-content.reverse .text-content {
    order: 2;
}

.text-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.image-glow {
    position: relative;
}

.image-glow::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(232, 183, 70, 0.15) 0%, transparent 70%);
    z-index: 1;
    border-radius: 30px;
}

.image-content img {
    position: relative;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    z-index: 2;
    object-fit: cover;
}

.edition-frame img {
    background: #ffffff;
    object-fit: contain;
    padding: 50px;
    aspect-ratio: 4 / 3;
}

.ats-logo-frame img {
    background: #ffffff;
    object-fit: contain;
    padding: 60px;
    aspect-ratio: 1 / 1;
}

.flex-images {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.img-slide {
    width: 48% !important;
    height: 450px;
}

.translate-down {
    transform: translateY(40px);
}

.bullet-list { margin-top: 25px; }
.bullet-list li {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bullet-list i {
    font-size: 1.3rem;
}

/* Cards & Stats */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.card {
    background: linear-gradient(145deg, var(--bg-tertiary), rgba(19, 30, 61, 0.4));
    padding: 45px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(232, 183, 70, 0.3);
}

.card-img-placeholder {
    width: 85px;
    height: 85px;
    background: rgba(232, 183, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(232, 183, 70, 0.1);
}

.card h3 {
    font-size: 1.8rem;
}

.role {
    font-weight: 600;
    margin: 12px 0 25px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card p:not(.role) {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, background 0.3s ease;
}

.pulse-hover:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(232, 183, 70, 0.2);
}

.stat-item i {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.stat-item h4 { 
    margin-bottom: 8px; 
    font-size: 1.2rem;
}
.stat-item p { 
    color: var(--text-muted); 
    font-size: 1rem; 
}

.highlight-box {
    background: linear-gradient(135deg, rgba(232, 183, 70, 0.08), transparent);
    border: 1px solid rgba(232, 183, 70, 0.2);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--accent);
}

.highlight-box h3 { margin-bottom: 12px; color: var(--accent); font-size: 1.4rem;}
.highlight-box p { margin-bottom: 0; font-size: 1.1rem; }

/* Organizers Section */
.organizers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
}

.organizer-card {
    position: relative;
    background: linear-gradient(160deg, var(--bg-tertiary) 0%, rgba(19, 30, 61, 0.4) 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.5s ease,
                border-color 0.5s ease;
    isolation: isolate;
}

.organizer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--accent), transparent 40%, transparent 60%, var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
    pointer-events: none;
}

.organizer-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7),
                0 0 50px rgba(232, 183, 70, 0.15);
    border-color: transparent;
}

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

.organizer-img {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.organizer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.5s ease;
    filter: grayscale(25%) contrast(1.05);
}

.organizer-card:hover .organizer-img img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1);
}

.organizer-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
                rgba(4, 9, 26, 0) 0%,
                rgba(4, 9, 26, 0) 40%,
                rgba(19, 30, 61, 0.85) 85%,
                var(--bg-tertiary) 100%);
    pointer-events: none;
    z-index: 1;
}

.organizer-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, var(--accent), #D4A030);
    color: #000;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(232, 183, 70, 0.45);
    backdrop-filter: blur(10px);
}

.organizer-info {
    padding: 22px 28px 30px;
    position: relative;
    z-index: 2;
}

.organizer-info h3 {
    font-size: 1.55rem;
    margin-bottom: 4px;
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.organizer-role {
    color: var(--accent) !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    margin: 0 0 16px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.organizer-bio {
    color: var(--text-muted) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.organizer-socials {
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.organizer-card:hover .organizer-socials {
    opacity: 1;
    transform: translateY(0);
}

.organizer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.organizer-socials a:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 183, 70, 0.35);
}

@media (max-width: 768px) {
    .organizers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .organizer-socials { opacity: 1; transform: none; }
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: center;
    justify-items: center;
}

.partner-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 220px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(232, 183, 70, 0.6);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(232, 183, 70, 0.25);
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.partner-card:hover img {
    transform: scale(1.05);
}

.mb-5 { margin-bottom: 3rem; }

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .partner-card { padding: 18px; }
}

/* Partner page — benefits grid */
.partner-hero {
    min-height: 70vh;
}

.partner-hero .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: linear-gradient(160deg, var(--bg-tertiary) 0%, rgba(19, 30, 61, 0.4) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 38px 32px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(232, 183, 70, 0.35);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(232, 183, 70, 0.1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(232, 183, 70, 0.15), rgba(232, 183, 70, 0.05));
    border: 1px solid rgba(232, 183, 70, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 22px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 1rem;
}

/* Partnership tiers */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 55px;
    align-items: stretch;
}

.tier-card {
    position: relative;
    background: linear-gradient(160deg, var(--bg-tertiary) 0%, rgba(19, 30, 61, 0.4) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.tier-featured {
    border-color: rgba(232, 183, 70, 0.5);
    background: linear-gradient(160deg,
                rgba(232, 183, 70, 0.08) 0%,
                rgba(19, 30, 61, 0.6) 100%);
    box-shadow: 0 15px 40px rgba(232, 183, 70, 0.1);
    transform: translateY(-8px);
}

.tier-featured:hover {
    transform: translateY(-16px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(232, 183, 70, 0.15);
}

.tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #D4A030);
    color: #000;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 10px 25px rgba(232, 183, 70, 0.4);
}

.tier-header {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border-color);
}

.tier-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.tier-header h3 {
    font-size: 1.7rem;
    letter-spacing: -0.3px;
}

.tier-tagline {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tier-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.5;
}

.tier-features i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tier-footnote {
    margin-top: 50px;
    color: var(--text-muted);
    font-style: italic;
    font-size: 1rem;
}

/* Download variant of CTA card */
.download-cta .ticket-cta-pill {
    background: rgba(232, 183, 70, 0.18);
}

.partners-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

/* Navbar — action buttons cluster */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 900px) {
    .btn-nav { display: none; }
}

/* Ticket CTA Section */
.ticket-cta-section {
    padding: 90px 5%;
    background: var(--bg-primary);
    position: relative;
}

.ticket-cta {
    position: relative;
    background: linear-gradient(135deg,
                rgba(232, 183, 70, 0.06) 0%,
                rgba(19, 30, 61, 0.6) 50%,
                rgba(232, 183, 70, 0.06) 100%);
    border: 1px solid rgba(232, 183, 70, 0.25);
    border-radius: 32px;
    padding: 75px 60px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ticket-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(232, 183, 70, 0.25), transparent 45%),
        radial-gradient(circle at 100% 100%, rgba(232, 183, 70, 0.18), transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.ticket-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: linear-gradient(115deg, transparent 40%, rgba(232, 183, 70, 0.06) 50%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: ctaShine 6s ease-in-out infinite;
}

@keyframes ctaShine {
    0%, 100% { transform: translateX(-30%); }
    50% { transform: translateX(180%); }
}

.ticket-cta-content {
    position: relative;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.ticket-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(232, 183, 70, 0.15);
    border: 1px solid rgba(232, 183, 70, 0.4);
    color: var(--accent);
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.ticket-cta-pill i {
    animation: ctaPulse 1.6s ease-in-out infinite;
}

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

.ticket-cta-title {
    font-size: 3rem;
    margin-bottom: 22px;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.ticket-cta-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 42px;
}

.ticket-cta-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.btn-large {
    font-size: 1.05rem;
    padding: 16px 36px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(232, 183, 70, 0.35);
}

.btn-large i { font-size: 1rem; }

.btn-ghost {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
    background: rgba(232, 183, 70, 0.08);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.ticket-cta-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ticket-cta-meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.ticket-cta-meta i {
    color: var(--accent);
}

@media (max-width: 768px) {
    .ticket-cta-section { padding: 60px 5%; }
    .ticket-cta { padding: 50px 25px; border-radius: 24px; }
    .ticket-cta-title { font-size: 2rem; }
    .ticket-cta-desc { font-size: 1.05rem; margin-bottom: 32px; }
    .ticket-cta-actions { flex-direction: column; width: 100%; }
    .ticket-cta-actions a { width: 100%; justify-content: center; }
    .ticket-cta-meta { flex-direction: column; gap: 14px; }
}

/* Animated Gallery */
.gallery-wrapper {
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    white-space: nowrap;
}

.gallery-wrapper::before, .gallery-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gallery-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.gallery-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.gallery-track {
    display: inline-flex;
    gap: 30px;
    padding-left: 30px;
    animation: scroll 40s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    width: 450px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    z-index: 10;
}

.gallery-track:hover .gallery-item:not(:hover) {
    filter: brightness(0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Lightbox Viewer */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(2, 5, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-stage {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9),
                0 0 50px rgba(232, 183, 70, 0.1);
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.lightbox.is-open .lightbox-img.is-ready {
    opacity: 1;
    transform: scale(1);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-main);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.lightbox-close { top: 30px; right: 30px; }
.lightbox-prev { top: 50%; left: 30px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 30px; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(232, 183, 70, 0.4);
}

.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.lightbox-current { color: var(--accent); }

.gallery-item { cursor: zoom-in; }

body.lightbox-open { overflow: hidden; }

@media (max-width: 768px) {
    .lightbox-close { top: 18px; right: 18px; width: 44px; height: 44px; }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-nav { width: 44px; height: 44px; }
    .lightbox-counter { bottom: 18px; padding: 8px 18px; font-size: 0.85rem; }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

/* Footer */
footer {
    background: #02050D;
    padding: 80px 5% 40px;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.footer-content { max-width: 650px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.footer-logo { margin-bottom: 25px; height: 70px; }
.footer-logo img { height: 100%; width: auto; object-fit: contain; border-radius: 10px; }
.footer-content p { color: var(--text-muted); margin-bottom: 35px; line-height: 1.7; font-size: 1.1rem; text-align: center; }

.social-links { margin-bottom: 40px; display: flex; justify-content: center; }
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    margin: 0 12px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(232, 183, 70, 0.3);
}

.copyright {
    font-size: 0.95rem !important;
    border-top: 1px solid var(--border-color);
    padding-top: 35px;
    margin-bottom: 0 !important;
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .section { padding: 90px 5%; }
    .section-content { gap: 40px; }
    .gallery-item { width: 380px; height: 260px; }
    .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-details { flex-direction: column; gap: 15px; align-items: center; }
    
    .section-content { grid-template-columns: 1fr; }
    .section-content.reverse .text-content { order: unset; }
    .section-title { font-size: 2.2rem; }
    
    .flex-images { flex-direction: column; }
    .img-slide { width: 100% !important; height: 300px; }
    .translate-down { transform: none; }
    
    .gallery-item { width: 300px; height: 200px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .card { padding: 30px 20px; }
    .gallery-item { width: 260px; height: 180px; }
}
