:root {
    --text-color: #fdfdfd;
    --primary-blue: #0b61aa;
    --light-blue: #3296ea;
    --primary-orange: #d6790a;
    --gold: #f2c94c;
    --dark-bg: #09101a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-heading: 'Cinzel', serif;
    --font-ui: 'Inter', sans-serif;
}

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

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: var(--font-ui);
    overflow-x: hidden;
    /* Removed scrollbar hiding since Canvallax works on scroll */
    min-height: 200vh;
    /* Add height to enable scrolling for parallax effect */
}

html {
    scroll-behavior: smooth;
}

/* --- LOADING ANIMATION --- */
.intro-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9998;
    animation: fadeOutBg 1s ease-in-out 3s forwards;
    pointer-events: none;
}

.intro-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 80px;
    transform: translate(-50%, -50%) scale(3.5);
    z-index: 9999;
    animation: moveLogo 2.5s cubic-bezier(0.25, 1, 0.5, 1) 1s forwards;
    pointer-events: none;
}

.nav-logo {
    opacity: 0;
    animation: showNavLogo 0.1s linear 3.4s forwards;
}

@keyframes fadeOutBg {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

@keyframes moveLogo {
    0% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(3.5);
    }
    100% {
        top: 20px; /* Matches nav padding-top */
        left: 50px; /* Matches nav padding-left */
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
}

@keyframes showNavLogo {
    to { opacity: 1; }
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--light-blue);
    text-shadow: 0 0 10px rgba(50, 150, 234, 0.5);
}

.nav-links.nav-links-compact {
    gap: 16px;
}

.nav-links.nav-links-compact a {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.dot {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* --- PARALLAX CONTAINER --- */
#parallax-container {
    position: relative;
    width: 100vw;
    height: auto;
    overflow-x: hidden;
    /* No perspective needed, no parallax */
}

.layer {
    position: static;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    pointer-events: auto;
}

/* Canvallax dynamically generated canvas */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    margin: 0;
}

/* Dynamic Image Layers from Artifacts */
.layer-bg {
    /* Removed static bg image to let Three.js shine through */
    background: transparent;
    z-index: 1;
}

/* Main Content Layer (Text and Cards) needs pointer events back */
.layer-main {
    position: static;
    z-index: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    text-align: center;
    background: transparent;
}


/* --- HERO TEXT (WINGS 2026) --- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    margin-top: 80px;
}

.presents-text {
    text-align: center;
    margin-bottom: -15px;
    /* Pull closer to wings */
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pydah {
    font-family: var(--font-ui);
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    display: block;
}

.proudly {
    font-family: 'Brush Script MT', 'Great Vibes', cursive;
    /* Fallbacks for cursive */
    font-size: 2rem;
    color: white;
    margin-top: -10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.title-with-wings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    /* Removed gap to allow negative margins to do the work */
    z-index: 2;
    position: relative;
}

.main-title-img {
    height: 240px;
    width: auto;
    position: relative;
    right: 15px;
    z-index: 10;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.wing-img {
    height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
    position: relative;
    z-index: 1;
    /* Wings behind text */
    /* Add perspective so the wings look 3D when they flap */
    perspective: 1000px;
}

.left-wing {
    transform-origin: right center;
    margin-right: -70px;
    height: 380px;
    animation: flapLeft 3.5s ease-in-out infinite;
}

.right-wing {
    transform-origin: left center;
    margin-left: -70px;
    height: 380px;
    margin-top: 20px;
    animation: flapRight 3.5s ease-in-out infinite;
}

@keyframes flapLeft {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        /* Flap left wing up and back */
        transform: translateY(-10px) rotate(-15deg);
    }
}

@keyframes flapRight {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        /* Flap right wing up and back */
        transform: translateY(-10px) rotate(15deg);
    }
}

.glint-text {
    font-family: var(--font-heading);
    font-size: 8.5rem;
    /* Slightly larger */
    font-weight: 800;
    /* Bolder */
    line-height: 1;
    margin: 0;
    letter-spacing: 2px;
    position: relative;
    /* Position relative for z-index to work */
    z-index: 3;
    /* Ensure text is above the wings */

    /* Vibrant Magical/Metallic effect to match the sky */
    background: linear-gradient(to bottom, #ffffff 0%, #e2eaf5 30%, #a4c8e1 50%, #f4d068 70%, #d89614 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.7));

    /* Simulating 3D extrusion with cleaner modern shadows */
    text-shadow:
        0px 1px 0px #b0c4de,
        0px 2px 0px #90abcd,
        0px 3px 0px #7092b3,
        0px 4px 0px #507b9c,
        0px 5px 8px rgba(0, 0, 0, 0.6),
        0px 0px 40px rgba(255, 255, 255, 0.4),
        0px 0px 80px rgba(244, 208, 104, 0.3);
}

.tagline-text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    margin-top: -25px;
    /* Pull up towards wings */
    z-index: 3;
    letter-spacing: 3px;
}

.tagline-text i {
    color: white;
    font-size: 0.5rem;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
    opacity: 0.7;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-top: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

/* --- INFO BANNER (Prize, Date, Venue) --- */
.info-banner {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin-bottom: 40px;
    z-index: 4;
}

.info-box {
    background: linear-gradient(135deg, #8b0000, #4a0000);
    /* Dark red background matching poster blocks */
    border: 2px solid #d4af37;
    /* Gold border */
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-10px);
}

.box-label {
    font-family: 'Brush Script MT', 'Great Vibes', cursive;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.box-value {
    font-family: var(--font-ui);
    font-weight: 800;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.box-subtext {
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 5px;
}

/* Specific styling for the prominent Prize Ticket */
.prize-ticket {
    background: linear-gradient(135deg, #c5a059, #8c6a2e);
    /* Strong gold background */
    border: 2px dashed #fff;
    border-radius: 0;
    position: relative;
    padding: 15px 40px;
}

.prize-ticket::before,
.prize-ticket::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--dark-bg);
    /* Cutout effect matching background */
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.prize-ticket::before {
    left: -15px;
}

.prize-ticket::after {
    right: -15px;
}

.ticket-top {
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.ticket-amount {
    font-family: var(--font-ui);
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-top: 5px;
}

.ticket-amount span {
    font-size: 1.5rem;
    display: block;
    margin-top: -5px;
}

.desc {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.glow-button {
    background: linear-gradient(to bottom, rgba(11, 97, 170, 0.3), rgba(11, 97, 170, 0.8));
    border: 1px solid rgba(173, 216, 230, 0.6);
    box-shadow:
        0 0 15px rgba(50, 150, 234, 0.4),
        inset 0 0 10px rgba(173, 216, 230, 0.4);
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s;
}

.glow-button:hover::before {
    left: 200%;
}

.glow-button:hover {
    box-shadow:
        0 0 25px rgba(50, 150, 234, 0.8),
        inset 0 0 15px rgba(173, 216, 230, 0.6);
    transform: translateY(-2px);
}

.btn-blue {
    background: linear-gradient(135deg, #0b61aa, #1e3c72);
    border: 1px solid #3296ea;
}

.btn-orange {
    background: linear-gradient(135deg, #d6790a, #8e4a05);
    border: 1px solid #f2c94c;
}

/* --- INFO CARDS --- */
.cards-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 80%;
    max-width: 1200px;
    position: relative;
}

/* Lines connecting cards visually */
.cards-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: -1;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 300px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}

.card-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.0));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-icon i {
    font-size: 2.5rem;
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    background: linear-gradient(to bottom, #ffffff, #f2c94c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.card-content p {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.4;
}

.card-content .btn {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* --- FOOTER --- */
.main-footer {
    width: 100%;
    margin-top: 80px;
    padding: 60px 20px 30px;
    background: linear-gradient(to top, #05090e 0%, rgba(9, 16, 26, 0.9) 100%);
    border-top: 1px solid rgba(242, 201, 76, 0.15);
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
    width: 100%;
    max-width: 1200px;
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(242, 201, 76, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo span {
    color: #fff;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(242, 201, 76, 0.4);
}

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

.social-links {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-blue);
    border-color: var(--light-blue);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(11, 97, 170, 0.6);
}

/* --- INSTAGRAM FEED --- */
.insta-section {
    width: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.insta-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.insta-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
    margin-top: -15px;
}

.insta-container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.insta-link-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.insta-link-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.insta-icon {
    font-size: 2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

.insta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.insta-text span:first-child {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #fff;
}

.insta-text .view-profile {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.footer-contact {
    margin-top: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.copyright {
    margin-top: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    border-top: none;
    padding-top: 10px;
    width: 100%;
    text-align: right;
}

.made-by {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 5px;
    letter-spacing: 1px;
    width: 100%;
    text-align: right;
}

.made-by a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.made-by a:hover {
    color: var(--gold);
}

.events-section {
    width: 90%;
    max-width: 1200px;
    margin-top: 50px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    scroll-margin-top: 120px;
}

.events-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.events-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.event-card {
    width: 260px;
}

.events-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.events-section .glass-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.events-section .glass-card:hover {
    background: rgba(0, 0, 0, 0.45);
}

.events-section .card-content h4 {
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.events-section .card-content p {
    color: rgba(255, 255, 255, 0.92);
}

.team-section {
    width: 90%;
    max-width: 1200px;
    margin-top: 40px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
    padding: 60px 80px;
    scroll-margin-top: 120px;
}

.team-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('bgnames.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    filter: none;
    border-radius: 16px;
    z-index: 0;
    pointer-events: none;
}

.team-section > * {
    position: relative;
    z-index: 1;
}

.team-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.team-section .team-title {
    color: #111;
    text-shadow: none;
}

.team-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 980px;
    margin: 0 auto;
}

.team-cols {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.team-block {
    text-align: left;
    padding: 10px 12px;
}

.team-block-full {
    width: 100%;
}

.team-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #111;
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-list li + li {
    margin-top: 8px;
}

.team-subgrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.team-subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team-section h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #3a260e;
    text-shadow: none;
}

.team-subtitle {
    color: #111;
    text-shadow: none;
}

@media (max-width: 900px) {
    .team-cols {
        grid-template-columns: 1fr;
    }

    .team-subgrid {
        grid-template-columns: 1fr;
    }

    .team-section {
        padding: 36px 20px;
    }
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 15px 20px;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(15px);
    }

    .nav-logo {
        height: 45px !important; /* Override inline style */
        width: auto;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero {
        margin-top: 100px;
        margin-bottom: 30px;
    }

    .pydah {
        font-size: 2.2rem;
    }

    .proudly {
        font-size: 1.4rem;
    }

    /* Wings & Title - Responsive Scaling */
    .title-with-wings {
        width: 100%;
        justify-content: center;
        transform: scale(0.35); /* Scale down to fit mobile screen */
        margin-top: -80px;
        margin-bottom: -80px;
    }

    .tagline-text {
        font-size: 0.75rem;
        margin-top: -10px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 0 10px;
        line-height: 1.4;
        text-align: center;
    }

    /* Info Banner */
    .info-banner {
        flex-direction: column;
        width: 90%;
        gap: 15px;
    }

    .info-box {
        width: 100%;
        padding: 20px;
    }

    .ticket-amount {
        font-size: 3rem;
    }

    /* Events Section */
    .events-section {
        width: 95%;
    }

    .event-card {
        width: 100%;
        max-width: 340px;
    }

    .events-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 15px;
    }

    .events-links .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Loading Animation Mobile Override */
    .intro-logo {
        animation-name: moveLogoMobile;
    }
    
    @keyframes moveLogoMobile {
        0% { top: 50%; left: 50%; transform: translate(-50%, -50%) scale(3.5); }
        100% { top: 15px; left: 20px; transform: translate(0, 0) scale(0.56); opacity: 0; }
    }

    /* Footer Mobile Adjustments */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-left, .footer-right {
        align-items: center;
        width: 100%;
    }
    .footer-right {
        align-items: center;
    }
    .insta-section {
        align-items: center;
        margin-bottom: 40px;
    }
    .insta-container {
        justify-content: center;
    }
    .footer-links {
        justify-content: center;
    }
    .copyright {
        text-align: center;
    }
    .made-by {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.5rem;
    }

    .copyright {
        width: 100%;
    }
}

/* --- ABOUT SECTION --- */
.about-section {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.about-card {
    width: 100% !important;
    max-width: none;
    padding: 40px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.about-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-card {
        padding: 25px;
    }
}

/* --- FORMS & REGISTRATION --- */
.form-container {
    width: 100%;
    max-width: 100%;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-family: var(--font-ui);
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: var(--font-ui);
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.form-input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
}

select.form-input option {
    background-color: var(--dark-bg);
    color: white;
}

/* Mobile Accordions */
.mobile-accordion {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.mobile-accordion summary {
    padding: 15px;
    cursor: pointer;
    font-family: var(--font-heading);
    color: var(--gold);
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.mobile-accordion summary:hover {
    background: rgba(0, 0, 0, 0.4);
}

.mobile-accordion summary::-webkit-details-marker { display: none; }

.accordion-content {
    padding: 20px;
}

/* Event Categories */
.event-category {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.event-category summary {
    padding: 12px 15px;
    cursor: pointer;
    font-family: var(--font-ui);
    color: var(--light-blue);
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.event-category summary:hover {
    background: rgba(0, 0, 0, 0.2);
}

.event-category summary::-webkit-details-marker { display: none; }

.event-category-title i {
    font-size: 0.9rem;
}

/* Event Selection Cards */
.event-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.event-option-wrap {
    position: relative;
}

.event-option {
    cursor: pointer;
    display: block;
    position: relative;
}

.event-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.event-option span {
    display: block;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    transition: all 0.3s;
    height: 100%;
}

.event-option input:checked + span {
    background: rgba(242, 201, 76, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(242, 201, 76, 0.15);
}

.event-option strong {
    display: block;
    color: var(--light-blue);
    margin-bottom: 6px;
    font-size: 1rem;
}

.event-option input:checked + span strong {
    color: var(--gold);
}

.event-option small {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.4;
    display: block;
}

/* Payment Section */
.payment-qr-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: fit-content;
    margin: 0 auto 20px;
}

.payment-amount {
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.payment-note {
    color: #555;
    font-size: 0.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.payment-qr {
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.payment-qr canvas {
    display: block;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary-orange), #b56808);
    border: 1px solid var(--gold);
    color: white;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 121, 10, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 121, 10, 0.4);
    background: linear-gradient(135deg, #e68a0d, var(--primary-orange));
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .event-list {
        grid-template-columns: 1fr;
    }
}

/* --- FORMS --- */
.form-input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: var(--font-ui);
    outline: none;
    transition: border-color 0.3s;
}
.form-input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
}