body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #000;
    overflow-x: hidden;
}

/* =========================
HEADER BASE
========================= */
#header {
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.hide-header {
    transform: translateY(-100%);
}

.header-scrolled {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 999;
    padding: 10px 0;
    height: 80px;
    transition: 0.4s;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================
LOGO
========================= */
.header-logo img {
    height: 60px;
    width: auto;
}

/* =========================
DESKTOP MENU
========================= */
.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

/* HOME BUTTON */
.main-menu li .home-btn {
    color: #84fb12;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
    font-family: Helvetica, Arial, sans-serif;
    margin-right: 50px;
}

.main-menu li .home-btn:hover {
    color: #ffffff;
}

/* REGISTER BUTTON */
.main-menu li .register-btn {
    background: #B288FF;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    font-family: Helvetica, Arial, sans-serif;
    display: inline-block;
}

.main-menu li .register-btn:hover {
    background: #ffffff;
    color: #000;
}

/* =========================
HAMBURGER TOGGLE
========================= */
.header-toggle button {
    background: none;
    border: none;
    cursor: pointer;
}

.header-toggle span {
    width: 25px;
    height: 2px;
    background: #84fb12;
    display: block;
    margin: 5px 0;
}

/* =========================
OFFCANVAS (MOBILE MENU)
========================= */
.offcanvas {
    background: #000000 !important;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.offcanvas-title{
    color:#ffffff !important;
}
.offcanvas-header .btn-close {
    filter: invert(1);
    opacity: 1;
}

/* MOBILE MENU LIST */
.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* MOBILE HOME BUTTON */
.mobile-menu li .home-btn {
    background: #B288FF;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.mobile-menu li .home-btn:hover {
    background: #ffffff;
    color: #000;
}

/* MOBILE REGISTER BUTTON */
.mobile-menu li .register-btn {
    background: #B288FF;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.mobile-menu li .register-btn:hover {
    background: #ffffff;
    color: #000;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 991px) {
    .main-menu {
        display: none;
    }

    .header-logo img {
        height: 55px;
    }
}

/* =========================
   HERO SECTION BASE
========================= */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: #000;
}

/* LEFT + RIGHT PANELS */
.hero-left,
.hero-right {
    position: relative;
    width: 100%;
    height: 780px;
}

/* BACKGROUND IMAGE */
.bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */
.hero-left::after,
.hero-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

/* =========================
   CENTER ELEMENTS (DESKTOP)
========================= */
.hero-logo,
.bollywood-text,
.talent-hunt,
.proudly-text,
.hero-register-btn-wrap,
.social-icons,
.top-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* LOGO */
.hero-logo {
    top: 20px;
}

.hero-logo img {
    width: 200px;
}

/* TEXT IMAGES */
.bollywood-text {
    top: 160px;
}

.bollywood-text img {
    width: 500px;
}

.talent-hunt {
    top: 240px;
}

.talent-hunt img {
    width: 250px;
}

.proudly-text {
    top: 360px;
}

.proudly-text img {
    width: 460px;
}

/* REGISTER BUTTON */
.hero-register-btn-wrap {
    top: 590px;
}

.hero-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 350px;
    height: 58px;
    padding: 0 40px;
    border-radius: 50px;
    background: #dcb50b;
    color: #000;
    text-decoration: none;
    font-size: 34px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.hero-register-btn:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* SOCIAL ICONS */
.social-icons {
    top: 670px;
    display: flex;
    gap: 18px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #84fb12;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a i {
    color: #000;
    font-size: 22px;
}

.social-icons a:hover {
    transform: translateY(-4px);
    background: #dcb50b;
}

/* RIGHT BADGE */
.top-badge {
    top: 70px;
    animation: floatBadge 3s ease-in-out infinite;
}

.top-badge img {
    width: 400px;
}

/* FLOAT ANIMATION */
@keyframes floatBadge {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-12px);
    }
}

/* CLOUD */
.cloud {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 420px;
    z-index: 50;
    pointer-events: none;
    animation: cloudMove 6s ease-in-out infinite;
}

@keyframes cloudMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }
}

/* =========================
   📱 MOBILE FIX (FINAL CLEAN)
========================= */
@media (max-width: 991px) {

    .hero-section {
        padding-top: 80px;
    }

    .hero-left,
    .hero-right {
        height: auto;
        min-height: 650px;
    }

    /* LOGO */
    .hero-logo {
        top: 25px;
    }

    .hero-logo img {
        width: 200px;
    }

    /* TEXT STACK CLEAN CENTER */
    .bollywood-text {
        top: 180px;
    }

    .bollywood-text img {
        width: 260px;
    }

    .talent-hunt {
        top: 230px;
    }

    .talent-hunt img {
        width: 260px;
    }

    .proudly-text {
        top: 380px;
    }

    .proudly-text img {
        width: 220px;
    }

    /* REGISTER BUTTON */
    .hero-register-btn-wrap {
        top: 505px;
        width: 100%;
        text-align: center;
    }

    .hero-register-btn {
        min-width: 270px;
        height: 48px;
        font-size: 18px;
        padding: 0 25px;
    }

    /* SOCIAL */
    .social-icons {
        top: 570px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
    }

    .social-icons a i {
        font-size: 18px;
    }

    /* BADGE */
    .top-badge {
        top: 15px;
        width: 100%;
        text-align: center;
    }

    .top-badge img {
        width: 220px;
    }

    /* CLOUD */
    .cloud {
        width: 180px;
        left: 20%;
        top: 10%;
    }
}

/* ===================================
   AUDITION SECTION - CLEAN FULL CSS
=================================== */

.audition-section {
    position: relative;
    padding: 60px 60px;
    overflow: hidden;
    background: linear-gradient(0deg,
            #FE5E15 0%,
            #FE5E15 39.84%,
            #F57C4C 61.84%,
            #DAD3E7 89.85%);
}

/* =========================
   MARQUEE
========================= */

.marquee-wrapper,
.marquee-wrapper-orange {
    padding: 18px 0;
    width: 100%;
    overflow: hidden;
}

.marquee-text {
    font-family: Arial, sans-serif;
    font-size: 50px;
    font-weight: 800;
    color: #1A5FD4;
    white-space: nowrap;
}

.marquee-text-orange {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 58px;
    font-weight: 900;
    color: #ffffff;
    white-space: nowrap;
}

/* =========================
   LAYOUT
========================= */

.audition-mic {
    text-align: center;
}

.audition-mic img {
    width: 100%;
    max-width: 260px;
    animation: micMove 4s ease-in-out infinite;
}

@keyframes micMove {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-18px) translateY(-8px);
    }

    50% {
        transform: translateX(0) translateY(-15px);
    }

    75% {
        transform: translateX(18px) translateY(-8px);
    }

    100% {
        transform: translateX(0);
    }
}

/* =========================
   CONTENT TEXT
========================= */

.audition-content h2 {
    font-size: 156px;
    line-height: 0.9;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.audition-content h3 {
    font-size: 75px;
    font-weight: 900;
    color: #ffe600;
    text-shadow:
        4px 4px 0 rgba(0, 0, 0, 0.55),
        6px 6px 8px rgba(0, 0, 0, 0.35);
}

/* =========================
   BUTTON
========================= */

.audition-btn-wrap {
    text-align: center;
}

.audition-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 320px;
    height: 90px;

    border-radius: 80px;
    background: #e0bf00;

    font-size: 34px;
    font-weight: 900;
    color: #000;
    text-decoration: none;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    animation: buttonFloat 3s ease-in-out infinite;
    transition: 0.3s;
}

.audition-btn:hover {
    background: #fff;
    transform: translateY(-5px);
}

@keyframes buttonFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-22px);
    }

    100% {
        transform: translateY(0);
    }
}

/* =========================
   DETAILS TEXT
========================= */

.audition-details li {
    color: #fff;
    font-size: 35px;
    font-weight: 900;
    line-height: 1.35;
    text-shadow:
        3px 3px 0 rgba(0, 0, 0, 0.55),
        4px 4px 8px rgba(0, 0, 0, 0.35);
}

.audition-details li span {
    color: #fff000;
    font-size: 35px;
    font-weight: 900;
    line-height: 1.35;
    text-shadow:
        3px 3px 0 rgba(0, 0, 0, 0.55),
        4px 4px 8px rgba(0, 0, 0, 0.35);
}

.venue-address {
    color: #fff000;
    font-size: 30px;
    font-weight: 900;
    margin-left: 35px;
    margin-bottom: 25px;
    text-shadow:
        3px 3px 0 rgba(0, 0, 0, 0.55),
        4px 4px 8px rgba(0, 0, 0, 0.35);
}

.inner-list li {
    color: #fff000;
    font-size: 35px;
    font-weight: 900;
    margin-left: 35px;

    text-shadow:
        3px 3px 0 rgba(0, 0, 0, 0.55),
        4px 4px 8px rgba(0, 0, 0, 0.35);
}

/* =========================
   VIDEO
========================= */
.video-wrapper {
    max-width: 950px;
    margin: 50px auto 0;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease;
    line-height: 0;
    background: #000;
}

.video-wrapper:hover {
    transform: translateY(-8px);
}

.video-wrapper video {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

/* =========================
   BIG TEXT BLOCK (REMOVED INLINE STYLE)
========================= */

.big-announcement {
    padding: 48px 40px;
    font-family: "Arial Black", Impact, sans-serif;
    line-height: 1.15;
}

.big-announcement p {
    margin: 0;
    font-size: 92px;
    font-weight: 900;
    letter-spacing: -1px;
}

.green {
    color: #84fb12;
}

.white {
    color: #fff;
}

/* ===================================
   AUDITION HIGHLIGHT (DESKTOP)
=================================== */

.audition-highlight {
    padding: 48px 0px;
    font-family: "Arial Black", Impact, sans-serif;
    line-height: 1.15;
    text-align: start;
}

.audition-highlight p {
    margin: 0;
    font-size: 91px;
    font-weight: 900;
    letter-spacing: -1px;
}

/* COLORS */
.green-text {
    color: #84fb12;
}

.white-text {
    color: #ffffff;
}

/* spacing consistency */
.audition-highlight p+p {
    margin-top: 5px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 991px) {

    .audition-section {
        padding: 50px 15px;
        text-align: center;
    }

    .marquee-text,
    .marquee-text-orange {
        font-size: 22px;
    }

    .audition-mic img {
        max-width: 180px;
    }

    .audition-content h2 {
        font-size: 50px;
        text-align: start;
    }

    .audition-content h3 {
        font-size: clamp(34px, 6vw, 36px);
        line-height: 1.2;
        text-shadow:
            1px 1px 0 rgba(0, 0, 0, 0.55),
            3px 3px 5px rgba(0, 0, 0, 0.30);
        text-align: start;
    }

    .audition-btn {
        width: 100%;
        max-width:350px;
        height: 65px;
        font-size: 18px;
    }

    .audition-btn-wrap {
        margin: 30px 0;
    }

    .audition-details li {
        font-size: clamp(25px, 4.5vw, 20px);
        line-height: 1.3;
        text-align: center;
        font-family: calistoga, serif;
        font-weight: 600;
        list-style: none;
        text-shadow:
            1px 1px 0 rgba(0, 0, 0, 0.55),
            2px 2px 5px rgba(0, 0, 0, 0.28);
    }
    
    .audition-details li span {
        font-size: clamp(25px, 4.5vw, 20px);
        line-height: 1.3;
        text-align: center;
        font-family: calistoga, serif;
        font-weight: 600;
        list-style: none;
        text-shadow:
            1px 1px 0 rgba(0, 0, 0, 0.55),
            2px 2px 5px rgba(0, 0, 0, 0.28);
    }
    .audition-details ul{
        padding:0px;
    }
    .venue-address {
      font-size: clamp(25px, 4.5vw, 20px);
        line-height: 1.3;
        text-align: center;
        font-family: calistoga, serif;
        font-weight: 600;
        list-style: none;
        margin-left: 0;
        margin-bottom: 18px;
        text-shadow:
            1px 1px 0 rgba(0, 0, 0, 0.55),
            2px 2px 5px rgba(0, 0, 0, 0.28);
    }

    .inner-list li {
        font-size: 25px;
        margin-left: 0;
        text-shadow:
            1px 1px 0 rgba(0, 0, 0, 0.55),
            2px 2px 4px rgba(0, 0, 0, 0.30);
        line-height: 1.5;
        text-align: center;
        font-family: calistoga, serif;
        font-weight: 600;
    }

    .video-wrapper {
        margin-top: 35px;
        border-radius: 18px;
    }

    .video-wrapper video {
        height: 260px;
    }

    .big-announcement p {
        font-size: 28px;
        text-align: center;
    }

    .audition-highlight {
        padding: 25px 0px;
    }

    .audition-highlight p {
        font-size: 35px;
        line-height: 1.2;
        letter-spacing: -0.5px;
        text-align:center;
    }

    .audition-highlight p+p {
        margin-top: 3px;
    }
}



.semifinal-section {
    background-color: #2D6FE8;
    padding: 60px;
    line-height: 1.02;
}

/* TITLES */
.semi-line {
    margin: 0;
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: 110px;
    /* fixed desktop size */
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.semi-line.dark {
    color: #84FB12;
}

.semi-line.white {
    color: #fff;
}

.semi-line.yellow {
    color: #fff000;
}

/* VIDEO */
.yt-video-section {
    padding: 40px 60px 80px;
}

.yt-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.yt-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* FEATURES */
.features-section {
    padding: 40px 60px 80px;
}

.features-label {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.features-list {
    padding-left: 40px;
}

.features-list li {
    font-size: 48px;
    /* KEEP SAME DESIGN */
    font-weight: 900;
    margin-bottom: 18px;
    color: #fff;
}

.features-list li span.yellow {
    color: #fff000;
}

.features-list li span.white {
    color: #fff;
}

/* SCHEDULE */
.schedule-date {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
}

.schedule-time {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.schedule-list {
    padding-left: 40px;
}

.schedule-list li {
    font-size: 44px;
    color: #fff000;
    margin-bottom: 12px;
    font-weight: 900;
}

/* BUTTON */
.features-btn-wrap {
    text-align: center;
    margin: 50px 0 60px;
}

.features-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 600px;
    height: 90px;
    border-radius: 60px;
    background: linear-gradient(90deg, #B8900A, #FFE033, #B8900A);
    font-size: 48px;
    font-weight: 900;
    color: #000;
    text-decoration: none;
}

/* MARQUEE */
.marquee-text-blue {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
}

/* =========================
   MOBILE FIX (IMPORTANT)
========================= */

@media (max-width: 991px) {

    .semifinal-section {
        padding: 30px 15px;
    }

    .yt-video-section,
    .features-section {
        padding: 20px 15px;
    }

    .semi-line {
        white-space: normal;
        font-size: 45px;
        text-align: start;
    }

    .features-list li {
        font-size: 26px;
        line-height: 1.2;
    }

    .schedule-date,
    .schedule-time {
        font-size: 26px;
        text-align: start;
    }

    .schedule-list li {
        font-size: 26px;
        line-height: 1.2;
    }

    /* BUTTON FIX */
    .features-register-btn {
        min-width: 260px;
        height: 65px;
        font-size: 28px;
    }

    /* PREVENT OVERFLOW */
    .features-list,
    .schedule-list {
        padding-left: 20px;
    }
}

/* =========================
   WINNERS SECTION
========================= */

.winners-section {
    background: linear-gradient(0deg,
            #FE5E15 0%,
            #FE5E15 39.84%,
            #F57C4C 61.84%,
            #DAD3E7 89.85%);

    padding: 80px 60px 100px;
    text-align: center;
    overflow: hidden;
}

/* =========================
   TITLE
========================= */

.winners-title {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: clamp(60px, 9vw, 140px);
    font-weight: 900;
    color: #2020DD;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    letter-spacing: -4px;
    font-style: italic;
    text-align:center;

    text-shadow:
        -3px -3px 0 #fff,
        3px -3px 0 #fff,
        -3px 3px 0 #fff,
        3px 3px 0 #fff,
        5px 5px 0 #7060CC,
        7px 7px 0 #5040AA,
        9px 9px 0 rgba(0, 0, 0, 0.3);
}

.winners-title:hover {
    transform: scale(1.02);
}

.winners-title span {
    display: inline-block;
}

/* =========================
   TAGLINE
========================= */

.winners-tagline {
    margin: 50px auto;
    display: flex;
    justify-content: center;
}

.voice-master {
    font-family: 'belinda-w00-regular', 'Brush Script MT', 'Comic Sans MS', cursive, script;
    font-weight: normal;
    font-style: normal;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    line-height: 1.05;
    background: linear-gradient(
        135deg,
        #FF8DEA 22.45%,
        #372ef5 55.10%,
        #FF8DEA 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    text-shadow:0 3px 0 rgb(255 255 255 / 0%), 0 8px 12px rgb(111 78 255 / 61%);
    filter: none;
    display: inline-block;
    padding: 8px 12px;
    font-size: clamp(2.5rem, 8vw, 15rem);
    white-space: normal;
    word-break: break-word;
    max-width: 95vw;
    background-size: 100%;
    background-repeat: no-repeat;
}

/* =========================
   PRIZES
========================= */

.winners-prizes {
    margin-top: 40px;
    padding: 0 40px;
}

.prize-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prize-item {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 45px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.prize-item.yellow {
    color: #FFE000;
}

.prize-item.white {
    color: #fff;
}

/* =========================
   MOBILE FIX (IMPORTANT)
========================= */

@media (max-width: 991px) {

    .winners-section {
        padding: 50px 20px 70px;
    }

    /* TITLE FIX */
    .winners-title {
        font-size: clamp(38px, 10vw, 90px);
        line-height: 1.05;
        letter-spacing: -2px;
        text-align: center;
        text-shadow:
            -2px -2px 0 #fff,
            2px -2px 0 #fff,
            -2px 2px 0 #fff,
            2px 2px 0 #fff,
            3px 3px 0 #7060CC,
            4px 4px 0 #5040AA,
            6px 6px 10px rgba(0, 0, 0, 0.35);
    }

    /* TAGLINE FIX */
    .winners-tagline {
        margin: 30px auto;
        padding: 0 10px;
    }

    .voice-master {
        font-size: clamp(2rem, 7vw, 5rem);

        line-height: 1.08;
        letter-spacing: 0.015em;

        padding: 6px 8px;

        /* MOBILE STROKE */
        -webkit-text-stroke: 1.2px #ffffff;

        /* CLEAN SHADOW */
        text-shadow:
            0 2px 0 rgba(255, 255, 255, 0),
            0 5px 10px rgba(111, 78, 255, 0.45);

        max-width: 100%;
    }

    /* PRIZES */
    .winners-prizes {
        padding: 0 10px;
    }

    .prize-item {
        font-size: clamp(25px, 4vw, 30px);
        margin-bottom: 25px;
        text-align: left;
    }
}

/* main container: text-align center */
.captivating-voice {
    width: 100%;
    margin-top: 60px;
    text-align: center;
    background: transparent;
}

@media (max-width: 680px) {
    .voice-master {
        font-size: clamp(40px, 8vw, 42px);
        font-weight: 900;
        line-height: 1.1;
        letter-spacing: 0.01em;

        padding: 4px 6px;

        -webkit-text-stroke: 0.5px #ffffff;

         text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.5),
            0 4px 10px rgba(111, 78, 255, 0.5);

        max-width: 100%;
        word-break: break-word;
    }
}


/* =========================
   JUDGING SECTION
========================= */
.judging-section {
    background: linear-gradient(180deg, #2E69FF 0%, #0F2E7C 100%);
    padding: 60px 70px;
}

/* =========================
   TITLE BLOCK
========================= */
.judging-title {
    line-height: 0.95;
}

.judging-title-main {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: clamp(70px, 9.5vw, 150px);
    color: #84fb12;
    font-weight: 900;
    letter-spacing: -2px;
}

.judging-title-sub {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: clamp(65px, 9vw, 145px);
    color: #fff;
    font-weight: 900;
    letter-spacing: -2px;
}

.judging-title-highlight {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: clamp(65px, 9vw, 145px);
    color: #FFE000;
    font-weight: 900;
    letter-spacing: -2px;
}

/* =========================
   CRITERIA
========================= */
.judging-criteria {
    margin-top: 40px;
}

.criteria-heading {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(22px, 2.8vw, 38px);
    color: #FFE000;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.criteria-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
}

.criteria-list li {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(20px, 2.6vw, 36px);
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
}

.criteria-list li::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* =========================
   BUTTON
========================= */
.judging-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.judging-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    height: 70px;
    background: #FFE000;
    color: #000;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    font-size: 28px;
    transition: 0.3s;
}

.judging-btn:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* =========================
   MARQUEE
========================= */
.judging-marquee {
    margin-top: 40px;
    overflow: hidden;
}

.judging-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.judging-marquee-track .item {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 3.8vw, 56px);
    color: #fff;
    white-space: nowrap;
    padding-right: 60px;
}

.judging-marquee-track .sep {
    color: #FFE000;
    margin: 0 15px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 991px) {

    .judging-section {
        padding: 40px 20px;
    }

    .judging-title-main,
    .judging-title-sub,
    .judging-title-highlight {
        font-size: clamp(40px, 10vw, 80px);
        text-align: start;
    }

    .criteria-heading {
        font-size: 35px;
        text-align: start;
        line-height: 1;
    }

    .criteria-list li {
        font-size: 20px;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .judging-btn-wrap {
        margin-top: 30px;
    }

    .judging-btn {
        min-width: 270px;
        height: 55px;
        font-size: 18px;
    }

    .judging-marquee-track .item {
        font-size: 18px;
    }
}

/* =========================
   MAIN SECTION
========================= */
.new-section {
    background: linear-gradient(0deg, #FE5E15 0%, #FE5E15 39%, #F57C4C 62%, #DAD3E7 90%);
    padding: 80px 60px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* =========================
   HERO TITLE
========================= */
.hero-title {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: clamp(60px, 9vw, 140px);
    font-weight: 900;
    color: #2020DD;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    letter-spacing: -4px;
    font-style: italic;
    text-align:center;

    text-shadow:
        -3px -3px 0 #fff,
        3px -3px 0 #fff,
        -3px 3px 0 #fff,
        3px 3px 0 #fff,
        5px 5px 0 #7060CC,
        7px 7px 0 #5040AA,
        9px 9px 0 rgba(0, 0, 0, 0.3);
}

/* =========================
   TICKER
========================= */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    margin-bottom: 30px;
}

.ticker {
    white-space: nowrap;
    animation: marquee 10s linear infinite;
}

.ticker-content {
    font-family: 'Arial Black', Impact;
    font-size: clamp(18px, 3vw, 34px);
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================
   CONTENT BLOCKS
========================= */
.new-item {
    max-width: 1100px;
    text-align: center;
    margin: 40px auto 0;
    padding: 0 10px;
}

/* WHITE BLOCK */
.new-white .reg-text {
    font-family: "Fraunces 120pt Light", serif;
    font-size: 45px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* YELLOW BLOCK */
.new-yellow p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 38px);
    font-weight: 600;
    line-height: 1.5;
    color: #FFE000;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.new-yellow .white-text {
    color: #fff;
}

.new-yellow .fee {
    color: #fff;
    font-weight: 700;
}

/* BUTTON */
.features-btn-wrap {
    margin: 20px auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

    .new-section {
        padding: 20px 20px 20px;
    }

    .ticker-wrap {
        margin-bottom: 0px;
    }

    .new-white {
        margin-top: 20px;
        margin-bottom: 0px;
    }

    .new-yellow {
        margin-top: 10px;
        margin-bottom: 0px;
    }

    .hero-title {
        font-size: clamp(38px, 10vw, 90px);
        line-height: 1.05;
        letter-spacing: -2px;
        text-align: center;

        /* MOBILE/TABLET SHADOW FIX */
        text-shadow:
            -2px -2px 0 #fff,
            2px -2px 0 #fff,
            -2px 2px 0 #fff,
            2px 2px 0 #fff,
            3px 3px 0 #7060CC,
            5px 5px 0 #5040AA,
            6px 6px 10px rgba(0, 0, 0, 0.35);
    }

    .new-white .reg-text {
        font-size: 22px;
        line-height: 1.3;
    }

    .new-yellow p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {

    .hero-title {
        font-size: 28px;
        line-height: 1.15;
        letter-spacing: -1px;

        /* SMALL MOBILE CLEAN SHADOW */
        text-shadow:
            -1px -1px 0 #fff,
            1px -1px 0 #fff,
            -1px 1px 0 #fff,
            1px 1px 0 #fff,
            2px 2px 0 #7060CC,
            3px 3px 0 #5040AA,
            4px 4px 8px rgba(0, 0, 0, 0.35);
    }

    .new-white .reg-text {
        font-size: 30px;
    }

    .new-yellow p {
        font-size: 30px;
    }

    .ticker-content {
        font-size: 30px;
    }
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    background: #000;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

/* container */
.contact-container {
    max-width: 1000px;
    margin: auto;
}

/* =========================
   TITLE
========================= */
.contact-title {
    font-family: math;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 60px;
}

/* =========================
   LIST
========================= */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* row */
.contact-item {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* name */
.contact-name {
    color: #FFE000;
    margin-right: 15px;
    white-space: nowrap;
}

/* separator */
.contact-sep {
    color: #ffffff;
    margin: 0 15px;
}

/* phone */
.contact-phone {
    color: #ffffff;
    font-family: monospace;
    white-space: nowrap;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {

    .contact-section {
        padding: 30px 24px;
    }

    .contact-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .contact-item {
        font-size: 26px;
        gap: 6px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {

    .contact-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .contact-item {
        text-align: center;
        font-size: 20px;
        gap: 5px;
    }

    .contact-name,
    .contact-sep,
    .contact-phone {
        margin: 0;
    }

    .contact-sep {
        display: none;
    }
}

/* =========================
   BOTTOM BANNER SECTION
========================= */
.bottom-banner {
    background: #000;
    padding: 60px 40px;
}

/* container */
.bottom-banner-container {
    /*max-width: 1200px;*/
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* =========================
   LEFT LOGO
========================= */
.bottom-left img {
    max-height: 230px;
    width: auto;
    display: block;
}

/* =========================
   CENTER LOGO
========================= */
.bottom-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom-center img {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.bottom-tagline {
    color: #fff;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 22px;
    margin: 0;
}

/* =========================
   RIGHT CONTENT
========================= */
.bottom-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom-text {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    font-family: lulo-clean-w01-one-bold, sans-serif;
}

/* BUTTON */
.bottom-btn {
    background: linear-gradient(to right, #FFD700, #FDB931);
    color: #000;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    width: 100%;
    text-align: center;
}

.bottom-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #FFE033, #FFC107);
}

/* =========================
   RESPONSIVE (TABLET)
========================= */
@media (max-width: 992px) {

    .bottom-banner-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .bottom-right {
        align-items: center;
        text-align: center;
    }
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */
@media (max-width: 600px) {

    .bottom-banner {
        padding: 40px 20px;
    }

    .bottom-center img {
        max-width: 250px;
    }

    .bottom-tagline {
        font-size: 18px;
    }

    .bottom-text {
        font-size: 20px;
    }

    .bottom-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .bottom-left img {
        max-height: 150px;
    }
}

/* =========================================
   FOOTER SECTION
========================================= */
.footer-section {
    background: linear-gradient(360deg, #A5F35D 0%, #6ACD0C 23.252360026041664%, #A37BEA 74.33182565789474%, #8A63D0 98.96026075932018%);
    padding: 70px 25px 30px;
    position: relative;
    overflow: hidden;
}

/* =========================================
   FOOTER CONTAINER
========================================= */
.footer-container {
    max-width: 1350px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;

    align-items: start;
}

/* =========================================
   LEFT AREA
========================================= */
.footer-left-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* =========================================
   TOP SLOGAN IMAGE
========================================= */
.footer-slogan {
    width: 100%;
}

.footer-slogan img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* =========================================
   LOGO ROW
========================================= */
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
}

/* STR LOGO */
.footer-logo-left img {
    width: 170px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* TALENT HUNT LOGO */
.footer-logo-right img {
    width: 230px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* =========================================
   FOOTER COLUMN
========================================= */
.footer-col h4 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;

    margin-bottom: 22px;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col a,
.footer-col li {
    font-size: 16px;
    line-height: 1.8;
    color: #111111;
    text-decoration: none;
    font-weight: 600;
}

.footer-col a:hover {
    text-decoration: underline;
}

/* =========================================
   POLICY LIST
========================================= */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0px;
}


/* =========================================
   SOCIAL ICONS
========================================= */
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 25px;
}

.footer-social-icons a {
    width: 46px;
    height: 46px;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #000000;
    font-size: 20px;

    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: #ffffff;
    transform: translateY(-4px);
    text-decoration: none;
}

/* =========================================
   COPYRIGHT
========================================= */
.copyright-bar {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    line-height: 1.7;
}

.copyright-bar a {
    color: #111111;
    text-decoration: underline;
}

.copyright-bar a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* =========================================
   MOBILE FIX FOOTER
========================================= */
@media (max-width: 768px) {

    .footer-section {
        padding: 45px 16px 25px;
    }

    /* MAIN GRID */
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    /* LEFT AREA */
    .footer-left-area {
        width: 100%;
        align-items: center;
    }

    /* TOP IMAGE */
    .footer-slogan {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-slogan img {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }

    /* TWO LOGOS SIDE BY SIDE */
    .footer-logo-row {
        width: 100%;

        display: flex;
        justify-content: center;
        align-items: center;

        gap: 12px;
        flex-wrap: nowrap;
    }

    /* STR LOGO */
    .footer-logo-left {
        width: 50%;
        display: flex;
        justify-content: center;
    }

    .footer-logo-left img {
        width: 100%;
        max-width: 145px;
        height: auto;
    }

    /* TALENT LOGO */
    .footer-logo-right {
        width: 50%;
        display: flex;
        justify-content: center;
    }

    .footer-logo-right img {
        width: 100%;
        max-width: 145px;
        height: auto;
    }

    /* FOOTER COLUMNS */
    .footer-col {
        width: 100%;
    }

    .footer-col h4 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .footer-col p,
    .footer-col a,
    .footer-col li {
        font-size: 15px;
        line-height: 1.7;
    }

    /* SOCIAL ICONS */
    .footer-social-icons {
        justify-content: center;
        margin-top: 16px;
        gap: 12px;
    }

    .footer-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    /* COPYRIGHT */
    .copyright-bar {
        margin-top: 35px;
        padding-top: 18px;
        font-size: 12px;
        line-height: 1.7;
    }
}

/* =========================================
   EXTRA SMALL DEVICES
========================================= */
@media (max-width: 480px) {

    .footer-section {
        padding: 40px 14px 22px;
    }

    .footer-slogan img {
        max-width: 280px;
    }

    .footer-logo-left img {
        max-width: 145px;
    }

    .footer-logo-right img {
        max-width: 145px;
    }

    .footer-col h4 {
        font-size: 18px;
    }

    .footer-col p,
    .footer-col a,
    .footer-col li {
        font-size: 14px;
    }

    .copyright-bar {
        font-size: 11px;
    }
}

/* ====================================================================================================================================
Register Blade File CSS
============================================================================================================================================= */

.register-section {
    position: relative;
    overflow: hidden;
    background: #000000;
    padding: 0;
}

/* LEFT SIDE */
.register-left {
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    background: #000000;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.register-str {
    max-width: 200px;
    width: 100%;
    object-fit: contain;
}

.register-talent {
    max-width: 300px;
    width: 100%;
    object-fit: contain;
}

.register-voice {
    z-index: 2;
    animation: floatVoice 4s ease-in-out infinite;
    display: flex;
    justify-content: center;
    width: 100%;
}

.register-voice img {
    width: 85%;
    object-fit: contain;
    display: block;
}

.register-text-div {
    margin: 0 55px;
}

.register-title-green {
    font-size: 60px;
    line-height: 1.1;
    color: #84FB12;
    font-family: "Fraunces 120pt SemiBold", serif;
    font-weight: 600;
    margin: 0 0 20px;
}

.register-title-white {
    font-size: 60px;
    line-height: 1.1;
    color: #ffffff;
    font-family: "Fraunces 120pt SemiBold", serif;
    font-weight: 600;
    margin: 0 0 20px;
}

.register-title {
    font-size: 60px;
    line-height: 1;
    font-family: "Fraunces 120pt SemiBold", serif;
    font-weight: 600;
    margin: 0 0 20px;
}

.register-title .span-green {
    color: #84FB12;
}

.register-title .span-white {
    color: #ffffff;
}

.register-title .span-yellow {
    color: #fff000;
}

/* Floating Animation */
@keyframes floatVoice {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Mobile Responsive */
@media (max-width: 991px) {

    .register-voice {
        right: 15px;
        bottom: 20px;
    }

    .register-voice img {
        width: 170px;
    }
}

/* RIGHT SIDE */
.register-right {
    min-height: 100vh;
    background: #000000;
    color: #fff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register-right h2 {
    font-size: 60px;
    font-weight: 800;
    color: rgb(132, 251, 18);
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 991px) {

    .register-left,
    .register-right {
        min-height: auto;
        padding: 60px 25px;
        text-align: center;
    }

    .register-right {
        align-items: center;
    }

    .register-right h2 {
        font-size: 42px;
    }

    .register-right p {
        font-size: 16px;
    }

    .register-talent {
        max-width: 320px;
    }

    .register-str {
        max-width: 180px;
    }
}

.audition-process {
    background: #0f2e7c;
    min-height: 100vh;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
}

/* TITLE */
.audition-title {
    font-size: 68px;
    line-height: 1;
    font-family: "Fraunces 120pt SemiBold", serif;
    font-weight: 600;
    margin-bottom: 45px;
}

.audition-title .span-yellow {
    color: #fff000;
}

/* CARD */
.audition-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 45px 50px;
    backdrop-filter: blur(10px);
    max-width: 1100px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* LIST */
.audition-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.audition-list li {
    position: relative;
    padding-left: 65px;
    color: #ffffff;
    font-size: 50px;
    line-height: 1.3;
    font-weight: 600;
    font-family: "Fraunces 120pt SemiBold", serif;
}

/* CUSTOM ICON */
.audition-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #84FB12;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HIGHLIGHT TEXT */
.highlight-yellow {
    color: #E9FF02;
    font-weight: 700;
}

/* MOBILE */
@media (max-width: 991px) {

    .audition-process {
        padding: 50px 20px;
    }

    .audition-title {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .audition-list {
        gap: 24px;
    }

    .audition-list li {
        position: relative;
        padding-left: 55px;
        font-size: 40px;
        line-height: 1.6;
        color: #ffffff;
        font-family: "Fraunces 120pt SemiBold", serif;
        font-weight: 600;
    }

    .audition-list li::before {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

.final-rounds {
    background: #000;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* TOP IMAGE */
.final-top-image {
    margin-bottom: 20px;
}

.final-top-image img {
    width: 400px;
    max-width: 100%;
    object-fit: contain;
}

/* SECOND IMAGE */
.final-middle-image {
    margin-bottom: 20px;
}

.final-middle-image img {
    width: 600px;
    max-width: 100%;
    object-fit: contain;
}

/* CONTENT */
.final-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* TITLE */
.final-title {
    font-family: "Poppins", sans-serif;
    font-size: 55px;
    font-style: italic;
    font-weight: 900;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    color: rgb(15, 27, 248);

    text-shadow:
        -2px -2px 0 #fff,
        2px -2px 0 #fff,
        -2px 2px 0 #fff,
        2px 2px 0 #fff,
        3px 3px 0 #7060CC,
        5px 5px 0 #5040AA,
        6px 6px 10px rgba(0, 0, 0, 0.35);

    margin-bottom: 30px;
}

/* DESCRIPTION */
.final-description p {
    font-family: "Fraunces 120pt Light", serif;
    font-size: 60px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    margin: 0;
}

/* HIGHLIGHT */
.final-description .highlight-text {
    color: #E9FF02;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 991px) {

    .final-rounds {
        padding: 70px 20px;
    }

    .final-top-image img {
        width: 160px;
    }

    .final-middle-image img {
        width: 320px;
    }

    .final-title {
        font-size: clamp(24px, 6vw, 36px);
        line-height: 1.35;
        padding: 0 10px;

        text-shadow:
            -1px -1px 0 #DBDDFE,
            1px -1px 0 #DBDDFE,
            1px 1px 0 #DBDDFE,
            -1px 1px 0 #DBDDFE,

            0 2px 0 #6852FF,
            0 4px 8px rgba(86, 109, 255, 0.28);
    }

    .final-description p {
        font-size: 22px;
        line-height: 1.6;
    }
}

.register-right {
    padding: 60px;
    background: #000;
    min-height: 100vh;
    color: #fff;
}

.register-right h2 {
    font-size: 55px;
    margin: 20px 0px;
    color: #84FB12;
    font-family: "Fraunces 120pt SemiBold", serif;
}

/* FORM */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* COMMON INPUT */
.form-control {
    width: 100%;
    height: 55px;
    background: #000 !important;
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 0 18px;
    color: #fff !important;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: none;
}

/* PLACEHOLDER */
.form-control::placeholder {
    color: #fff !important;
    opacity: 1;
}

/* SELECT OPTIONS */
.form-control option {
    background: #000;
    color: #fff;
}

/* FOCUS */
.form-control:focus {
    outline: none;
    background: #000 !important;
    color: #fff !important;
    border-color: #84FB12;

    box-shadow:
        0 0 0 3px rgba(132, 251, 18, 0.15),
        0 0 15px rgba(132, 251, 18, 0.25);
}

/* BIRTHDAY GRID */
.birthday-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* ERROR */
.error-text {
    display: block;
    margin-top: 8px;
    color: #ff4d4d;
    font-size: 14px;
}

/* BUTTON */
.register-submit-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 14px;
    background: #84FB12;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.register-submit-btn:hover {
    background: #fff;
}

/* LOADER */
.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.d-none {
    display: none !important;
}

/* NUMBER INPUT */
input[type="number"] {
    appearance: textfield;
}

/* FILE INPUT */
input[type="file"].form-control {
    min-height: 58px;
    padding: 12px 15px;
}

/* FILE BUTTON */
input[type="file"].form-control::file-selector-button {
    background: #84FB12;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    margin-right: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

/* FILE BUTTON HOVER */
input[type="file"].form-control::file-selector-button:hover {
    background: #fff;
    color: #000;
}

/* MOBILE */
/* ================= MOBILE VIEW ================= */
@media (max-width: 991px) {

    /* REGISTER SECTION */
    .register-left,
    .register-right {
        min-height: auto;
        padding: 90px 20px;
        text-align: center;
    }

    .logo-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .register-str {
        max-width: 130px;
    }

    .register-talent {
        max-width: 220px;
    }

    .register-voice img {
        width: 90%;
    }

    .register-text-div {
        margin: 20px 0;
    }

    .register-title,
    .register-title-green,
    .register-title-white {
        font-size: 32px;
        line-height: 1.3;
    }

    .register-right h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    /* FORM */
    .form-group label {
        font-size: 15px;
    }

    .form-control {
        height: 50px;
        font-size: 14px;
    }

    .birthday-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .register-submit-btn {
        height: 55px;
        font-size: 16px;
    }

    /* AUDITION SECTION */
    .audition-process {
        padding: 50px 20px;
        min-height: auto;
    }

    .audition-title {
        font-size: 34px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .audition-list {
        gap: 20px;
    }

    .audition-list li {
        font-size: 22px;
        line-height: 1.5;
        padding-left: 50px;
    }

    .audition-list li::before {
        width: 30px;
        height: 30px;
        font-size: 16px;
        top: 5px;
    }

    /* FINAL SECTION */
    .final-rounds {
        padding: 60px 20px;
    }

    .final-top-image img {
        width: 180px;
    }

    .final-middle-image img {
        width: 280px;
    }

    .final-description p {
        font-size: 20px;
        line-height: 1.6;
    }
}

/* =========================================
   PRIVACY POLICY SECTION
========================================= */
.privacy-policy-section {
    background: #000000;
    padding: 80px 20px 60px;
}

/* TITLE */
.privacy-title {
    margin: 0 auto 50px;
    color: #ffffff;
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 20px;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    max-width: 1200px;
    line-height: 1.2;
}

/* CONTENT WRAPPER */
.privacy-contain {
    max-width: 1100px;
    margin: auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    backdrop-filter: blur(8px);
}

/* HEADINGS */
.privacy-contain h1 {
    color: #FFE000;
    font-size: 34px;
    margin-bottom: 18px;
    margin-top: 40px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.privacy-contain h1:first-child {
    margin-top: 0;
}

/* PARAGRAPHS */
.privacy-contain p {
    color: #f1f1f1;
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 22px;
    font-family: 'Space Grotesk', sans-serif;
}

/* LINKS */
.privacy-link {
    color: #FFE000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.privacy-link:hover {
    color: #ffffff;
}

.privacy-contain ul {
    margin: 20px 0 0;
    padding-left: 22px;
    text-align: start;
}

.privacy-contain ul li {
    color: #ffffff;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.9;
    margin-bottom: 5px;
    font-family: 'Space Grotesk', sans-serif;
}

/* =========================================
   TABLET
========================================= */
@media (max-width: 991px) {

    .privacy-policy-section {
        padding: 80px 18px 40px;
    }

    .privacy-title {
        font-size: 32px;
        letter-spacing: 10px;
        margin-bottom: 35px;
    }

    .privacy-contain {
        padding: 35px 25px !important;
    }

    .privacy-contain h1 {
        font-size: 28px;
    }

    .privacy-contain p {
        font-size: 16px;
        line-height: 1.8;
    }

    .privacy-contain p,
    .privacy-contain ul li {
        font-size: 15px;
        line-height: 1.7;
    }

    .privacy-contain ul {
        padding-left: 18px;
    }
}

/* =========================================
   MOBILE
========================================= */
@media (max-width: 768px) {

    .privacy-policy-section {
        padding: 80px 15px 30px;
    }

    .privacy-title {
        font-size: 24px;
        letter-spacing: 5px;
        padding: 14px 0;
        margin-bottom: 25px;
    }

    .privacy-contain {
        padding: 22px 18px !important;
        border-radius: 14px;
    }

    .privacy-contain h1 {
        font-size: 22px;
        margin-top: 28px;
        margin-bottom: 12px;
    }

    .privacy-contain p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .privacy-contain p,
    .privacy-contain ul li {
        font-size: 15px;
        line-height: 1.7;
    }

    .privacy-contain ul {
        padding-left: 18px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */
@media (max-width: 480px) {

    .privacy-title {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .privacy-contain {
        padding: 18px 14px !important;
    }

    .privacy-contain h1 {
        font-size: 19px;
    }

    .privacy-contain p {
        font-size: 14px;
        line-height: 1.7;
    }

    .privacy-contain p,
    .privacy-contain ul li {
        font-size: 15px;
        line-height: 1.7;
    }

    .privacy-contain ul {
        padding-left: 18px;
    }
}


.str-about-section {
    background:
        conic-gradient(from 136deg at 0% 5.523045857747396%,
            #550E9B 0%,
            #8015E8 6%,
            #F3A78F 12%,
            #550E9B 23.106267159445242%);

    padding: 100px 20px 80px;
    text-align: center;
    overflow: hidden;
}

.str-about-title {
    font-size: 52px;
    color: #FFE200;
    margin-bottom: 35px;
    font-weight: 400;
    font-family: Arial Black, Arial, sans-serif;
    text-shadow: 1px 2px 5px #000000;
}

.str-about-text {
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 40px;
    font-family: 'Fraunces', serif;
    font-weight: 400;
    text-shadow: 1px 2px 5px #000000;
}

.str-about-text span {
    color: #FFE200;
    font-weight: 500;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {

    .str-about-title {
        font-size: 44px;
    }

    .str-about-text {
        font-size: 28px;
        line-height: 1.6;
    }

}

@media (max-width: 991px) {

    .str-about-section {
        padding: 100px 20px 60px;
    }

    .str-about-title {
        font-size: 38px;
        margin-bottom: 25px;
    }

    .str-about-text {
        font-size: 38px;
        margin-bottom: 25px;
    }

}

@media (max-width: 767px) {

    .str-about-section {
        padding: 100px 15px 50px;
    }

    .str-about-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .str-about-text {
        font-size: 30px;
        line-height: 1.8;
    }

}

@media (max-width: 480px) {

    .str-about-title {
        font-size: 30px;
    }

    .str-about-text {
        font-size: 27px;
        line-height: 1.3;
    }

}

/* =============================
   FOUNDER SECTION
============================= */

.str-founder-section {
    position: relative;
    overflow: hidden;
}

/* =============================
   IMAGE
============================= */

.str-founder-image-box {
    position: relative;
    border-radius: 0px 80px 80px 0px;
    overflow: hidden;
    height: 100%;
}

.str-founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
    display: block;
}

.str-founder-image-box:hover .str-founder-image {
    transform: scale(1.05);
}

/* =============================
   CONTENT
============================= */

.str-founder-content {
    text-align: center;
    margin-right: 10px;
    padding: 20px;
}

.str-founder-title {
    margin-bottom: 25px;
    font-size: 65px;
    font-style: italic;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.05em;
    text-align: right;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    -webkit-text-fill-color: rgb(15, 27, 248);
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: rgba(219, 221, 254, 1);
    text-shadow:
        0.01em 0.04em 0em #6852FF,
        0em 0.05em 0.042em rgba(104, 82, 255, 0.30),
        0.01em 0.14em 0.124em rgba(86, 109, 255, 0.30);
}

.str-founder-name {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;

    font-size: clamp(26px, 4vw, 52px);

    line-height: normal;
    letter-spacing: 0;

    text-align: right;
    text-decoration: none;

    color: #000000;
    margin-bottom: 10px;
}

.str-founder-text {
    margin-bottom: 35px;

    color: #0F2E7C;
    background-color: transparent;

    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-style: normal;

    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0;

    text-align: right;
}

/* =============================
   LARGE DEVICE
============================= */

@media(max-width:1199px) {

    .str-founder-title {
        font-size: 56px;
    }

    .str-founder-text {
        font-size: 22px;
    }
}

/* =============================
   TABLET
============================= */

@media(max-width:991px) {

    .str-founder-section {
        padding: 0px;
    }

    .str-founder-image-box {
        border-radius: 0px 50px 50px 0px;
        margin-bottom: 30px;
    }

    .str-founder-content {
        margin-right: 0;
        padding: 15px 20px;
    }

    .str-founder-title {
        font-size: 48px;
        -webkit-text-stroke-width: 3px;
    }

    .str-founder-name {
        text-align: center;
        font-size: 38px;
    }

    .str-founder-text {
        text-align: center;
        font-size: 20px;
        line-height: 1.7;
    }
}

/* =============================
   MOBILE
============================= */

@media(max-width:767px) {

    .str-founder-section {
        padding: 0px;
    }

    .str-founder-image-box {
        border-radius: 0px 50px 50px 0px;
        width: 90%;
    }

    .str-founder-content {
        padding: 10px 15px;
    }

    .str-founder-title {
        font-size: 34px;
        line-height: 1;
        margin-bottom: 18px;

        -webkit-text-stroke-width: 2px;
    }

    .str-founder-name {
        text-align: center;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .str-founder-text {
        text-align: center;
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
}

/* =============================
   SMALL MOBILE
============================= */

@media(max-width:480px) {

    .str-founder-title {
        font-size: 30px;
        letter-spacing: -3px;
    }

    .str-founder-name {
        font-size: 24px;
    }

    .str-founder-text {
        font-size: 20px;
        padding: 15px;
    }
}

/* ===================================
   ALTERNATE FOUNDER SECTION
=================================== */

.str-founder-alt-section {
    position: relative;
    overflow: hidden;
    background: black;
    border-radius: 0px 80px 80px 0px;
}

/* ===================================
   IMAGE
=================================== */

.str-founder-alt-image-box {
    position: relative;
    border-radius: 0px 80px 80px 0px;
    overflow: hidden;
}

.str-founder-alt-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.str-founder-alt-image-box:hover .str-founder-alt-image {
    transform: scale(1.05);
}

/* ===================================
   CONTENT
=================================== */

.str-founder-alt-content {
    padding: 20px 40px;
}

.str-founder-alt-name {
    margin-bottom: 18px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    line-height: 1.1;
}

.str-founder-alt-text {
    margin-bottom: 0;
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.7;
    color: #FFE200;
    text-align: left;
}

/* ===================================
   TABLET
=================================== */

@media(max-width:991px) {

    .str-founder-alt-section {
        padding: 60px 0;
    }

    .str-founder-alt-image-box {
        border-radius: 50px;
    }

    .str-founder-alt-content {
        padding: 20px;
        text-align: center;
        background: #000000;
    }

    .str-founder-alt-title {
        font-size: 48px;
        text-align: center;
    }

    .str-founder-alt-name {
        text-align: center;
        font-size: 38px;
    }

    .str-founder-alt-text {
        text-align: center;
        font-size: 20px;
    }
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:767px) {

    .str-founder-alt-section {
        padding: 20px 0;
        border-radius: 0px;
        background: white;
    }

    .str-founder-alt-image-box {
        border-radius: 0px 80px 80px 0px;
        width: 90%;
    }

    .str-founder-alt-title {
        font-size: 34px;
        -webkit-text-stroke-width: 2px;
    }

    .str-founder-alt-name {
        font-size: 28px;
    }

    .str-founder-alt-text {
        font-size: 20px;
        line-height: 1.8;
    }
}

.str-what-section {
    padding: 50px 20px;
    background: linear-gradient(90deg, #2E69FF 0%, #0F2E7C 100%);
    overflow: hidden;
    position: relative;
    transition: var(--transition, none);
}

.str-what-heading {
    padding: 20px;
}

.str-what-title {
    font-size: 150px;
    line-height: 1;
    text-transform: uppercase;
    color: #FFE200;
    font-family: 'madefor-display-bold', sans-serif;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    letter-spacing: 0;
    font-weight: 700;
    word-break: break-word;
}

.str-what-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.str-what-box-title {
    color: #FFE200;
    font-family: "arial black", arial-w01-black, sans-serif;
    font-weight: 400;
    font-size: 30px;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1.6;
}

.str-what-list {
    margin: 0;
    padding-left: 20px;
}

.str-what-list li {
    color: #ffffff;
    font-family: "arial black", arial-w01-black, sans-serif;
    font-weight: 400;
    font-size: 30px;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1.6;
}

/* =========================
   Large Tablet
========================= */
@media (max-width: 1200px) {

    .str-what-title {
        font-size: 110px;
    }

    .str-what-box-title,
    .str-what-list li {
        font-size: 26px;
    }
}

/* =========================
   Tablet
========================= */
@media (max-width: 992px) {

    .str-what-section {
        padding: 40px 20px;
    }

    .str-what-heading {
        padding: 10px 0;
    }

    .str-what-title {
        font-size: 80px;
        text-align: center;
    }

    .str-what-content {
        gap: 20px;
    }

    .str-what-box-title,
    .str-what-list li {
        font-size: 22px;
        line-height: 1.5;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 768px) {

    .str-what-section {
        padding: 30px 15px;
    }

    .str-what-title {
        font-size: 55px;
        line-height: 1.1;
    }

    .str-what-box-title {
        font-size: 20px;
    }

    .str-what-list {
        padding-left: 18px;
    }

    .str-what-list li {
        font-size: 18px;
        line-height: 1.5;
    }
}

/* =========================
   Small Mobile
========================= */
@media (max-width: 480px) {

    .str-what-title {
        font-size: 77px;
        text-align: start;
    }

    .str-what-box-title {
        font-size: 28px;
    }

    .str-what-list li {
        font-size: 28px;
    }

    .str-what-content {
        gap: 15px;
    }
}

/* =========================
   YOUTUBE VIDEO SECTION
========================= */

.youtube-video-section{
    padding: 80px 20px;
    background: #fc6522;
    position: relative;
}

.youtube-video-heading{
    text-align: center;
    margin-bottom: 40px;
}

.youtube-video-heading h2{
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.youtube-video-heading p{
    color: #cfcfcf;
    font-size: 18px;
    margin: 0;
}

.youtube-video-wrapper{
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

/* Responsive Ratio */
.youtube-video-wrapper::before{
    content: "";
    display: block;
    padding-top: 56.25%;
}

.youtube-video-wrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px){

    .youtube-video-section{
        padding: 20px;
    }

    .youtube-video-heading h2{
        font-size: 30px;
    }

    .youtube-video-heading p{
        font-size: 15px;
    }

    .youtube-video-wrapper{
        border-radius: 16px;
    }
}