/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #6C4EF1;
    --primary-blue-light: #2B49DB;
    --primary-blue-dark: #172775;
    --accent-yellow: #D8EC00;
    --accent-green: #7cb342;
    --accent-orange: #ff6b35;
    --text-white: #F1F1F1;
    --text-gray: #9e9e9e;
    --text-gray-dark: #343434;
    --text-dark: #212121;
    --bg-light: #f5f5f5;
    --bg-dark: #0d1442;
    --bg-gradient-blue: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #1565c0 100%);
    --from: #2B49DB;
    --to: #172775;
    --max-width: 1100px;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
    background: #ffffff;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 800px;
    background: var(--bg-gradient-blue);
    overflow: visible;
    z-index: 10;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg-01.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.hero::before {
    content: "";
    position: absolute;
    height: 500px;
    width: 150px;
    left: -150px;
    top: -70px;
    background: linear-gradient(90deg, var(--from), var(--to));
    rotate: calc(30deg);
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, #00000000, #0b1b6aae, #172775);
}

.hero-text h1.highlight .mobile {
    display: none;
}

.hero-player {
    position: absolute;
    left: 115px;
    bottom: 0;
    height: 90%;
    width: auto;
    z-index: 1;
}
.star-bg {
    position: absolute;
    height: 70%;
    width: 24%;
    left: 180px;
    bottom: 0;
    background: linear-gradient(260deg, var(--from), var(--to));
    transform: skewX(330deg);
}

.hero-ball {
    position: absolute;
    left: 10%;
    bottom: -20px;
    width: 500px;
    height: auto;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 0px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    height: 60px;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    display: flex;
    align-items: center;
    z-index: 999;
    justify-content: space-evenly;
    padding: 10px 20px;
    transition: background var(--transition-slow), backdrop-filter var(--transition-slow);
}

.navbar:hover {
    background: rgba(43, 73, 219, 0.35);
}

.navbar.scrolled {
    background: rgba(2, 7, 140, 0.894);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-bar-content {
    width: var(--max-width);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-bar-menu {
    flex: auto;
    gap: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navbar .logo {
    height: 33px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: var(--text-white);
    transition: color var(--transition-base);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links a:hover {
    color: var(--accent-yellow);
}

.nav-social {
    display: flex;
    gap: 20px;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all var(--transition-base);
    padding: 0;
}

.nav-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.nav-social a img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 99;
    top: 20px;
    right: 15px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(180deg, rgb(4 9 139) 0%, rgb(24 40 144) 100%);
    position: fixed;
    top: 60px;
    right: 0;
    width: 280px;
    height: calc(100vh - 60px);
    z-index: 99998;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;

}

.mobile-menu.active {
    transform: translateX(0);
    z-index: 9999;
}

.mobile-menu a {
    font-size: 15px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color var(--transition-base), padding-left var(--transition-base);
}

.mobile-menu a:hover {
    color: var(--accent-yellow);
    padding-left: 10px;
}

.mobile-social {
    display: flex;
    gap: 15px;
    padding-top: 25px;
    margin-top: auto;
    justify-content: center;
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: background var(--transition-base), transform var(--transition-base);
    border: none;
    padding: 0;
}

.mobile-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    padding-left: 0;
}

.mobile-social img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* ===== HERO TEXT ===== */
.hero-text {
    max-width: 550px;
    margin-left: auto;
    padding: 150px 0;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

.hero-text h1.highlight {
    color: var(--text-white);
}

.hero-text h1>span {
    color: var(--accent-yellow);
}

.hero-text .subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 10px;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.countdown-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--accent-yellow);
}

.countdown-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.8;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0 45px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;

}

.btn:active {
    transform: translateY(1px) scale(0.98);
}

.btn-primary {
    background: #6C4EF1;
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-3px);

    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--accent-yellow);
    color: var(--primary-blue-light);
}

.btn-secondary:hover {
    transform: translateY(-3px);

    filter: brightness(1.05);
}

.btn-book {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--text-white);
    padding: 12px 35px;
}

.btn-book:hover {
    transform: translateY(-3px);

    filter: brightness(1.1);
}

.btn-send {
    background: var(--primary-blue);
    color: var(--text-white);
    width: 200px;
}

.btn-send:hover {
    transform: translateY(-3px);

    filter: brightness(1.1);
}
.btn-primary-new {
    color: var(--primary-blue-light);
    background: var(--accent-yellow);
}

.btn-cta {
    background: var(--accent-yellow);
    color: var(--primary-blue-light);
    padding: 14px 50px;
}

.btn-cta:hover {
    transform: translateY(-3px);

    filter: brightness(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    transform: translateY(-3px);

}

.btn-primary-alt {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: var(--text-white);
}

.btn-primary-alt:hover {
    transform: translateY(-3px);

    filter: brightness(1.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}
.btn {
    font-size: 20px;
}

/* ===== FEATURES SECTION ===== */
.features {
    position: relative;
    padding: 80px 40px;
    background: white;
    overflow: hidden;
    z-index: 2;
}
.features::before {
    content: "";
    position: absolute;
    left: 40dvw;
    bottom: 0;
    width: 50dvw;
    height: 100%;             
    background: linear-gradient(360deg, #020aecc7 0%, #091e75 100%);
    transform: skewX(335deg);
    transform-origin: bottom left;
}

.features::after {
    content: "";
    position: absolute;
    top: 0;
    left:0;
    width: 100px;
    height: 300px;
    background: linear-gradient(360deg, #020aecc7 0%, #091e75 100%);
    transform: skewX(325deg);
    transform-origin: top left;
}

.features-player {
    position: absolute;
    right: 15%;
    bottom: 0;
    height: 80%;
    width: auto;
    z-index: 2;
}

.features-ball {
    position: absolute;
    right: 35%;
    bottom: 10%;
    width: 100px;
    height: auto;
    z-index: 3;
}

.features-container {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.features-content {
    flex: 1;
    color: var(--text-white);
    z-index: 4;
}

.features-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue-light);
    line-height: 1.3;
    margin-bottom: 20px;
}

.features-desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray-dark);
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #343434;
}
.features-content a {
    width: 200px;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    flex-shrink: 0;
}

.check-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.features-list li strong {
    font-weight: 700;
    color: var(--primary-blue-light);
}

.features-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    right: -100px;
}

.features-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    position: relative;
    object-fit: contain;
    z-index: 1;
}

/* ===== CONTACT SECTION ===== */
.contact {
    position: relative;
    padding: 0 40px;
    background: transparent;
    background: white;
    overflow: visible;
    z-index: 1;
}

.contact > .coin-1 {
    position: absolute;
    right: 0;
}

.contact > .coin-2 {
    position: absolute;
    right: 45%;
    top: 0;
}

.contact > .gift {
    position: absolute;
    width: 300px;
    bottom: -100px;
    right: 30%;
    rotate: calc(305deg);
    filter: blur(2px)
}

.contact::before {
    content: "";
    background: linear-gradient(180deg, #0500e2c7 0%, #031e8c 100%);
    width: 50dvw;
    height: 100%;
    left: 40dvw;
    position: absolute;
    z-index: -1;
    transform: skewX(-335deg);
    transform-origin: top left;
}

.contact-container {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    z-index: 2;
    width: 100%;
    display: flex;
    gap: 40px;
    padding: 80px 0;
}

.contact-form-wrapper {
    max-width: 600px;
}

.contact-form-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    color: #343434;
    margin-bottom: 25px;
    line-height: 1.4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 0 20px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    background: transparent;
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(33, 33, 33, 0.6);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

/* Contact Decoration */
.contact-decoration {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contact-decoration .coin-1 {
    width: 80px;
    height: auto;
    margin-bottom: -20px;
}

.contact-decoration .coin-2 {
    width: 100px;
    height: auto;
}

/* Contact Details */
.contact-details {
    width: 100%;
    padding: 50px 35px;
    max-width: 450px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.contact-details > p {
    font-family: Roboto;
    font-size: 16px;
    color: var(--text-white);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 50px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;

    .btn-primary {
        width: 320px;
        height: 60px;
    }
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 320px;
    height: 60px;
    background: transparent;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid var(--text-white);
    transition: background var(--transition-base);
}

.contact-link img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.contact-link span {
    font-size: 20px;
    font-weight: 500;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    position: relative;
    padding: 80px 40px;
    background: linear-gradient(88deg, #000474 0%, #4a6cf7 100%);
    overflow: hidden;
    z-index: 1;
}
.why-choose::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 200%;
    right: -245px;
    top: -390px;
    transform: rotate(331deg);
    background: white;
}
.why-choose::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 150%;
    left: -150px;
    top: -100px;
    transform: rotate(335deg);
    background: white;
}

.why-choose-bg {
    display: none;
}

.why-choose-container {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-choose-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-content .btn {
    margin: auto;
}

.why-choose-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
}

.why-choose-header h2 {
    font-size: 32px;
    font-weight: 400;
}

.why-choose-header .text-light {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    font-size: 32px;
}

.why-choose-header .mobile {
    display: none;
}

.why-choose-header .text-dark {
    color: var(--text-white);
    font-weight: 700;
    font-size: 60px;
}

.header-icon {
    width: 30px;
    height: 30px;
}

.header-star {
    color: #ffd700;
    font-size: 24px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.feature-card {
    position: relative;
    border: 4px solid transparent;
    border-radius: 32px;
    background:
        linear-gradient(#ffffff, #9999fc) padding-box,
        linear-gradient(178deg, #2B49DB, #6375ff, #ffffff) border-box;
    padding: 25px 15px;
    width: 160px;
    height: 180px;
    overflow: hidden;
    text-align: center;
    transition: all var(--transition-base);
}

.feature-icon {
    width: 37px;
    height: 37px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card p {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue-light);
}
.feature-card span {
    color: var(--primary-blue-light);
    font-size: 14px;
}

.why-choose-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose .btn-cta {
    background: var(--accent-yellow);
    color: var(--primary-blue-light);
    padding: 12px 40px;
}

.platform-preview {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ===== PROVIDERS SECTION ===== */
.providers {
    position: relative;
    padding: 0 40px;
    background: #ffffff;
    overflow: hidden;
    height: 772px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: start;
}

.providers.large-height-render {
    min-height: 1150px;
}

.providers-container {
    max-width: var(--max-width);
    margin: 40px auto;
    text-align: center;
}

.categories-render {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    height: 40px;
}

.category-button {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 160px;
    height: 40px;
    border-radius: 40px;
    border: 2px solid var(--primary-blue-light);
    color: var(--primary-blue-light);
    font-weight: 500;
    font-size: 16px;
    transition: transform var(--transition-base);
}

.category-button:hover {
    transform: scale(1.05);
}

.category-button.active {
    background: var(--primary-blue-light);
    color: #fff;
}

.default-render,
.sports-render,
.slots-render,
.dealers-render,
.fishings-render {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    max-width: 820px;
    margin: 40px auto 54px auto;
    row-gap: 16px;
}

.default-render .logo,
.sports-render .logo,
.slots-render .logo,
.dealers-render .logo,
.fishings-render .logo {
    width: 120px;
    height: 48px;
    margin-left: 20px;
}

.default-render .logo:nth-child(6n + 1),
.sports-render .logo:nth-child(6n + 1),
.slots-render .logo:nth-child(6n + 1),
.dealers-render .logo:nth-child(6n + 1),
.fishings-render .logo:nth-child(6n + 1) {
    margin-left: 0;
}

.default-render .logo img,
.sports-render .logo img,
.slots-render .logo img,
.dealers-render .logo img,
.fishings-render .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


@media screen and (max-width: 1024px) {
    .providers {
        &.large-height-render {
            .providers-container {
                height: 1320px;
            }
        }
        .providers-container {
            height: 875px;
            
          .categories-render {
            margin: 18px auto;
            height: unset;
            gap: 12px !important;
          }
    
          .default-render, .sports-render, .slots-render, .dealers-render, .fishings-render {
            justify-content: center;
            padding: 20px !important;
            margin: 0 !important;
            row-gap: 8px;
    
            .logo {
              width: 90px !important;
              height: 36px !important;
              aspect-ratio: 5/2;
    
              &:nth-child(1), &:nth-child(3n + 1) {
                margin-left: 0;
              }
            }
          }
        }
    }
}

.providers h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.text-gradient {
    color: var(--primary-blue-light);
    font-size: 52px;
}

.providers-subtitle {
    font-size: 20px;
    color: var(--text-gray-dark);
    margin-bottom: 30px;
}

.provider-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    width: 160px;
    height: 40px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    background: transparent;
    color: var(--primary-blue-light);
    border: 2px solid var(--primary-blue-light);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.tab-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.tab-btn.active {
    background: var(--primary-blue);
    color: var(--text-white);
    border-color: var(--primary-blue);

}

.provider-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
    justify-items: center;
}

.provider-logo {
    height: 40px;
    object-fit: contain;
    filter: grayscale(0);
    transition: all var(--transition-base);
}

.provider-logo:hover {
    transform: scale(1.1);
}

.providers-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.providers-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    z-index: 1;
}

.providers-decoration.left {
    left: 0;
    top: 200px;
}

.providers-decoration.right {
    right: 0;
}

.provider-bg-color-01,
.provider-bg-color-02 {
    height: 100%;
    position: absolute;
}

.provider-bg-color-01 {
    bottom: 0;
    left: -100px;
}

.provider-bg-color-02 {
    top: 0;
    right: 0;
}

.provider-bg-color-01 img,
.provider-bg-color-02 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gift-left {
    width: 100%;
    height: auto;
    position: absolute;
    left: 20px;
    transform: rotate(60deg);
}
.gift-right {
    width: 100%;
    height: auto;
}

.providers::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 183px;
    height: 500px;
    transform: skewX(26deg);
    background: linear-gradient(180deg, #091e75 0, #020aecc7 100%);
    transform-origin: top right;
}

.providers::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30%;
    height: 900px;
    transform: skewX(28deg);
    background: linear-gradient(180deg, #091e75 0, #020aecc7 100%);
    transform-origin: left bottom;
}
@media (max-width: 1500px) {
    .providers::before {
        width: 26%;
        height: 900px;
        transform: skewX(28deg);
    }
}
/* ===== FOOTER ===== */
.footer {
    max-width: var(--max-width);
    background: transparent;
    color: var(--primary-blue-light);
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 130px;
    margin: 0 auto;
    padding: 0 8px;
    position: absolute;
}


.footer-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.footer-container .copyright {
    flex: auto;
    text-align: end;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.social-link img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.copyright {
    font-size: 12px;
    opacity: 0.7;
}

.btn-mobile-section {
    margin: 16px auto;
    display: none;
}


@media (max-width: 1200px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .btn-mobile-section {
        display: block;
    }
    .btn-desktop-section {
        display: none;
    }
}

@media (max-width: 1000px) {
    .navbar {
        justify-content: space-between;
    }
    .hero::before, .star-bg {
        display: none;
    }

    .hero::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: unset;
        width: 100%;
        height: 200px;
        background: linear-gradient(177deg, #00000000, #03034bbd, #041767);
        border: none;
    }
    .hero-text {
        max-width: 450px;
    }

    .hero-text h1 {
        font-size: 34px;
    }
    .hero-text h1.highlight.italic {
        display: none;
    }
    .hero-text h1.highlight .mobile {
        display: inline-block;
        color: var(--text-white);
        padding-left: 8px;
    }

    .btn {
        font-size: 16px !important;
    }

    .countdown {
       justify-content: left;
    }

    .countdown-number {
        font-size: 44px;
    }

    .features-bg {
        top: -150px;
        right: 75px;
        width: 50%;
        height: 2000px;
    }

    .features-container {
        flex-direction: column-reverse;
        margin-top: 0;
    }

    .features-content > h2 {
        position: absolute;
        top: 0px;
    }

    .features-desc  {
        position: absolute;
        padding: 20px;
        color: #D9D9D9;
        top: 70px;
        text-align: center;
    }

    .features-content {
        width: 100%;
        /* padding-top: -20px; */
        padding-bottom: 20px;
        background: white;
    }

    .contact-container {
        padding: 0;
        display: flex;
        flex-wrap: wrap;

    }

    .contact > .coin-1 {
        display: none;
    }

    .contact > .coin-2 {
        display: none;
    }

    .contact-decoration {
        display: none;
    }

    .contact-form-wrapper,
    .contact-details {
        max-width: 100%;
        flex: 1 1 300px;
    }

    .contact-bg {
        display: none;
    }

    .why-choose-container {
        flex-direction: column;
    }

    .why-choose-image {
        order: -1;
    }

    .provider-logos {
        grid-template-columns: repeat(4, 1fr);
    }

    .text-gradient {
        font-size: 32px;
    }
}

@media (max-width: 1000px) {
    .nav-links,
    .nav-social {
        display: none;
    }

    .btn {
        padding: 0 28px;
        font-size: 13px;
    }

    .hamburger {
        top: 2px;
        right: 2px;
        display: flex;
    }

    .mobile-menu {
        z-index: 999;
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
    }
    .btn {
        height: 40px !important;
        width: 200px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

    .hero-player {
        height: unset !important;
        left: -60px;
        top: 12%;
    }
    .hero-ball {
        width: 80%;
        left: 0;
        z-index: 2;
    }

    .hero-content {
        position: relative;
        overflow: hidden;
        height: 746px;
        padding: 0;
    }

    .hero-text {
        position: absolute;
        max-width: 1200px;
        height: 100%;
        bottom: 0;
        z-index: 50;
        bottom: 20px;
        display: flex;
        flex-direction: column;
        justify-content: end;
        text-align: start;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: start;
        align-items: start !important;
    }
    .hero-text h1 {
        font-size: 32px;
        color: var(--bg-light) !important;
        font-style: normal !important;
    }

    .hero-text .subtitle {
        font-size: 16px;
        margin-top: 8px;
    }

    .countdown {
        justify-content: center;
        gap: 10px;
        margin: 25px 0;
        flex-wrap: wrap;
    }

    .countdown-item {
        background: transparent;
        padding: 5px 8px;
        border-radius: 8px;
        min-width: auto;
    }

    .countdown-number {
        font-size: 28px;
    }

    .countdown-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        /* z-index: 20; */
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 160px;
    }

    /* Features Section Mobile */
    .features {
        padding: 0;
    }
    
    .features {
        background: linear-gradient(360deg, #020aecde 0%, #011463 100%);
    }

    .features-bg {
        display: none;
    }

    .features::before {
        display: none;
    }

    .why-choose-header .text-light {
        display: none;
    }

    .why-choose-header .mobile {
        display: flex;
        flex-direction: column;
    }

    .why-choose-header > h2 > p:first-child {
        font-size: 24px;
        color: #D9D9D9;
        font-weight: bold;
    }
    .why-choose-header > h2 > p:last-child {
        font-size: 32px;
        color: var(--text-white);
        font-weight: bold;
    }

    .why-choose-header .text-dark {
        font-size: 32px;
    }
    .features-container {
        text-align: center;
        flex-direction: column-reverse;
        margin-top: 0;
    }

    .features-content .btn {
        width: 200px;
        margin: auto;
    }

     .features-content > h2 {
        position: absolute;
        top: 30px;
    }

    .features-image {
        position: relative;
        top: 85px;
        margin: 25px 0;
        right: 0;
        left: 0;
    }

    .features-image img {
        max-width: 90%;
    }

    .features-content h2 {
        left: 10px;
        font-size: 28px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
        color: var(--primary-blue-light);
    }

    .features-list {
        padding: 20px;
        text-align: left;
        margin: 0 auto;
    }

    .features-list li {
        font-size: 18px;
        margin-bottom: 15px;
        align-items: center;
    }

    .contact-bg {
        display: none;
    }

    .features::after, .features::before {
        display: none;
    }

    .contact {
        background: transparent;
    }
    .contact::before, .contact::after {
        display: none;
    }
    
    .btn-book {
        display: block;
        max-width: 200px;
        margin: 0 auto;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 0;
    }

    .contact-details {
        background-image: linear-gradient(174deg, #102aff, #060a66);
        border-radius: 0;
    }

    .contact-container {
        flex-direction: column;
        gap: unset;
    }

    .contact-form-wrapper {
        width: 100%;
        text-align: center;
        padding: 20px;
    }

    .contact-form-wrapper h3 {
        text-align: center;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px 18px;
        font-size: 14px;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .btn-send {
        width: 100%;
        max-width: 200px;
        margin: 10px auto 0;
    }

    .contact-details {
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .contact-details h3 {
        font-size: 16px;
        font-weight: bold;
        color: var(--text-white);
        margin-bottom: 12px;
    }

    .contact-details > p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .contact-links {
        align-items: center;
        gap: 26px;
    }

    .contact-link {
        justify-content: flex-start;
        width: 100%;
        max-width: 240px;
        padding: 12px 20px;
    }

    /* Why Choose Section Mobile */
    .why-choose {
        padding: 50px 20px;
        background: linear-gradient(180deg, #050a6c 0%, #0f27f4 100%) !important;
    }

    .why-choose-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    .why-choose-image {
        display: none;
    }

    .why-choose-container {
        text-align: center;
        max-width: 100%;
    }

    .why-choose-header {
        justify-content: center;
        margin-bottom: 25px;
    }

    .why-choose-header h2 {
        font-size: 32px;
    }

    .why-choose::after, .why-choose::before {
        display: none;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 0;
        max-width: 100%;
    }

    .provider-bg-color-02, .provider-bg-color-01 {
        display: none !important;
    }

    .provider-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding:10px 40px;
        & button {
            color: var(--primary-blue-light);
        }
    }

    .feature-card {
        padding: 30px 15px;
        border-radius: 32px !important;
        height: 156px;
        border-width: 2px;
        min-width: 120px;
    }
    .feature-card {
        padding: 2px;
    }

    .features-content h2 {
        padding: 0 10px;
        color: var(--text-white);
        font-size: 18px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .feature-card p {
        font-size: 14px;
    }

    /* Providers Section Mobile */
    .providers::before , .providers::after {
        display: none;
    }
    
    .providers-container {
        height: auto !important;
        margin-bottom: 130px;
    }

    .providers {
        padding: 20px 0;
    }

    .providers h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .providers-subtitle {
        font-size: 13px;
        padding: 0 20px;
        margin-bottom: 25px;
    }

    .provider-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 11px;
        border-radius: 20px;
    }

    .providers {
        height: unset !important;
    }

    .provider-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 30px;
    }

    .provider-logo {
        height: 28px;
    }

    .providers-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }


    .providers-buttons .btn {
        height: 40px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 200px;
    }

    /* Footer Mobile */
    .footer {
        padding: 25px 20px;
        left: 0;
        background-image: linear-gradient(173deg, #4262ff, #07134d);

    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;

        & .copyright {
            color: var(--bg-light);
        }
    }

    .footer-social {
        order: 1;
    }

    .copyright {
        order: 2;
        font-size: 11px;
    }

    .btn-mobile-section {
        display: block;
    }
    .btn-desktop-section {
        display: none;
    }
}

@media (max-width: 720px) {
    .logo {
        height: 26px;
    }
    .hero {
        min-height: auto;
    }

    .hero-text {
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text .subtitle {
        font-size: 16px;
    }

    .countdown {
        justify-content: left;
    }

    .countdown-item:first-child {
        flex: 0 0 100%;
        gap: 0;
        margin-bottom: -25px;
    }

    .countdown-item {
        padding: 5px 6px;
        min-width: auto;
        flex-direction: column-reverse;
    }

    .countdown-number {
        font-size: 42px;
    }

    .countdown-label {
        font-size: 12px;
    }

    /* Features Mobile Small */
    .features {
        padding: 0;
    }
    .features-desc {
        font-size: 13px;
    }

    .features-list li {
        font-size: 15px;
        font-weight: 500;
        gap: 10px;
    }

    /* Contact Mobile Small */
    .contact-form-wrapper h3 {
        font-size: 16px;
    }

    .contact-details {
        margin-bottom: -1px;
        padding: 20px 15px;
    }

    .contact-details h3 {
        font-size: 18px;
    }

    .contact-link {
        padding: 10px 16px;
        display: flex;
        height: 40px;
        justify-content: center;
    }

    .contact-link img {
        width: 24px;
        height: 24px;
    }

    .contact-link span {
        font-size: 15px;
        line-height: 28px;
    }
    .contact-form .btn {
        margin: 0 auto;
    }

    /* Why Choose Mobile Small */
    .why-choose-header {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .why-choose-header h2 {
        font-size: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-cards {
        gap: 10px;
    }

    .feature-card {
        padding: 20px 10px;
        border-radius: 14px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-card p {
        font-size: 12px;
    }

    /* Providers Mobile Small */
    .categories-render {
        display: grid;
        grid-template-columns: repeat(2, 120px);
        gap: 12px;
    }
    .providers h2 {
        font-size: 24px;
    }

    .providers-subtitle {
        font-size: 13px;
        font-weight: 500;
    }

    .tab-btn {
        padding: 6px 12px;
        font-size: 10px;
    }

    .provider-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .provider-logo {
        height: 35px;
    }

    .gift-left {
        width: 150px;
        left: -98px;
        top: -200px;
        opacity: 70%;
    }
    .gift-right {
        display: none;
    }

    .btn-mobile-section {
        display: block;
    }
    .btn-desktop-section {
        display: none;
    }
}

@media (max-width: 500px) {
    .navbar {
        padding: 15px;
    }
    .hamburger {
        padding: 0;
    }
    .hero {
        overflow: hidden;
    }
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text {
        z-index: 10;
        width: 100% !important;
        background: linear-gradient(84deg, #2e2e89a8, #0000ff26, #0000001f);
        transform: translateY(20px);
    }

    .hero-ball {
        width: 100%;
        bottom: 0;
        transform: translateX(70px);
    }

    .countdown-item {
        padding: 4px 5px;
        min-width: auto;
    }

    .countdown-number {
        font-size: 42px;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .check-icon {
        height: 31px;
        width: 31px;
    }

    .features {
        background: linear-gradient(180deg, #041361 0%, #4d6cff 80%, #ffffff 100%);
    }

    .features-content h2 {
        width: 100%;
        text-align: center;
    }

    .feature-card {
        padding: 15px 8px;
        width: auto;
        border-radius: 12px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
    }

    .feature-card p {
        font-size: 15px;
    }

    .text-gradient {
        font-size: 24px;
    }

    .category-button {
        min-width: 120px;
        font-size: 12px;
        height: 28px;
    }


    .provider-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .provider-logo {
        height: 35px;
    }

    .btn-mobile-section {
        display: block;
    }
    .btn-desktop-section {
        display: none;
    }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    position: relative;
}

.desktop-lang-current {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-white);
    transition: color var(--transition-base);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lang-current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--text-white);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-arrow {
    transition: transform var(--transition-base);
}

.desktop-lang-switcher .lang-arrow {
    margin-left: 8px;
}

.desktop-lang-switcher.active .lang-arrow,
.lang-switcher.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    padding-left: 10px;
}

.desktop-lang-switcher.active .lang-dropdown {
    display: flex;
    position: absolute;
    background: #00143BB2;
    margin-top: unset;
    margin-left: unset;
    padding: 20px;
    border-radius: 4px;
}
.lang-switcher.active .lang-dropdown {
    display: flex;
}

.lang-option {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.2s ease, color 0.2s ease;
    padding: 8px 0;
}

.lang-option:hover {
    opacity: 1;
    padding-left: 0;
}

.lang-option.active {
    color: #3B82F6;
    opacity: 1;
}