:root {
    --red: #c0001e;
    --dark-red: #8a0012;
    --deeper: #4a0008;
    --yellow: #FFD700;
    --gold: #d4a800;
    --black: #080608;
    --white: #fff;
    --off: #fff9ee;
    --glass: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 215, 0, 0.22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Noto Sans Tamil", sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--black)
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(5, 0, 3, 0.93);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--yellow);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease
}

.nav-logo:hover {
    transform: scale(1.05);
    opacity: 0.9
}

.nav-logo:active {
    transform: scale(0.98)
}

.logo-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3))
}

.nav-title {
    font-size: clamp(.82rem, 2vw, .98rem);
    font-weight: 800;
    color: var(--yellow);
    line-height: 1.25
}

.nav-title small {
    display: block;
    font-weight: 400;
    color: rgba(255, 255, 255, .65);
    font-size: .78em
}

.nav-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

.nav-links a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, .2);
    transition: .2s
}

.nav-links a:hover {
    background: var(--yellow);
    color: var(--black)
}

.nav-badge {
    background: var(--yellow);
    color: var(--black);
    font-weight: 900;
    font-size: .8rem;
    padding: 6px 14px;
    border-radius: 5px;
    animation: badgePulse 2s ease-in-out infinite;
    white-space: nowrap
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

/* TICKER */
.ticker {
    background: var(--yellow);
    color: var(--black);
    font-weight: 800;
    font-size: .82rem;
    padding: 7px 0;
    overflow: hidden;
    white-space: nowrap
}

.ticker-track {
    display: inline-block;
    animation: ticker 35s linear infinite
}

.ticker-track:hover {
    animation-play-state: paused
}

@keyframes ticker {
    from {
        transform: translateX(100vw)
    }

    to {
        transform: translateX(-100%)
    }
}

/* HERO */
#hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 60px;
    overflow: hidden;
    background: radial-gradient(ellipse 120% 80% at 50% -10%, #c0001e 0%, #5a0010 40%, var(--black) 75%)
}

.hero-rays {
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(from 0deg at 50% 110%, rgba(255, 215, 0, .06) 0deg 5deg, transparent 5deg 10deg);
    animation: rayspin 80s linear infinite;
    pointer-events: none
}

@keyframes rayspin {
    to {
        transform: rotate(360deg)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 740px;
    width: 100%
}

.hero-eyebrow {
    font-size: .78rem;
    letter-spacing: .18em;
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 14px;
    opacity: 0;
    animation: fadeUp .7s .1s ease forwards
}

.hero-name {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 10px;
    text-shadow: 0 6px 30px rgba(0, 0, 0, .5);
    opacity: 0;
    animation: fadeUp .7s .2s ease forwards
}

.hero-name em {
    color: var(--yellow);
    font-style: normal
}

.hero-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-weight: 800;
    font-size: clamp(.78rem, 2.2vw, .95rem);
    padding: 5px 20px;
    border-radius: 4px;
    margin-bottom: 26px;
    opacity: 0;
    animation: fadeUp .7s .3s ease forwards
}

.hero-slogan {
    font-size: clamp(1.1rem, 3.5vw, 1.8rem);
    font-weight: 700;
    color: var(--off);
    margin-bottom: 6px;
    opacity: 0;
    animation: fadeUp .7s .4s ease forwards
}

.hero-sub {
    font-size: clamp(.88rem, 2.5vw, 1.15rem);
    color: rgba(255, 255, 255, .6);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp .7s .45s ease forwards
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .7s .55s ease forwards
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow), var(--gold));
    color: var(--black);
    font-weight: 900;
    font-size: clamp(.85rem, 2.5vw, 1rem);
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(255, 215, 0, .35);
    transition: .25s;
    font-family: inherit
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, .5)
}

.btn-outline {
    background: transparent;
    color: var(--yellow);
    font-weight: 700;
    font-size: clamp(.85rem, 2.5vw, 1rem);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--yellow);
    cursor: pointer;
    transition: .25s;
    font-family: inherit
}

.btn-outline:hover {
    background: rgba(255, 215, 0, .12)
}

.hero-win {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    border: 2px solid rgba(255, 215, 0, .4);
    border-radius: 50px;
    padding: 10px 30px;
    opacity: 0;
    animation: fadeUp .7s .65s ease forwards
}

.hero-win-num {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 900;
    color: var(--yellow)
}

.hero-win-text {
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    text-align: left;
    line-height: 1.4
}

.scroll-cue {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: .45;
    animation: fadeUp 1s .9s ease forwards
}

.scroll-cue span {
    font-size: .72rem;
    color: var(--yellow);
    letter-spacing: .12em
}

.chevron {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    transform: rotate(45deg);
    animation: chevronBounce 1.4s ease-in-out infinite
}

@keyframes chevronBounce {

    0%,
    100% {
        transform: translateY(0) rotate(45deg)
    }

    50% {
        transform: translateY(7px) rotate(45deg)
    }
}

/* SECTIONS COMMON */
section {
    position: relative;
    z-index: 1;
    padding: 80px 16px
}

.container {
    max-width: 1080px;
    margin: 0 auto
}

.sec-head {
    text-align: center;
    margin-bottom: 52px
}

.sec-eye {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--yellow);
    margin-bottom: 10px
}

.sec-title {
    font-size: clamp(1.7rem, 5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2
}

.sec-title span {
    color: var(--yellow)
}

.divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--red));
    margin: 14px auto 0;
    border-radius: 2px
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.on {
    opacity: 1;
    transform: translateY(0)
}

/* ABOUT */
#about {
    background: linear-gradient(180deg, var(--black) 0%, #1a0006 100%)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.about-img-wrap {
    position: relative
}

.about-poster {
    width: 100%;
    border-radius: 18px;
    border: 2px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
    display: block
}

.about-glow {
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--yellow), var(--red));
    opacity: .25;
    z-index: -1;
    filter: blur(20px)
}

.about-text h3 {
    font-size: clamp(1.3rem, 3.5vw, 1.9rem);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.3
}

.about-text h3 span {
    color: var(--yellow)
}

.about-text p {
    font-size: clamp(.85rem, 2vw, .98rem);
    color: rgba(255, 255, 255, .7);
    line-height: 1.9;
    margin-bottom: 16px
}

.about-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px
}

.chip {
    background: rgba(255, 215, 0, .1);
    border: 1px solid rgba(255, 215, 0, .3);
    color: var(--yellow);
    font-size: .75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px
}

/* POSTERS GALLERY */
#gallery {
    background: linear-gradient(180deg, #1a0006 0%, #0d0002 100%)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
    gap: 18px
}

.poster-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    group: true;
    transition: transform .3s ease, box-shadow .3s ease
}

.poster-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, .18)
}

.poster-card img {
    width: 100%;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .4s ease
}

.poster-card:hover img {
    transform: scale(1.05)
}

.poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .3s ease;
    display: flex;
    align-items: flex-end;
    padding: 18px
}

.poster-card:hover .poster-overlay {
    opacity: 1
}

.poster-label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1.4
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 20px
}

.lightbox.open {
    display: flex
}

.lb-img {
    max-width: min(90vw, 600px);
    max-height: 90svh;
    border-radius: 12px;
    border: 2px solid var(--yellow);
    box-shadow: 0 0 60px rgba(255, 215, 0, .25)
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, .2);
    border: 1px solid var(--yellow);
    color: var(--yellow);
    font-size: 1.4rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s
}

.lb-nav:hover {
    background: var(--yellow);
    color: var(--black)
}

#lb-prev {
    left: 14px
}

#lb-next {
    right: 14px
}

/* PROMISES */
#promises {
    background: linear-gradient(180deg, #0d0002 0%, #200005 100%)
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 310px), 1fr));
    gap: 22px
}

.p-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, border-color .3s, box-shadow .3s
}

.p-card:hover {
    transform: translateY(-6px);
    border-color: var(--yellow);
    box-shadow: 0 16px 48px rgba(255, 215, 0, .15)
}

.p-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--red))
}

.p-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 215, 0, .15)
}

.p-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--yellow), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(255, 215, 0, .3)
}

.p-title {
    font-size: clamp(.95rem, 2.5vw, 1.08rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.45
}

.p-body {
    font-size: clamp(.8rem, 2vw, .9rem);
    color: rgba(255, 255, 255, .7);
    line-height: 1.75
}

.p-amount {
    display: block;
    font-size: clamp(1.7rem, 4.5vw, 2.2rem);
    font-weight: 900;
    color: var(--yellow);
    margin: 8px 0 4px;
    text-shadow: 0 0 18px rgba(255, 215, 0, .35)
}

.p-amount-note {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55)
}

.p-hl {
    color: var(--yellow);
    font-weight: 700
}

/* WOMEN */
#women {
    background: linear-gradient(135deg, #5a000c, #200005);
    text-align: center
}

.women-inner {
    max-width: 680px;
    margin: 0 auto
}

.women-card {
    background: rgba(0, 0, 0, .35);
    border: 2px solid var(--yellow);
    border-radius: 22px;
    padding: 52px 36px;
    position: relative;
    overflow: hidden;
    margin-top: 0
}

.women-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 110%, rgba(255, 215, 0, .09), transparent 65%);
    pointer-events: none
}

.w-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 215, 0, .2)
}

.w-label {
    font-size: clamp(.95rem, 2.5vw, 1.1rem);
    font-weight: 700;
    color: var(--off);
    margin-bottom: 16px
}

.w-old {
    font-size: clamp(1.3rem, 4vw, 1.9rem);
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    text-decoration: line-through;
    text-decoration-color: var(--red);
    text-decoration-thickness: 3px
}

.w-new {
    display: block;
    font-size: clamp(3.5rem, 12vw, 6rem);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    text-shadow: 0 0 50px rgba(255, 215, 0, .55);
    margin: 6px 0 12px
}

.w-note {
    font-size: clamp(.82rem, 2.2vw, .95rem);
    color: rgba(255, 255, 255, .65)
}

/* STATS */
#stats {
    background: linear-gradient(180deg, #200005 0%, var(--black) 100%);
    padding: 70px 16px
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 22px;
    max-width: 900px;
    margin: 0 auto
}

.s-card {
    text-align: center;
    padding: 30px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, .03)
}

.s-num {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1
}

.s-lbl {
    font-size: clamp(.75rem, 2vw, .88rem);
    color: rgba(255, 255, 255, .6);
    margin-top: 8px;
    line-height: 1.45
}

/* VOTE CTA */
#vote {
    background: linear-gradient(180deg, var(--black) 0%, #0a0002 100%);
    text-align: center;
    padding: 90px 16px;
    position: relative;
    overflow: hidden
}

#vote::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(192, 0, 30, .28) 0%, transparent 70%);
    pointer-events: none
}

.vote-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto
}

.vote-big {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px
}

.vote-big span {
    color: var(--yellow)
}

.vote-sub {
    font-size: clamp(.88rem, 2.5vw, 1.08rem);
    color: rgba(255, 255, 255, .65);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.7
}

.vote-box {
    display: inline-block;
    border: 3px solid var(--yellow);
    padding: 26px 54px;
    border-radius: 14px;
    background: rgba(255, 215, 0, .06);
    animation: glowBox 2.5s ease-in-out infinite
}

@keyframes glowBox {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, .2)
    }

    50% {
        box-shadow: 0 0 60px rgba(255, 215, 0, .55)
    }
}

.vote-date-lbl {
    font-size: .75rem;
    letter-spacing: .14em;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 6px
}

.vote-date {
    font-size: clamp(1.8rem, 6vw, 3.2rem);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1
}

.vote-day {
    font-size: clamp(.85rem, 2.5vw, 1.05rem);
    color: var(--off);
    margin-top: 6px
}

.symbol-note {
    margin-top: 22px;
    font-size: clamp(.82rem, 2vw, .95rem);
    color: rgba(255, 255, 255, .55)
}

/* FOOTER */
footer {
    background: var(--black);
    border-top: 2px solid var(--yellow);
    padding: 28px 20px;
    text-align: center
}

.f-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.4))
}

.f-name {
    font-size: clamp(1.1rem, 3.5vw, 1.6rem);
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 4px
}

.f-sub {
    font-size: clamp(.75rem, 2vw, .9rem);
    color: rgba(255, 255, 255, .5)
}

.f-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 14px;
    flex-wrap: wrap
}

.f-links a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: .75rem;
    transition: .2s
}

.f-links a:hover {
    color: var(--yellow)
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media(max-width:680px) {
    .about-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:500px) {
    .nav-links {
        display: none
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .women-card {
        padding: 32px 18px
    }
}