.hero-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #090708;
}

.hero-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle, rgba(255,255,255,0.12) 0 1px, transparent 1.6px);
    background-size: 28px 28px;
    opacity: 0.05;
    pointer-events: none;
}

.hero-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(to bottom, rgba(255,255,255,0.04), transparent 16%),
            linear-gradient(to top, rgba(0,0,0,0.2), transparent 26%);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.72)),
            url('../../assets/images/homepage/main-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.hero-glow-1 {
    top: -60px;
    left: -40px;
    width: 360px;
    height: 360px;
    background: rgba(255, 201, 107, 0.22);
}

.hero-glow-2 {
    right: -80px;
    bottom: -40px;
    width: 340px;
    height: 340px;
    background: rgba(255, 65, 129, 0.16);
}

.hero-minimal {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 78px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #d8a54d, #ffe09f);
    color: #241505;
    box-shadow: 0 18px 44px rgba(215, 169, 77, 0.24);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: #fff5e7;
    border: 1px solid rgba(255,223,168,0.14);
}

@media (max-width: 560px) {
    .hero-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}




.hero-content {
    text-align: center;
    margin-top: 120px;
    animation: fadeUp 1s ease forwards;
    opacity: 1;
    transform: translateY(-30px);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    letter-spacing: 0.05em;
    line-height: 1.02;
    color: white;
    text-transform: uppercase;
    max-width: 700px;
    margin: 0 auto 25px;
    opacity: 0.9;
    font-weight: 400;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-title span {
    display: block;
}

.hero-title span + span {
    margin-top: 4px;
}

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

.hero-btn {
    position: relative;
    padding: 14px 42px;

    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.7);

    color: white;
    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 650;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(6px);

    transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.hero-btn::before {
    content: "";
    position: absolute;
    inset: -1.5px;
    border-radius: inherit;

    background: conic-gradient(
            from 0deg,
            transparent 0%,
            transparent 85%,
            #d65cff 92%,
            #ff4fd8 100%
    );

    -webkit-mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    padding: 1.5px;

    opacity: 0;
}

.hero-btn:hover::before {
    opacity: 1;
    animation: traceBorder 0.8s linear forwards;
}

.hero-btn:hover {
    border-color: #d65cff;
    color: #f4ddff;
    background: rgba(214, 92, 255, 0.08);
    transform: translateY(-2px);
}

.hero-btn:active {
    transform: translateY(0);
}

@keyframes traceBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.hero-page{
    position: relative;
    overflow: hidden;
}

.hero-bg{
    transform: scale(1.06);
    animation: heroBgZoom 8s ease-out forwards;
}

.hero-glow-1{
    animation: heroGlowFloatOne 8s ease-in-out infinite alternate;
}

.hero-glow-2{
    animation: heroGlowFloatTwo 9s ease-in-out infinite alternate;
}

.hero-content{
    opacity: 0;
    transform: translateY(34px);
    animation: heroContentIn 1s ease forwards;
    animation-delay: 0.12s;
}

.hero-title span{
    opacity: 0;
    transform: translateY(26px);
    filter: blur(6px);
    animation: heroLineReveal 0.75s ease forwards;
}

.hero-title span:nth-child(1){
    animation-delay: 0.2s;
}

.hero-title span:nth-child(2){
    animation-delay: 0.38s;
}

.hero-title span:nth-child(3){
    animation-delay: 0.56s;
}

.hero-actions{
    opacity: 0;
    transform: translateY(20px);
    animation: heroActionsIn 0.8s ease forwards;
    animation-delay: 0.95s;
}

.hero-btn{
    overflow: hidden;
}

.hero-btn::after{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.18),
            transparent
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.hero-btn:hover::after{
    left: 140%;
}

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

@keyframes heroLineReveal{
    from{
        opacity: 0;
        transform: translateY(26px);
        filter: blur(6px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

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

@keyframes heroBgZoom{
    from{
        transform: scale(1.06);
    }
    to{
        transform: scale(1);
    }
}

@keyframes heroGlowFloatOne{
    0%{
        transform: translate3d(0,0,0);
    }
    100%{
        transform: translate3d(18px, -10px, 0);
    }
}

@keyframes heroGlowFloatTwo{
    0%{
        transform: translate3d(0,0,0);
    }
    100%{
        transform: translate3d(-16px, 14px, 0);
    }
}





















.yb-home-overview,
.yb-home-spotlight,
.yb-home-participate {
    position: relative;
    background:
            linear-gradient(180deg, #030814 0%, #050a18 55%, #030712 100%);
    color: #f7f4ee;
}

.yb-home-overview {
    padding: 5.5rem 0 2rem;
}

.yb-home-spotlight {
    padding: 2rem 0 2rem;
}

.yb-home-participate {
    padding: 2rem 0 6rem;
}

.yb-section-head {
    max-width: 820px;
    text-align: center;
    margin: 0 auto 2.5rem;
}

.yb-section-kicker {
    margin: 0 0 0.85rem;
    color: #d4b15f;
    font: 800 0.9rem/1 "Inter", sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.yb-section-head h2,
.yb-spotlight-copy h2,
.yb-participate-box h2 {
    margin: 0;
    font-family: "Bree Serif", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.05;
    color: #f7f4ee;
}

.yb-section-head p,
.yb-spotlight-copy p,
.yb-participate-box p {
    margin: 1rem 0 0;
    font: 400 1.02rem/1.85 "Inter", sans-serif;
    color: rgba(243, 239, 231, 0.78);
}

.yb-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.yb-overview-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(9, 16, 36, 0.88);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
            0 18px 40px rgba(0, 0, 0, 0.24),
            inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.yb-overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 177, 95, 0.26);
}

.yb-overview-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(212, 177, 95, 0.12);
    border: 1px solid rgba(212, 177, 95, 0.2);
    color: #d4b15f;
    font: 800 0.95rem/1 "Inter", sans-serif;
    letter-spacing: 0.08em;
}

.yb-overview-card h3 {
    margin: 0;
    font-family: "Bree Serif", serif;
    font-size: 1.7rem;
    line-height: 1.1;
    color: #f7f4ee;
}

.yb-overview-card p {
    margin: 0.85rem 0 0;
    font: 400 1rem/1.75 "Inter", sans-serif;
    color: rgba(243, 239, 231, 0.76);
}

.yb-spotlight-wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.yb-spotlight-actions,
.yb-participate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.yb-spotlight-visual {
    position: relative;
    min-height: 430px;
}

.yb-spotlight-card {
    position: absolute;
    border-radius: 1.6rem;
    background: rgba(9, 16, 36, 0.9);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
            0 20px 44px rgba(0, 0, 0, 0.26),
            inset 0 1px 0 rgba(255,255,255,0.03);
}

.yb-spotlight-card-main {
    inset: 2.2rem 2.5rem 2.2rem 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
            linear-gradient(180deg, rgba(8, 14, 31, 0.15), rgba(8, 14, 31, 0.94)),
            radial-gradient(circle at top right, rgba(212,177,95,0.14), transparent 30%),
            linear-gradient(135deg, rgba(36,56,130,0.35), rgba(15,21,42,0.95));
}

.yb-spotlight-card-main h3 {
    margin: 0;
    max-width: 360px;
    font-family: "Bree Serif", serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.1;
    color: #f7f4ee;
}

.yb-spotlight-label {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(212, 177, 95, 0.12);
    border: 1px solid rgba(212, 177, 95, 0.2);
    color: #d4b15f;
    font: 800 0.74rem/1 "Inter", sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.yb-spotlight-card-small {
    width: 120px;
    height: 120px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
            linear-gradient(135deg, rgba(212,177,95,0.2), rgba(15,21,42,0.95));
}

.yb-spotlight-card-small span {
    color: #f7f4ee;
    font-family: "Bree Serif", serif;
    font-size: 2rem;
}

.yb-spotlight-card-small.top {
    top: 0;
}

.yb-spotlight-card-small.bottom {
    bottom: 0;
}

.yb-participate-box {
    padding: 2.4rem 2rem;
    text-align: center;
    border-radius: 2rem;
    background:
            linear-gradient(180deg, rgba(11, 18, 39, 0.95), rgba(7, 12, 29, 0.95));
    border: 1px solid rgba(212, 177, 95, 0.14);
    box-shadow:
            0 18px 44px rgba(0, 0, 0, 0.28),
            0 0 40px rgba(212, 177, 95, 0.05);
}

.yb-participate-box p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.yb-participate-actions {
    justify-content: center;
}

@media (max-width: 980px) {
    .yb-overview-grid,
    .yb-spotlight-wrap {
        grid-template-columns: 1fr;
    }

    .yb-spotlight-visual {
        min-height: 360px;
    }

    .yb-spotlight-card-main {
        inset: 2rem 5.2rem 2rem 0;
    }
}

@media (max-width: 640px) {
    .yb-home-overview {
        padding-top: 4rem;
    }

    .yb-home-participate {
        padding-bottom: 4rem;
    }

    .yb-overview-grid {
        gap: 1rem;
    }

    .yb-overview-card,
    .yb-participate-box {
        padding: 1.25rem;
    }

    .yb-spotlight-visual {
        min-height: 300px;
    }

    .yb-spotlight-card-main {
        inset: 1rem 4.4rem 1rem 0;
        padding: 1.3rem;
    }

    .yb-spotlight-card-small {
        width: 92px;
        height: 92px;
    }

    .yb-spotlight-card-small span {
        font-size: 1.4rem;
    }
}




.yb-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;

    background: linear-gradient(90deg, #7b3fe4 0%, #c85ccf 50%, #ff7ab6 100%);

    padding: 1rem 0;
    z-index: 5;
}

.yb-marquee::before,
.yb-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.yb-marquee::before {
    left: 0;
    background: linear-gradient(to right, #7b3fe4, transparent);
}

.yb-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ff7ab6, transparent);
}

.yb-marquee-track {
    display: flex;
    width: max-content;
}

.yb-marquee-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    white-space: nowrap;

    animation: marqueeMove 22s linear infinite;
}

.yb-marquee-content span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.08em;
    color: white;
    text-transform: uppercase;
}

.yb-marquee-sep {
    font-size: 1.2rem;
    opacity: 0.7;
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.yb-marquee:hover .yb-marquee-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .yb-marquee-content span {
        font-size: 1.3rem;
    }
}