:root {
    --bg: #0b0d10;
    --panel: #f5f7ff;
    --panel-dark: #161a22;

    --text-dark: #0e0f14;
    --text-light: #ffffff;
    --muted: #6f768a;

    --accent: #6cffd8;
    --accent-2: #7c7cff;
    --accent-3: #ff6ad5;

    --radius: 18px;
}

body {
    background: var(--bg);
    color: var(--text-light);
    font-family: Inter, system-ui, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.navbar a {
    opacity: 0.8;
}

.hero-grid {
    padding: 4rem 0;
}

.hero-main {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
    border-radius: var(--radius);
    padding: 3rem;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.hero-main h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    font-weight: 800;
    animation: slideIn 1s ease forwards;
    opacity: 0;
}

.hero-main p {
    max-width: 420px;
    margin-top: 1rem;
    animation: slideIn 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-main .btn {
    animation: slideIn 1s ease 0.6s forwards;
    opacity: 0;
}

.info-card {
    background: var(--panel-dark);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-card.accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--text-dark);
}

.btn-primary-custom {
    background: var(--text-dark);
    color: white;
    border-radius: var(--radius);
    padding: 0.8rem 1.4rem;
    font-weight: 600;
}

.btn-outline-custom {
    border: 1px solid currentColor;
    border-radius: var(--radius);
    padding: 0.8rem 1.4rem;
}

.feature-strip {
    margin-top: 2rem;
    background: var(--panel);
    color: var(--text-dark);
    border-radius: var(--radius);
    padding: 1.5rem 0;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.feature-strip.active {
    opacity: 1;
    transform: translateY(0);
}

.lineup-strip {
    margin: 3rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee {
    display: flex;
    animation: marquee 20s linear infinite;
    font-size: 1.4rem;
    font-weight: 600;
    opacity: 0.8;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.shape.one {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 10%;
    right: 10%;
}

.shape.two {
    width: 260px;
    height: 260px;
    background: var(--accent-3);
    bottom: 15%;
    left: 5%;
}

.stage-card,
.container-fluid .grid .card,
.festival-experience .card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: var(--radius);
    padding: 2rem;
    font-weight: 600;
    text-align: center;
}

.stage-card:hover,
.container-fluid .grid .card:hover,
.festival-experience .card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.stage-card {
    background: var(--panel-dark);
    color: var(--text-light);
}

.container-fluid .grid .card {
    background: var(--panel);
    color: var(--text-dark);
    flex-shrink: 0;
}

.container-fluid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.card-large {
    flex: 0 0 48%;
}

.card-medium {
    flex: 0 0 45%;
}

.card-small {
    flex: 0 0 30%;
}


.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}


.container-fluid.reveal.position-relative {
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.container-fluid.reveal .shape {
    z-index: 0;
}

.container-fluid.reveal h2,
.container-fluid.reveal p,
.container-fluid.reveal .card {
    position: relative;
    z-index: 1;
}

.festival-experience {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0b0d10, #161a22);
    border-radius: var(--radius);
}

.festival-experience .shape.one,
.festival-experience .shape.two {
    position: absolute;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 15s ease-in-out infinite alternate;
    z-index: 0;
}

.festival-experience .shape.one {
    width: 400px;
    height: 400px;
    top: -50px;
    right: -50px;
    background: var(--accent-2);
}

.festival-experience .shape.two {
    width: 500px;
    height: 500px;
    bottom: -80px;
    left: -80px;
    background: var(--accent-3);
}

.festival-experience>.row {
    position: relative;
    z-index: 1;
}

/* Reveal + hover */
.timetable-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.timetable-card.active {
    opacity: 1;
    transform: translateY(0);
}

.timetable-card .card {
    border-radius: var(--radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--panel-dark);
    color: var(--text-light);
    padding: 1.5rem;
}

.timetable-card .card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(108, 255, 216, 0.5);
    border: 2px solid var(--accent);
}

/* Filters buttons */
.filter-btn {
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--accent);
    color: var(--text-dark);
}

.ticket-card .card {
    background: var(--panel-dark);
    color: var(--text-light);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-card .card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(108, 255, 216, 0.5);
    border: 2px solid var(--accent);
}

.ticket-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0;
}

.ticket-card .btn-primary-custom {
    margin-top: 1rem;
}

/* Day selector */
.day-select {
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    border: 2px solid var(--accent);
    background: var(--panel-dark);
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
}

.day-select:hover {
    background: var(--accent-2);
    color: var(--text-dark);
}

/* VIP perks animation */
.vip-perks li {
    position: relative;
    padding-left: 30px;
    margin: 0.6rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.vip-perks li .perk-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--accent);
    border-radius: 50%;
    animation: float 2s ease-in-out infinite alternate;
}

/* Animate perks on reveal */
.ticket-card.reveal.active .vip-perks li {
    opacity: 1;
    transform: translateY(0);
}

/* Floating shapes behind hero */
.hero-grid .shape {
    filter: blur(50px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite alternate;
}

/* Make all ticket cards the same height */
.equal-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
}

/* Tickets remaining */
.tickets-remaining span {
    font-weight: 700;
    color: var(--accent);
}

/* VIP perks animation */
.vip-perks li {
    position: relative;
    padding-left: 30px;
    margin: 0.6rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.vip-perks li .perk-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--accent);
    border-radius: 50%;
    animation: float 2s ease-in-out infinite alternate;
}

.ticket-card.reveal.active .vip-perks li {
    opacity: 1;
    transform: translateY(0);
}

/* Footer fix: shapes behind content */
.footer {
    position: relative;
    background: var(--panel-dark);
    overflow: hidden;
}

.footer .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.3;
    z-index: 0;
}

.footer .shape.one {
    width: 150px;
    height: 150px;
    top: -50px;
    right: 5%;
    background: var(--accent);
    animation: float 8s ease-in-out infinite alternate;
}

.footer .shape.two {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: 10%;
    background: var(--accent-3);
    animation: float 6s ease-in-out infinite alternate;
}