<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: #A71931;
    --secondary-color: #192842;
    --accent-color: #f8d030;
    --text-dark: #030f23;
    --text-light: #ffffff;
    --bg-light: #f8fbfb;
    --leather-color: #5a2d1a;
    --black-bg: #000;
    --brown-color: #603813;
}

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

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: radial-gradient(circle, #ffffff, #8b5a2b) !important;
    background-attachment: fixed;
    min-height: 100vh;
}

.bmpui-ui-watermark {
    display: none !important;
}

.bmpui-ui-seekbar .bmpui-seekbar .bmpui-seekbar-playbackposition, .bmpui-ui-volumeslider .bmpui-seekbar .bmpui-seekbar-playbackposition {
    background-color: #603813 !important;
}

.bmpui-seekbar-playbackposition-marker {
    border: .1875em solid #603813 !important;
    background-color: #603813 !important;
    color: #603813 !important;
}

.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--black-bg);
    backdrop-filter: blur(8px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 80px;
}

    .fixed-header img {
        height: 50px;
        justify-self: start;
    }

.logo-container {
    display: flex;
    align-items: center;
}

.nav-container {
    justify-self: end;
}

.register-button {
    background: var(--bg-light);
    color: var(--black-bg);
    padding: 0.6rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px;
    text-align: center;
}

    .register-button:hover {
        transform: scale(1.15);
    }

/* hero section */
.hero-section {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    margin-top: 30px;
    margin-bottom: -30px;
    padding-bottom: 3%;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    padding: 2rem 1rem;
    padding-bottom: 0;
}

.hero-graphic {
    max-width: 100%;
    height: auto;
    margin-top: 1.5rem;
}

.hero-content {
    text-align: center;
    color: var(--text-dark);
    padding-top: 2rem;
}

    .hero-content p {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 0.8rem;
    }

    .hero-content .event-location {
        font-size: 1.4rem;
        font-weight: 700;
        display: block;
        margin-bottom: 0.5rem;
    }

    .hero-content .register-button {
        margin-top: 1rem;
        padding: 0.7rem 2rem;
        font-size: 1.2rem;
        background-color: var(--brown-color);
        color: var(--text-light);
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        transition: transform 0.3s ease;
        transform: scale(1.05);
    }

        .hero-content .register-button:hover {
            transform: scale(1.15);
        }

/* video section */
.hero-video-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    position: relative;
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

    .hero-video video {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        /* height: 100%; */
        border: 0;
        object-fit: contain;
    }

.sound-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
}

    .sound-btn svg {
        width: 24px;
        height: 24px;
        color: white;
    }

    .sound-btn:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

.video-register-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .video-register-container .register-button {
        background-color: var(--brown-color);
        color: var(--text-light);
        font-size: 1.2rem;
        padding: 0.7rem 2 rem;
        transform: scale(1.05);
    }

        .video-register-container .register-button:hover {
            transform: scale(1.15);
        }

/* sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
}

/* featured section */
.featured-section {
    padding: 0;
    margin: 3rem 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
}

.featured-background {
    background-image: radial-gradient( circle at 50% 30%, rgba(255, 255, 255, 0.8) 0%, rgba(139, 90, 43, 0.6) 100% ), url('./assets/sparring_image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
    isolation: isolate;
}

    .featured-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: linear-gradient(
    90deg,
    rgba(139, 90, 43, 0.8) 20%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(139, 90, 43, 0.8) 80%
  ); */
        z-index: 1;
    }

.featured-content {
    position: relative;
    z-index: 2;
    color: var(--text-dark);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.featured-section .countdown-ribbon {
    margin-top: 2rem;
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    transform: scale(1.2);
    transform-origin: center;
}

.featured-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--black-bg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.featured-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0;
    color: var(--text-dark);
}

.featured-section .register-button {
    margin-top: 1.5rem;
    background-color: var(--brown-color);
    color: var(--text-light);
    padding: 0.8rem 3rem;
    font-size: 1.2rem;
}

.featured-section .countdown-ribbon {
    margin-top: 2rem;
    width: 100%;
}
/* countdown section */
.countdown-container {
    width: 100%;
    position: relative;
}

/* Schedule */
.schedule-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.schedule-header {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.schedule-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--brown-color);
    color: #fff;
    min-width: 60px;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

    .date-badge .month {
        font-size: 0.9rem;
    }

    .date-badge .day {
        font-size: 1.5rem;
    }

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-left: 0.5rem;
    margin-right: auto;
}

.schedule-label {
    font-weight: 600;
}

.schedule-time {
    font-size: 0.9rem;
    color: #666;
}

/* book your hotel */
.hotels-section h2 {
    font-size: 2rem;
    font-weight: 700;
}

.expect-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    text-align: center;
    overflow-x: auto;
    white-space: normal;
    flex-wrap: nowrap;
}

.expect-item {
    flex: 1;
    padding: 0.8rem;
    width: 250px;
}

    .expect-item h3 a.hotel-button {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: var(--bg-light);
        color: var(--text-dark);
        text-decoration: none;
        border-radius: 4px;
        transition: background 0.3s ease;
        font-size: 1rem;
    }

        .expect-item h3 a.hotel-button:hover {
            transform: scale(1.15);
            background-color: var(--brown-color);
            color: var(--text-light);
        }

    .expect-item h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
    }

    .expect-item p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .expect-item a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
    }

.hotel-carousel-container {
    position: relative;
    overflow: visible;
    padding: 0 45px;
}

.hotel-carousel {
    overflow-x: auto;
    white-space: nowrap;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .hotel-carousel::-webkit-scrollbar {
        display: none;
    }

.hotel-carousel-inner {
    display: inline-block;
}

.hotel-carousel img {
    height: 200px;
    width: auto;
    margin-right: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hotel-left-arrow,
.hotel-right-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    border: none;
    color: var(--bg-light); /* White icon */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    .hotel-left-arrow svg,
    .hotel-right-arrow svg {
        width: 24px;
        height: 24px;
    }

.hotel-left-arrow {
    left: 0;
}

.hotel-right-arrow {
    right: 0;
}

    .hotel-left-arrow:hover,
    .hotel-right-arrow:hover {
        background-color: var(--secondary-color);
        transform: translateY(-50%) scale(1.1);
    }

/* FAQs */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: var(--text-light);
    padding: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--black-bg);
    color: var(--text-light);
}

    .faq-question:after {
        content: '+';
        font-size: 1.5rem;
        font-weight: 300;
    }

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    background: #f8f9fa;
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.2rem;
    max-height: 500px;
}
/* catchy section with gallery */
.catchy-section {
    background: radial-gradient(circle, var(--text-light), #7c430b);
    color: var(--text-dark);
    border-radius: 15px;
    padding: 1rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin: 3rem auto;
    overflow: hidden;
}

    .catchy-section h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

.catchy-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.catchy-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

    .catchy-text p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .catchy-text .register-button {
        background-color: var(--brown-color);
        color: var(--text-light);
        padding: 0.8rem 2rem;
        font-size: 1rem;
        border-radius: 30px;
        transition: transform 0.3s ease;
        margin-bottom: 1rem; /* check this */
    }

        .catchy-text .register-button:hover {
            transform: scale(1.15);
        }

.catchy-carousel-container {
    position: relative;
    overflow: visible;
    padding: 0 45px;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto 0 auto;
}

.catchy-carousel {
    overflow-x: auto;
    white-space: nowrap;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .catchy-carousel::-webkit-scrollbar {
        display: none;
    }
/* carousel */
.carousel-arrows .arrow:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

-
/* carousel images */
.catchy-carousel-inner {
    display: inline-block;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.catchy-carousel-inner img {
    height: 130px;
    width: auto;
    margin-right: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.catchy-left-arrow,
.catchy-right-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    .catchy-left-arrow:hover,
    .catchy-right-arrow:hover {
        background-color: var(--secondary-color);
        transform: translateY(-50%) scale(1.1);
    }

.catchy-left-arrow {
    left: 0;
}

.catchy-right-arrow {
    right: 0;
}

@media (min-width: 1400px) {
    .hero-graphic {
        width: 50%;
    }

    .hero-content p {
        font-size: 3rem;
        font-weight: 800;
    }

    .hero-content .event-location {
        font-size: 2rem;
        font-weight: 700;
    }

    .hero-video {
        max-width: 1200px;
        width: 80%;
    }

    .featured-background {
        background-position: center 40%;
    }

    .countdown-ribbon {
        transform: scale(1.5);
    }

    .schedule-header {
        font-size: 2.5rem;
    }

    .hotels-section h2 {
        font-size: 2.5rem;
    }

    .expect-item p {
        font-size: 1.2rem;
    }

    .hotel-carousel img {
        height: 300px;
    }

    .catchy-carousel-inner img {
        height: 220px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        padding: 1rem;
    }

    .hero-graphic {
        max-width: 90%;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

        .hero-content p {
            font-size: 1.2rem;
        }

        .hero-content .event-location {
            font-size: 0.9rem;
        }

        .hero-content .register-button {
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
        }

    .featured-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .featured-background {
        padding: 3rem 1rem;
        background-size: cover;
    }

    .schedule-section {
        max-width: 800px;
        align-items: stretch;
    }

    .schedule-card .schedule-label {
        font-size: 1.25rem;
    }

    .schedule-card .schedule-time {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .fixed-header {
        padding: 0 1rem;
    }

    .hero-container {
        padding-bottom: 3%;
    }

    .hero-content {
        text-align: center;
        align-items: center;
        max-width: 90%;
    }

        .hero-content p {
            font-size: 1.1rem;
        }

        .hero-content .event-location {
            font-size: 0.9rem;
        }

        .hero-content .register-button {
            padding: 0.6rem 1.5rem;
            font-size: 1rem;
        }

    .logo-container {
        height: 40px;
    }

    .center_logo {
        height: 50px;
    }

    .register-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .video-register-container .register-button {
        padding: 0.8rem 3rem;
        font-size: 1.2rem;
        transform: scale(1);
    }

    .featured-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .featured-background {
        padding: 2rem 0.5rem;
        background-size: cover;
    }

    .featured-content {
        max-width: 90%;
        padding: 1.5rem;
    }

    .featured-title {
        font-size: 2.5rem;
    }

    .featured-section .countdown-ribbon {
        width: 100%;
    }

    .sound-btn {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .video-section .iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .expect-container {
        gap: 1rem;
    }

    .expect-item {
        width: 200px;
        padding: 0.8rem;
    }

    .hotel-carousel img {
        height: 150px;
    }

    .hotel-left-arrow,
    .hotel-right-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .carousel-arrows .arrow svg {
        width: 18px;
        height: 18px;
    }

    .schedule {
        max-width: 700px;
        gap: 25px;
    }

    td {
        padding: 5px 6px;
        font-size: 1rem;
    }

    .faq-question {
        min-height: 44px;
        padding: 0.8rem 1rem;
    }

    .catchy-section {
        padding: 2rem 1.5rem;
        margin: 0 auto;
    }

        .catchy-section h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

    .catchy-content {
        max-width: 100%;
        text-align: center;
    }

    .catchy-text {
        max-width: 100%;
        text-align: center;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .catchy-section .register-button {
        padding: 0.7rem 1.8rem;
        font-size: 1.1rem;
    }

    .catchy-section .carousel-container {
        padding: 0 30px;
        margin: 0 auto;
        text-align: center;
    }

    .catchy-section .carousel {
        display: inline-block;
        margin: 0 auto;
        overflow-x: auto;
        padding: 0.5rem 0;
    }

        .catchy-section .carousel img {
            height: 180px;
        }

    .catchy-left-arrow {
        left: 5px;
    }

    .catchy-right-arrow {
        right: 5px;
    }
}

@media (max-width: 720px) {
    .schedule {
        flex-direction: column;
        align-items: center;
        max-width: 650px;
        gap: 20px;
    }
}

@media (max-width: 480px) {

    body {
        font-size: 14px;
    }

    .fixed-header {
        height: 60px;
        padding: 0 0.8rem;
    }

        .fixed-header img {
            height: 40px;
        }

    p {
        line-height: 1.4;
    }

    .hero-section {
        min-height: 50vh;
    }

    .hero-bg-image {
        object-position: center 15%;
        padding-bottom: 5%;
    }

    .hero-container {
        padding-bottom: 2%;
    }

    .hero-content {
        max-width: 90%;
    }

        .hero-content p {
            font-size: 1rem;
        }

        .hero-content .event-location {
            font-size: 0.85rem;
        }

        .hero-content .register-button {
            padding: 0.3rem 1rem;
            font-size: 0.9rem;
            transform: scale(1.3);
        }

        .hero-content p {
            font-size: 1rem;
        }

    .hero-video {
        margin-top: 3rem;
    }

    .sound-btn {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }

    .video-register-container .register-button {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
        transform: scale(1.1);
    }

    .logo-container {
        height: 35px;
    }

    .register-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .featured-section {
        margin: 2rem 0;
    }

    .featured-background {
        padding: 1.5rem 0.5rem;
        background-size: cover;
        background-position: center center;
    }

    .featured-content {
        font-size: 0.9rem;
        max-width: 95%;
        margin: 0 auto;
        padding: 1rem 0;
    }

    .featured-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .featured-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .featured-highlight {
        font-size: 1.1rem;
        margin: 1rem 0;
    }

    .featured-section .countdown-ribbon {
        width: 100%;
        margin-top: 1.5rem;
        transform: scale(1.2);
    }

    .featured-content {
        padding: 1rem;
        max-width: 100%;
    }

    .featured-section .register-button {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .featured-section .countdown-ribbon {
        width: 100%;
        margin-top: 1.5rem;
        max-width: 100%;
    }

    .schedule-card .schedule-label {
        font-size: 0.9rem;
    }

    .schedule-card .schedule-time {
        font-size: 1rem;
    }

    .expect-container {
        gap: 0.5rem;
    }

    .expect-item {
        width: 150px;
    }

        .expect-item h3 {
            font-size: 1.2rem;
        }

        .expect-item p {
            font-size: 0.80rem;
        }

        .expect-item h3 a.hotel-button {
            padding: 0.4rem 0.75rem;
            font-size: 0.9rem;
        }

    .hotel-carousel img {
        height: 120px;
    }

    .hotel-left-arrow,
    .hotel-right-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .schedule {
        max-width: 450px;
    }

    td {
        padding: 4px 5px;
        font-size: 0.85rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    /* catchy */
    .catchy-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem auto;
    }

        .catchy-section h2 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
        }

    .catchy-text p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .catchy-text .register-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .catchy-content {
        max-width: 100%;
    }

    .catchy-section .carousel-container {
        padding: 0 20px;
    }

    .catchy-section .left-arrow {
        left: 0;
    }

    .catchy-section .right-arrow {
        right: 0;
    }

    .catchy-section .carousel img {
        height: 150px;
    }

    .catchy-section .left-arrow,
    .catchy-section .right-arrow {
        width: 35px;
        height: 35px;
    }

    .catchy-section .carousel img {
        height: 150px;
    }

    .carousel img {
        height: 150px;
    }

    .catchy-content {
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 375px) {
    .fixed-header {
        padding: 0 0.5rem;
        height: 50px;
    }

    .logo-container {
        height: 30px;
    }

    .center_logo {
        height: 30px;
    }

    .register-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        min-height: 36px;
    }

    .hero-container {
        padding: 0.5rem;
    }

    .hero-graphic {
        max-width: 85%;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-content .event-location {
        font-size: 0.8rem;
    }

    .hero-content .register-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    .featured-background {
        padding: 2rem 1rem;
        background-size: 100% auto;
        background-position: center top;
        min-height: 400px;
        background-size: cover;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .featured-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .schedule {
        max-width: 100%;
    }

    td {
        padding: 3px 4px;
        font-size: 0.8rem;
    }

    .schedule-date {
        font-size: 1.2rem;
    }

    .image-wrapper {
        max-width: 100%;
    }

    .catchy-section {
        padding: 1.5rem 1rem;
    }

        .catchy-section h2 {
            font-size: 1.4rem;
        }

        .catchy-section p {
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .catchy-section .register-button {
            padding: 0.5rem 1.2rem;
            font-size: 0.9rem;
        }

        .catchy-section .carousel img {
            height: 130px;
        }

    .catchy-left-arrow,
    .catchy-right-arrow {
        width: 40px;
        height: 40px;
    }
}


.lineup-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
}


.lineup-header {
    text-align: center;
    font-size: 2.5rem;
}


.lineup-content {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    width: 95%;
}


.lineup-block {
    background-color: #f8f8f8;
    padding: 1rem;
    margin: 1em;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}


.lineup-block-header {
    background-color: var(--brown-color);
    color: #fff;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    padding: 0.8rem;
    margin-bottom: 1rem;
}


.lineup-text {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}


.lineup-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}


.lineup-list-text {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: flex;
}


@media (min-width: 1400px) {
    .lineup-header {
        font-size: 3rem;
    }

    .lineup-content {
        width: 90%;
        max-width: 1200px;
    }

    .lineup-block {
        padding: 1.5rem;
    }

    .lineup-block-header {
        font-size: 1.4rem;
        padding: 1rem;
    }
}


@media (max-width: 768px) {
    .lineup-header {
        font-size: 2.2rem;
    }

    .lineup-content {
        width: 95%;
    }

    .lineup-block {
        padding: 0.8rem;
        margin: 0.8rem;
    }

    .lineup-block-header {
        padding: 0.7rem;
        font-size: 1.1rem;
    }

    .lineup-text,
    .lineup-list-text {
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


@media (max-width: 720px) {
    .lineup-header {
        font-size: 2rem;
    }

    .lineup-content {
        width: 100%;
    }

    .lineup-block {
        padding: 0.7rem;
        margin: 0.7rem 0;
    }

    .lineup-block-header {
        padding: 0.6rem;
        font-size: 1rem;
    }

    .lineup-text,
    .lineup-list-text {
        font-size: 0.9rem;
        padding-left: 1.3rem;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .lineup-block:first-child .lineup-text {
        font-weight: 600;
    }

    .lineup-list-text:before {
        left: 0.3rem;
    }
}

@media (max-width: 480px) {
    .lineup-header {
        font-size: 1.8rem;
    }

    .lineup-content {
        width: 100%;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .lineup-block {
        padding: 0.6rem;
        margin: 0.6rem 0;
    }

    .lineup-block-header {
        padding: 0.5rem;
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }

    .lineup-block:first-child .lineup-text {
        font-weight: 600;
    }


    .lineup-text,
    .lineup-list-text {
        font-size: 0.8rem;
        padding-left: 1rem;
        margin-bottom: 0.3rem;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .lineup-list-text:before {
            left: 0.2rem;
        }

        .lineup-text strong,
        .lineup-list-text strong {
            font-size: 0.8rem;
            padding-right: 0.3rem;
        }
}


@media (max-width: 375px) {
    .lineup-header {
        font-size: 1.6rem;
    }

    .lineup-content {
        width: 100%;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .lineup-block {
        padding: 0.5rem;
        margin: 0.5rem 0;
    }

    .lineup-block-header {
        padding: 0.4rem;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .lineup-text,
    .lineup-list-text {
        font-size: 0.75rem;
        padding-left: 0.9rem;
        margin-bottom: 0.25rem;
        white-space: normal;
    }


    .lineup-block:first-child .lineup-text {
        font-weight: 600;
        letter-spacing: -0.5px;
        text-indent: -1rem;
        padding-left: 1.8rem;
    }

    .lineup-list-text:before {
        left: 0.15rem;
        font-size: 0.8rem;
    }

    .lineup-block:first-child .lineup-text::after {
        content: "";
        display: inline-block;
        width: 0;
    }


    .lineup-list-text strong {
        display: inline-block;
        font-weight: 600;
    }
}
</pre></body></html>