* {
    box-sizing: border-box;
}

/* Smooth scroll optimization */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove custom scrollbar, use default browser scrollbar */
*::-webkit-scrollbar {
    width: auto;
}

html {
    scroll-behavior: auto;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
    color: white;
    background: #111;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    overflow-y: auto;
    scroll-padding-top: 90px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: auto;
    scroll-behavior: auto !important;
}


/* ================= LOADING SCREEN ================= */
#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-logo {
    max-width: 150px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;
    animation: pulseLogo 2s infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.5));
}

@keyframes pulseLogo {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.spinner {
    border: 6px solid #555;
    border-top: 6px solid #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    height: 90px;
    padding: 0 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2000;
}

.nav-left {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
}

.nav-left a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    margin: 0 15px;
    font-weight: 600;
}

.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.nav-center a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 45px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}

.nav-right {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.nav-right a.nav-button {
    background: #D4A574;
    color: #221101;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.nav-right a.nav-button:hover {
    background: #C49564;
    transform: translateY(-2px);
}

.nav-right a.nav-button.juknis-button {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.nav-right a.nav-button.juknis-button:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.nav-right a.nav-button.contact-button {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.nav-right a.nav-button.contact-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.nav-left a.mobile-button {
    display: none !important;
}

/* HAMBURGER MENU */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 2001;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
    pointer-events: none;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ================= BACKGROUNDS ================= */
.segment {
    min-height: 100vh;
    padding-top: 100px;
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

#kompetisi.segment,
#slide-akhir.segment,
#countdown.segment {
    min-height: auto;
}

#intro {
    background-image: url('assets/img/bg-intro.jpg');
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 60px;
}

#story {
    background-image: url('assets/img/bg-story.jpg');
    padding: 80px 8%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#countdown {
    background: #221202 url('assets/img/bg-kompetisi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 10% 80px 10%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#countdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 18, 2, 0.7);
    z-index: 1;
}

#countdown .countdown-container {
    position: relative;
    z-index: 2;
}

.countdown-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.countdown-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
    animation: titleFadeInUp 1s ease-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.countdown-number {
    font-family: 'Cinzel', serif;
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.countdown-label {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

#kompetisi {
    background-image: url('assets/img/bg-kompetisi.jpg');
    padding: 100px 10% 60px 10%;
    text-align: center;
    margin-bottom: 0;
    position: relative;
}

#kompetisi::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ================= SPONSORSHIP ================= */
#sponsorship {
    background: #221202 url('assets/img/bg-kompetisi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 10% 80px 10%;
    text-align: center;
    position: relative;
}

#sponsorship::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 18, 2, 0.7);
    z-index: 1;
}

.sponsorship-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#sponsorship .title-text {
    color: #fff;
}

#sponsorship .title-line {
    background: #fff;
}

.sponsorship-description {
    font-size: 1.2rem;
    color: #f5e9da;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.sponsorship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    margin-bottom: 40px;
}

.sponsorship-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.sponsorship-grid img:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.3);
    border-color: #D4A574;
}

.sponsorship-callout {
    margin-top: 30px;
    padding: 20px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.sponsorship-callout p {
    color: #f5e9da;
    font-size: 1rem;
    margin: 0;
}

.sponsorship-callout a {
    color: #50C878;
    font-weight: 600;
    text-decoration: underline;
}

/* ================= JADWAL KEGIATAN ================= */
#jadwal {
    background-image: url('assets/img/bg-kompetisi.jpg');
    padding: 100px 10% 80px 10%;
    text-align: center;
    position: relative;
}

.schedule-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-align: left;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.schedule-date {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.schedule-date h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: background 0.3s;
}

.schedule-content:hover {
    background: rgba(255, 255, 255, 0.08);
}

.schedule-content:last-child {
    margin-bottom: 0;
}

.schedule-time {
    font-size: 18px;
    font-weight: 700;
    color: #D4A574;
    min-width: 180px;
    font-family: 'Cinzel', serif;
}

.schedule-event {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    flex: 1;
}

/* ================= REGISTRASI & JUKNIS ================= */
#registrasi {
    background: #221202 url('assets/img/bg-kompetisi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 10% 80px 10%;
    text-align: center;
    position: relative;
    min-height: auto;
}

#registrasi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 18, 2, 0.7);
    z-index: 1;
}

#registrasi .registrasi-container {
    position: relative;
    z-index: 2;
}

.registrasi-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.registrasi-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.registrasi-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.13rem;
    transition: background 0.3s, transform 0.3s;
    text-align: center;
    min-width: 180px;
}

.registrasi-button span {
    font-size: 1.25em;
    vertical-align: middle;
    margin-right: 7px;
}

.juknis-button span {
    font-size: 1.22em;
}

.daftar-button {
    box-shadow: 0 3px 14px rgba(212, 165, 116, 0.14);
}

.juknis-button {
    box-shadow: 0 3px 14px rgba(80, 200, 120, 0.11);
}

#registrasi .title-text {
    color: #fff;
    margin-bottom: 22px;
    font-size: 2.3rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.registrasi-description {
    max-width: 650px;
    margin: 0 auto 32px auto;
    color: #f5e9da;
    font-size: 1.15rem;
}

.registrasi-buttons {
    margin-top: 20px;
}

.registrasi-help {
    color: #c8bca8;
    font-size: 0.97rem;
    margin-top: 18px;
    opacity: 0.92;
}

.registrasi-help a {
    color: #50C878;
    font-weight: 600;
    text-decoration: underline;
}

.daftar-button {
    background: #D4A574;
    color: #221101;
}

.daftar-button:hover {
    background: #C49564;
    transform: translateY(-2px);
}

.juknis-button {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.juknis-button:hover {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.contact-button {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.contact-button:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* ================= DONASI ================= */
#donasi {
    background: #221202 url('assets/img/bg-story.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 10% 80px 10%;
    text-align: center;
    position: relative;
    min-height: auto;
}

#donasi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 18, 2, 0.7);
    z-index: 1;
}

#donasi .donasi-container {
    position: relative;
    z-index: 2;
}

.donasi-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.donasi-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.donasi-description {
    font-size: 18px;
    color: #fff;
    margin: 0 auto 50px auto;
    max-width: 800px;
    line-height: 1.6;
}

.donasi-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.donasi-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 50px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.donasi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.donasi-card-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: #221101;
    margin: 30px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.donasi-card-title:first-child {
    margin-top: 0;
}

.donasi-card-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donasi-card-content p {
    font-size: 16px;
    color: #221101;
    margin: 10px 0;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

.donasi-card-content button {
    margin-left: 10px;
    padding: 3px 8px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    transition: background 0.3s;
}

.donasi-card-content button:hover {
    background: #e0e0e0;
}

.donasi-card-content .nominal-unik {
    color: #007bff;
    background: rgba(0, 123, 255, 0.09);
    border-radius: 6px;
    padding: 1px 5px;
    font-weight: 600;
}

.donasi-card-content small {
    color: #444;
}

.donasi-card-content small span {
    font-weight: bold;
}

.donasi-button {
    display: inline-block;
    background: #50C878;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 2px 10px rgba(80, 200, 120, 0.3);
}

.donasi-button:hover {
    background: #45B869;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.4);
}

#slide-akhir {
    background-image: url('assets/img/SLIDE AKHIR.jpg');
    padding: 20px 10% 100px 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    position: relative;
}

#slide-akhir::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

#footer {
    position: relative;
    background-color: #fff;
    color: #221101;
    padding: 100px 8% 120px 8%;
    min-height: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}



.footer-container h4 {
    margin: 0 0 12px 0;
    font-size: 18px;
    letter-spacing: 1px;
    color: #2b1a05;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-contact p {
    margin: 6px 0;
    font-weight: 600;
    color: #221101;
}

.footer-sponsor {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-sponsor h4 {
    color: #221101;
    margin-bottom: 20px;
}

.sponsor-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}

.sponsor-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.footer-maps {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-maps h4 {
    color: #221101;
    margin-bottom: 20px;
}

.maps-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
}

.maps-embed {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.maps-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

.maps-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #50C878;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 2px 10px rgba(80, 200, 120, 0.3);
}

.maps-link:hover {
    background: #45B869;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.4);
}

.maps-link svg {
    flex-shrink: 0;
}

/* Responsive adjustments */
@media(max-width: 820px) {
    .contact-box, .sponsor-box {
        margin: 0 auto 30px auto;
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

@media(max-width: 500px) {
    .contact-box, .sponsor-box {
        padding: 25px;
        max-width: 320px;
        grid-template-columns: 1fr;
    }
    .sponsor-grid {
        gap: 10px;
    }
    .contact-info .name {
        font-size: 18px;
    }
    .contact-info .phone-link {
        font-size: 16px;
    }

    .sponsorship-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .sponsorship-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .sponsorship-callout {
        padding: 15px;
        margin-top: 20px;
    }

    .sponsorship-callout p {
        font-size: 0.9rem;
    }
}

/* ================= COMPETITION GRID ================= */
.competition-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

.competition-cards-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
}

.competition-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.competition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.competition-card-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.competition-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.grid-item {
    width: calc((100% - 40px) / 3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 2/3;
    cursor: zoom-in;
    will-change: auto;
    transform: translateZ(0);
}

/* RESPONSIVE GRID */
@media(max-width: 820px) {
    .competition-grid {
        gap: 15px;
    }

    .grid-item {
        width: calc((100% - 15px) / 2);
    }
}

@media(max-width: 500px) {
    .competition-grid {
        gap: 15px;
    }

    .grid-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* MODAL ZOOM */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.modal-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s;
    cursor: move;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
}

.modal-close:hover {
    opacity: 0.7;
}

.modal-zoom-in,
.modal-zoom-out {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10001;
}

.modal-zoom-in:hover,
.modal-zoom-out:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-zoom-in {
    bottom: 30px;
    right: 100px;
}

.modal-zoom-out {
    bottom: 30px;
    right: 30px;
}

/* BUTTONS */
.btn {
    padding: 18px 50px;
    background: white;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    min-width: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* INTRO CONTENT */
.intro-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.intro-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 90px rgba(255, 255, 255, 0.4));
    animation: logoFadeIn 1s ease-out forwards, logoPulse 3s ease-in-out 1.5s infinite;
    opacity: 0;
    transform: translateY(0) scale(1);
}

.intro-title {
    font-family: 'Cinzel', serif;
    font-size: 72px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.2;
    margin: 0;
    color: #fff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 255, 255, 0.3),
        0 0 50px rgba(255, 255, 255, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.3);
    animation: titleFadeInUp 1.2s ease-out, titleGlow 3s ease-in-out 1.5s infinite;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes titleFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 90px rgba(255, 255, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 1)) drop-shadow(0 0 80px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 120px rgba(255, 255, 255, 0.6));
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 40px rgba(255, 255, 255, 0.3),
            0 0 50px rgba(255, 255, 255, 0.2),
            0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 1),
            0 0 40px rgba(255, 255, 255, 0.8),
            0 0 60px rgba(255, 255, 255, 0.6),
            0 0 80px rgba(255, 255, 255, 0.4),
            0 0 100px rgba(255, 255, 255, 0.3),
            0 4px 20px rgba(0, 0, 0, 0.3);
    }
}

.intro-content h1 {
    font-size: 60px;
    line-height: 1.2;
    margin: 0;
}

.intro-title-img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* STORY CONTAINER */
.story-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.story-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.5));
}

.story-logo {
    max-width: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-text {
    flex: 1;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-title {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
    text-align: center;
    width: 100%;
    animation: titleFadeInUp 1s ease-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.story-description {
    font-size: 22px;
    line-height: 2;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.story-title-img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 85px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
}

.story-desc-img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    display: block;
}


/* FOOTER */
.footer-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(34, 17, 1, 0.1);
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: #221101;
    font-weight: 500;
    letter-spacing: 0.5px;
}



.view-icon {
    font-size: 16px;
}

.view-text {
    font-weight: 500;
}

.view-text strong {
    color: #D4A574;
    font-weight: 700;
}

.footer-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-contact h4 {
    color: #221101;
    margin-bottom: 20px;
}

.contact-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 100%;
    max-width: 1050px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-item .icon-link {
    background: #25D366;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.contact-item .icon-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.contact-info .name {
    font-weight: 800;
    color: #221101;
    font-size: 22px;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info .role {
    font-size: 16px;
    color: #221101;
    font-weight: 600;
    line-height: 1.4;
}

.contact-info .phone-link {
    color: #221101;
    text-decoration: underline;
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-top: 5px;
    transition: color 0.3s;
}

.contact-info .phone-link:hover {
    color: #25D366;
}

#slide-akhir .footer-contact p {
    color: #221101;
}

.footer-social {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 200px;
}

.social-grid a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 15px) / 2);
    aspect-ratio: 1/1;
    transition: transform 0.3s;
}

.social-grid a:hover {
    transform: scale(1.1);
}

.social-grid img,
.social-grid svg {
    width: 100%;
    height: 100%;
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    fill: #221101;
}

.social-grid .whatsapp-icon svg {
    fill: #25D366;
    filter: none;
}

.join-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 0;
}

.join-button-wrapper .btn {
    width: auto;
    min-width: 250px;
}

.join-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

.join-buttons .btn {
    width: auto;
    min-width: 250px;
}

#slide-akhir .join-buttons {
    margin-top: 0;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px 0 30px;
}

/* TITLE */
.title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    margin-bottom: 40px;
    animation: titleFadeInUp 1s ease-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* CATEGORY HEADER */
.category-header {
    text-align: center;
    margin-bottom: 30px;
}

.category-spacing {
    margin-top: 50px;
}

.competition-title-wrapper {
    align-items: center;
    width: 100%;
}

.competition-title {
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
    animation: titleFadeInUp 0.8s ease-out 0.1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.title-wrapper {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.title-text {
    font-family: 'Cinzel', serif;
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: #fff;
    text-align: center;
    width: 100%;
    animation: titleFadeInUp 1s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.title-line {
    width: 100px;
    height: 4px;
    background: #fff;
    display: block;
    margin: 0 auto;
}

.title-img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 45px;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
}

.title-line-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 8px;
    object-fit: cover;
    display: block;
}

/* IMAGES */
img {
    max-width: 100%;
    height: auto;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 820px) {

    .navbar {
        flex-direction: row;
        height: 90px;
        padding: 0 20px;
        justify-content: space-between;
    }

    .hamburger-menu {
        display: flex;
        position: relative;
        z-index: 2001;
        pointer-events: auto;
    }

    .nav-left {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 2000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        flex: none;
    }

    .nav-left.active {
        transform: translateX(0);
    }

    .nav-left a {
        font-size: 18px;
        margin: 15px 0;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-left a.mobile-button {
        display: block !important;
        margin: 15px auto;
        width: auto;
        min-width: 200px;
    }

    .nav-left a.mobile-button.juknis-button {
        background: #22c55e;
        color: #fff;
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    }

    .nav-left a.mobile-button.juknis-button:hover {
        background: #16a34a;
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    }

    .nav-left a.mobile-button.contact-button {
        background: #3b82f6;
        color: #fff;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .nav-left a.mobile-button.contact-button:hover {
        background: #2563eb;
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }

    .nav-left a:last-child {
        border-bottom: none;
    }

    .nav-center {
        flex: 1;
        justify-content: center;
    }

    .nav-right {
        display: none;
    }

    .story-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .story-img {
        max-width: 280px;
    }


    .story-text {
        margin-left: 0;
        text-align: center;
    }

    .story-title {
        font-size: 40px;
        margin-bottom: 20px;
        letter-spacing: 3px;
    }

    .story-description {
        font-size: 18px;
        max-width: 100%;
    }

    .story-title-img {
        max-height: 75px;
        margin-bottom: 12px;
    }

    .story-desc-img {
        max-height: 300px;
    }

    .title-text {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .category-header h3 {
        font-size: 28px;
    }

    .competition-cards-wrapper {
        gap: 25px;
        padding: 0 10px;
    }

    .competition-card {
        padding: 25px 20px;
    }

    .competition-card-title {
        font-size: 24px;
    }

    .slide-item {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .slide-item img {
        width: 100%;
        height: 100%;
    }

    #intro {
        padding: 120px 20px 60px;
    }

    #story,
    #kompetisi,
    #sponsorship,
    #countdown,
    #jadwal,
    #registrasi,
    #donasi {
        padding: 20px 5%;
    }

    .sponsorship-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .sponsorship-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .registrasi-buttons {
        gap: 20px;
    }

    .registrasi-button {
        padding: 10px 20px;
        font-size: 18px;
    }

    .donasi-title {
        font-size: 36px;
    }

    .donasi-card {
        padding: 30px 25px;
        max-width: 100%;
    }


    .schedule-container {
        gap: 20px;
    }

    .schedule-item {
        padding: 25px 20px;
    }

    .schedule-date h3 {
        font-size: 20px;
    }

    .schedule-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }

    .schedule-time {
        min-width: auto;
        font-size: 16px;
    }

    .schedule-event {
        font-size: 16px;
    }

    .countdown-title {
        font-size: 36px;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }

    .countdown-wrapper {
        gap: 20px;
    }

    .countdown-item {
        min-width: 120px;
        padding: 25px 15px;
    }

    .countdown-number {
        font-size: 48px;
    }

    .countdown-label {
        font-size: 16px;
    }

    #footer {
        padding: 40px 30px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-copyright {
        margin-top: 30px;
        padding-top: 20px;
    }

    .footer-social {
        align-items: center;
    }

    .social-row {
        justify-content: center;
    }

    .competition-wrapper {
        padding: 0 5px;
    }

    .intro-logo {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .intro-title {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .intro-content h1 {
        font-size: 45px;
    }

    .intro-title-img {
        max-height: 300px;
    }

    .title {
        font-size: 36px;
    }

    .title-img {
        max-height: 40px;
    }

    .title-line {
        max-height: 6px;
    }

    .slider-track {
        gap: 20px;
    }
}

@media(max-width: 500px) {
    .nav-right a {
        font-size: 16px;
        margin: 12px 0;
        padding: 8px 15px;
    }

    .intro-logo {
        max-width: 120px;
        margin-bottom: 15px;
    }

    .intro-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .intro-content h1 {
        font-size: 32px;
    }

    .intro-title-img {
        max-height: 250px;
    }

    .slide-item {
        flex: 0 0 100%;
    }

    .slide-item img {
        width: 100%;
        height: 100%;
    }

    #intro {
        padding: 100px 15px 40px;
    }

    #story,
    #kompetisi,
    #countdown,
    #jadwal,
    #registrasi,
    #donasi {
        padding: 10px 4%;
    }

    .registrasi-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .registrasi-button {
        padding: 10px 20px;
        font-size: 16px;
        width: auto;
    }

    .donasi-title {
        font-size: 28px;
    }

    .donasi-description {
        font-size: 16px;
    }

    .donasi-card {
        padding: 30px 20px;
    }

    .donasi-card-title {
        font-size: 20px;
    }

    .donasi-card-content p {
        font-size: 14px;
    }

    .donasi-button {
        padding: 10px 25px;
        font-size: 14px;
    }

    .schedule-container {
        gap: 15px;
    }

    .schedule-item {
        padding: 20px 15px;
    }

    .schedule-date h3 {
        font-size: 18px;
    }

    .schedule-content {
        padding: 10px;
    }

    .schedule-time {
        font-size: 14px;
    }

    .schedule-event {
        font-size: 14px;
    }

    .countdown-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 30px;
    }

    .countdown-wrapper {
        gap: 15px;
    }

    .countdown-item {
        min-width: 100px;
        padding: 20px 10px;
    }

    .countdown-number {
        font-size: 36px;
    }

    .countdown-label {
        font-size: 14px;
        letter-spacing: 1px;
    }

    #footer {
        padding: 30px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 25px;
    }

    .footer-content-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .footer-contact p {
        font-size: 14px;
    }

    .footer-copyright {
        margin-top: 25px;
        padding-top: 20px;
    }

    .footer-copyright p {
        font-size: 12px;
    }

    .view-counter {
        font-size: 11px;
        padding: 6px 12px;
        margin-top: 12px;
    }

    .view-icon {
        font-size: 14px;
    }

    .sponsor-img {
        max-width: 120px;
    }

    .social-row img {
        width: 30px;
        height: 30px;
    }

    .competition-wrapper {
        flex-direction: row;
        gap: 15px;
    }

    .competition-slider {
        width: 100%;
    }

    .arrow {
        width: 42px;
        height: 42px;
    }

    .title {
        font-size: 28px;
    }

    .title-img {
        max-height: 35px;
    }

    .title-line {
        max-height: 5px;
    }

    .story-container {
        gap: 15px;
    }

    .story-img {
        max-width: 220px;
    }


    .story-text {
        margin-left: 0;
        text-align: center;
    }

    .story-title {
        font-size: 32px;
        margin-bottom: 18px;
        letter-spacing: 2px;
    }

    .story-description {
        font-size: 16px;
        line-height: 1.8;
        max-width: 100%;
    }

    .story-title-img {
        max-height: 60px;
        margin-bottom: 10px;
    }

    .story-desc-img {
        max-height: 250px;
    }

    .title-text {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .title-line {
        width: 80px;
        height: 3px;
    }

    .category-header h3 {
        font-size: 24px;
    }

    .competition-cards-wrapper {
        gap: 20px;
        padding: 0 5px;
    }

    .competition-card {
        padding: 20px 15px;
    }

    .competition-card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 16px 40px;
        font-size: 16px;
        min-width: 200px;
    }

    .join-button-wrapper .btn,
    .join-buttons .btn {
        min-width: 200px;
    }

    .join-buttons {
        gap: 20px;
    }

    .slider-track {
        gap: 15px;
    }


    .social img {
        max-width: 24px;
        height: auto;
    }
}
