@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=League+Spartan:wght@400;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    background-color: #1b0033;
    /* fallback */
}

@media (min-width: 769px) {
    body {
        background-image: url('images/LottoBackground.png');
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
}

.container {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(22, 0, 46, 0.80);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    /* max-width: 1400px; */
    margin: 0 auto;
}

.logo {
  height: 60px;
  width: 270px;
  object-fit: contain;
}

.nav-header {
    display: none;
}

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

.nav-btn {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.nav-btn:hover,
.nav-btn.active {
    background: rgba(255, 104, 201, 0.22);
    border-color: #FF68C9;
    color: #FF68C9;
}

.nav-btn i {
    margin-right: 6px;
    font-size: 11px;
}

.hamburger {
    display: none;
    background: linear-gradient(135deg, #FF68C9 0%, #2121ff 100%);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 104, 201, 0.4);
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 104, 201, 0.6);
}

.hamburger.active {
    background: linear-gradient(135deg, #f4a940 0%, #ff6b6b 100%);
    box-shadow: 0 4px 15px rgba(244, 169, 64, 0.5);
}

.carousel-container {
    width: 100%;
    max-width: 700px;
    margin-left: 8.5rem;
    height: 300px;
    position: relative;
    margin-bottom: 40px;
    z-index: 5;

    @media (max-width: 1380px) {

        margin-left: 8rem;
        max-width: 650px;
    }

    @media (max-width: 1300px) {

        margin-left: 8rem;
        max-width: 600px;
    }

    @media (max-width: 1230px) {

        margin-left: 7.5rem;
        max-width: 550px;
    }

    @media (max-width: 1150px) {

        margin-left: 7rem;
        max-width: 530px;
    }

    @media (max-width: 1075px) {

        margin-left: 6.5rem;
        max-width: 510px;
    }

    @media (max-width: 1020px) {

        margin-left: 6rem;
        max-width: 480px;
    }

    @media (max-width: 980px) {

        margin-left: 5rem;
        max-width: 470px;
    }


    @media (max-width: 920px) {

        margin-left: 4.5rem;
        max-width: 450px;
        height: 280px;
    }

    @media (max-width: 880px) {
        margin-left: 4rem;
        max-width: 440px;
        height: 270px;
    }

    @media (max-width: 850px) {
        margin-left: 3.5rem;
        max-width: 440px;
        height: 260px;
    }

    @media (max-width: 830px) {
        margin-left: 3rem;
        max-width: 420px;
        margin-bottom: 35px;
        height: 250px;
    }

    @media (max-width: 670px) {
        max-width: 75% !important;
    }

    @media (max-width: 600px) {
        max-width: 80% !important;
    }
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 3px solid rgba(255, 104, 201, 0.3);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 104, 201, 0.9);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(255, 104, 201, 0.4);
}

.carousel-btn:hover {
    background: #2E0152;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #FF68C9;
}

.indicator.active {
    background: #FF68C9;
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(255, 104, 201, 0.8);
}

.hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 170px 40px 90px;
    /* background: linear-gradient(
    to bottom,
    rgba(22, 0, 46, 0.60) 0%,
    rgba(20, 0, 42, 0.38) 100%
  ); */
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    /* background: linear-gradient(to bottom, transparent, rgba(15, 0, 34, 0.55)); */
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Paytone One', Arial, sans-serif;
    font-size: clamp(42px, 7vw, 72px);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1.05;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}

.hero-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    margin-top: 18px;
    background: linear-gradient(90deg, #FF68C9, #f4a940);
    border-radius: 2px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    line-height: 1.4;
    font-weight: 400;
}

.details-section {
    padding: 70px 0;
    background: rgba(12, 0, 28, 0.60);
}

.detail-card {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 56px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.detail-card:last-child {
    border-bottom: none;
    padding-bottom: 20px;
}

.detail-card.reverse {
    flex-direction: row-reverse;
}

.detail-text {
    flex: 1;
    min-width: 0;
}

.detail-text h2 {
    font-family: 'Paytone One', Arial, sans-serif;
    font-size: clamp(28px, 3.5vw, 46px);
    color: #f4a940;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
    line-height: 1.15;
    display: flex;
    align-items: center;
    gap: 14px;
}

.detail-text h2::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 5px;
    height: 1.1em;
    background: linear-gradient(180deg, #FF68C9, #f4a940);
    border-radius: 3px;
}

.detail-text p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}

.detail-text p:last-child {
    margin-bottom: 0;
}

.detail-img-wrap {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-img {
    width: 350px;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    background-color: #ffffff;
    padding: 5px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(244, 169, 64, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    object-fit: cover;
}

.detail-card:hover .detail-img {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.7);
    border-color: rgba(244, 169, 64, 0.5);
}

.stats-section {
    padding: 50px 0;
    text-align: center;
    /* background: rgba(8, 0, 22, 0.70); */
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF68C9, #f4a940, transparent);
}

.stats-title {
    font-family: 'Paytone One', Arial, sans-serif;
    font-size: clamp(26px, 4vw, 46px);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.3;
    margin-bottom: 64px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 36px 20px;
    border-radius: 16px;
    background: rgba(10, 0, 30, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.stat-num {
    font-family: 'Paytone One', Arial, sans-serif;
    font-size: clamp(36px, 4.5vw, 50px);
    color: #f4a940;
    margin-bottom: 12px;
    line-height: 1.1;
}

.stat-plus {
    font-size: 0.5em;
    color: #ffffff;
    vertical-align: super;
}

.stat-sup {
    font-size: 0.42em;
    color: #f4a940;
    vertical-align: super;
}

.stat-box p {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Stats Grid */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 30px;
    }

    .stat-box {
        padding: 28px 16px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 30px;
    }

    .stat-box {
        padding: 24px 12px;
    }

    .stat-box p {
        font-size: 12px;
    }
}

.footer {
    background: rgba(6, 0, 16, 0.90);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 64px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    align-items: flex-start;
}

.footer-brand {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-links-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-heading {
    font-family: 'Paytone One', Arial, sans-serif;
    font-size: 13px;
    color: #f4a940;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: #f4a940;
    padding-left: 5px;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.60);
    margin-bottom: 12px;
    line-height: 1.65;
}

.footer-contact a {
    color: #FF68C9;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #f4a940;
}

.footer-bottom {
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #f4a940;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.20);
}

.back-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF68C9, #2121ff);
    border: none;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(255, 104, 201, 0.55);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 99;
}

.back-to-top:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 26px rgba(255, 104, 201, 0.7);
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

/* 
.feature-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: linear-gradient(180deg, #FF68C9, #f4a940);
  border-radius: 2px;
  opacity: 0.8;
} */
.feature-icon {
    font-size: 24px;
    color: #FF68C9;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-text h4 {
    font-family: 'Paytone One', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.feature-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    margin: 0;
    font-weight: 400;
}

/* LOTTERY FEATURES GRID */
.lottery-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 1px 0;
}

/* LOTTERY FEATURE CARD */
.lottery-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 104, 201, 0.15), rgba(33, 1, 82, 0.15));
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 104, 201, 0.3);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Responsive Lottery Features */
@media (max-width: 1024px) {
    .lottery-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .lottery-feature-card {
        padding: 25px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .lottery-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 15px;
    }

    .lottery-feature-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .lottery-features-grid {
        padding: 0 10px;
        gap: 12px;
    }

    .lottery-feature-card {
        padding: 15px;
        gap: 10px;
        border-radius: 12px;
    }
}

/* LOTTERY FEATURE CARD HOVER */
.lottery-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 104, 201, 0.6);
    box-shadow: 0 15px 35px rgba(255, 104, 201, 0.25);
}

/* LOTTERY FEATURE ICON */
.lottery-feature-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff68c9, #7a00ff);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(255, 104, 201, 0.4);
}

/* LOTTERY FEATURE TEXT */
.lottery-feature-text h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.lottery-feature-text p {
    font-size: 14px;
    color: #d1cbe8;
    line-height: 1.6;
}

/* Hero Stats Section */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
    padding: 0 20px;

    @media (max-width: 1024px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    @media (max-width: 600px) {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
}

.stat-item {
    text-align: center;
    background: rgba(255, 104, 201, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 20px;
    border: 2px solid rgba(255, 104, 201, 0.3);
    transition: all 0.3s ease;

    &:hover {
        transform: translateY(-10px);
        background: rgba(255, 104, 201, 0.2);
        box-shadow: 0 20px 40px rgba(255, 104, 201, 0.4);
    }
}

.stat-number {
    font-family: 'Paytone One', sans-serif;
    font-size: 48px;
    color: #FF68C9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
    font-weight: 700;

    @media (max-width: 980px) {
        font-size: 42px;
    }

    @media (max-width: 768px) {
        font-size: 36px;
    }

    @media (max-width: 600px) {
        font-size: 32px;
    }
}

.stat-label {
    font-family: 'League Spartan', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 600;
    line-height: 1.4;

    @media (max-width: 768px) {
        font-size: 16px;
    }
}

.partner-container {
    /* position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%); */
    display: flex;
    gap: 20px;
    margin-top: 5rem;
    z-index: 5;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 100%;
    padding: 0 20px;

    @media (max-width: 980px) {
        margin-top: 4.5rem;
        gap: 18px;
        padding: 0 18px;
    }

    @media (max-width: 880px) {
        margin-top: 4rem;
        gap: 16px;
        padding: 0 16px;
    }

    @media (max-width: 850px) {
        margin-top: 3.5rem;
        gap: 14px;
        padding: 0 14px;
    }

    @media (max-width: 820px) {
        margin-top: 3rem;
        gap: 12px;
        padding: 0 12px;
    }
}

.partner-image {
    max-width: 180px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;

    @media (max-width: 980px) {
        max-width: 170px;
        height: 75px;
    }

    @media (max-width: 880px) {
        max-width: 165px;
        height: 70px;
    }

    @media (max-width: 850px) {
        max-width: 160px;
        height: 65px;
    }

    @media (max-width: 820px) {
        max-width: 155px;
        height: 60px;
    }



}

.partner-image:hover {
    transform: scale(1.1);
}

.eighteen-plus-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    margin-bottom: 30px;

    @media (max-width: 980px) {
        width: 48px;
        height: 48px;
        margin-bottom: 28px;
    }

    @media (max-width: 880px) {
        width: 46px;
        height: 46px;
        margin-bottom: 26px;
    }

    @media (max-width: 850px) {
        width: 42px;
        height: 42px;
        margin-bottom: 24px;
    }

    @media (max-width: 820px) {
        width: 40px;
        height: 40px;
        margin-bottom: 22px;
    }

}

.eighteen-plus-image:hover {
    transform: rotate(360deg) scale(1.1);
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255, 104, 201, 0.8), rgba(255, 104, 201, 0));
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 80%;
    top: 30%;
    animation-duration: 14s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 50%;
    top: 60%;
    animation-duration: 16s;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 30%;
    top: 80%;
    animation-duration: 13s;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    left: 70%;
    top: 70%;
    animation-duration: 15s;
    animation-delay: 3s;
}

.content-page {
    min-height: 100vh;
    /* background-image: url('images/bgcontent.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 40px 20px;
}

/* Platform Card */
.platform-card {
    position: relative;
    height: auto;
    min-height: fit-content;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
    width: 100%;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
}

/* Content */
.platform-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    transition: 0.3s ease;
    height: auto;
    min-height: fit-content;
}

/* Responsive Platform Content */
@media (max-width: 1024px) {
    .platform-content {
        padding: 18px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .platform-content {
        padding: 15px;
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .platform-content {
        padding: 12px;
        font-size: 12px;
        line-height: 1.3;
    }
}

/* Icon */
.platform-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    color: orange;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 26px;
}

/* Hover Box */
.hover-box {
    position: absolute;
    inset: 1px;
    border: 2px solid #ff8c1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
    z-index: 3;
}

/* Button */
.read-more-btn {
    background: #ff8c1a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
}

/* Hover Effects */
.platform-card:hover .hover-box {
    opacity: 1;
    transform: scale(1);
}

.platform-card:hover .platform-content {
    opacity: 0.2;
}

.platform-card:hover {
    transform: translateY(-6px);
}

/* Optional Blur Effect */
.hover-box {
    backdrop-filter: blur(3px);
}

/* Responsive */
@media (max-width: 900px) {
    .platform-grid {
        grid-template-columns: 1fr;
        padding: 40px 15px;
    }
}

@media (max-width: 768px) {
    .platform-grid {
        padding: 40px 10px;
    }

    .platform-card {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .platform-grid {
        padding: 30px 8px;
        gap: 20px;
    }

    .platform-card {
        width: 100%;
    }
}

.content-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0,0,0,0.3); */
    pointer-events: none;
}

.content-container {
    max-width: 1200px;
    width: 100%;
    padding: 20px 60px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header i {
    font-size: 60px;
    color: #FF68C9;
    margin-bottom: 20px;
    display: block;
    animation: pulse 2s infinite;
}

.content-container h2 {
    font-family: 'Paytone One', sans-serif;
    font-size: 52px;
    color: #FFFFFF;
    /* margin-bottom: 20px; */
    text-align: center;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.content-container h3 {
    /* font-family: 'Paytone One', sans-serif; */
    font-size: 31px;
    color: #FFFFFF;
    margin-top: 20px;
    /* margin-bottom: 25px; */
    padding-bottom: 15px;
    /* border-bottom: 3px solid #FF68C9; */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.content-container h3 i {
    margin-right: 15px;
    color: #FF68C9;
}

.intro-text {
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 40px !important;
    text-align: center;
    padding: 30px;
    background: rgba(255, 104, 201, 0.1);
    border-radius: 15px;
    border-left: 5px solid #FF68C9;
}

.content-container p {
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(20, 0, 44, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 104, 201, 0.2);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.feature-item:hover {
    background: rgba(255, 104, 201, 0.1);
    border-color: rgba(255, 104, 201, 0.4);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 24px;
    color: #FF68C9;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-text {
    flex: 1;
}

/* Target Audience */
.target-audience {
    margin-top: 50px;
}

.subtitle {
    text-align: center;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-style: italic;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.audience-card {
    background: rgba(46, 1, 82, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 104, 201, 0.4);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.audience-card:hover {
    background: rgba(255, 104, 201, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 104, 201, 0.4);
}

.audience-card i {
    font-size: 40px;
    color: #FF68C9;
    margin-bottom: 15px;
    display: block;
}

.audience-card span {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
}

/* Experience Visual - Our Brains */
.experience-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    position: relative;
}

.experience-visual {
    position: relative;
    width: 600px;
    height: 500px;

    @media (max-width: 768px) {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
}

.central-brain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #FF68C9 0%, #2E0152 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 104, 201, 0.5);
    z-index: 10;
    border: 3px solid rgba(255, 255, 255, 0.3);

    i {
        font-size: 50px;
        margin-bottom: 10px;
    }

    @media (max-width: 768px) {
        width: 120px;
        height: 120px;
        font-size: 14px;

        i {
            font-size: 40px;
        }
    }
}

.service-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 104, 201, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 104, 201, 0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;

    i {
        font-size: 35px;
        margin-bottom: 8px;
        color: #FF68C9;
    }

    &:hover {
        transform: scale(1.1);
        background: rgba(255, 104, 201, 0.4);
        box-shadow: 0 10px 30px rgba(255, 104, 201, 0.5);
    }

    @media (max-width: 768px) {
        width: 90px;
        height: 90px;
        font-size: 12px;

        i {
            font-size: 28px;
            margin-bottom: 5px;
        }
    }
}

.instant-lottery {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.official-lottery {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.sport-betting {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.local-lotteries {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

/* Connection Lines */
.experience-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(255, 104, 201, 0.3) 50%, transparent 52%),
        linear-gradient(135deg, transparent 48%, rgba(255, 104, 201, 0.3) 50%, transparent 52%),
        linear-gradient(225deg, transparent 48%, rgba(255, 104, 201, 0.3) 50%, transparent 52%),
        linear-gradient(315deg, transparent 48%, rgba(255, 104, 201, 0.3) 50%, transparent 52%);
    z-index: 1;

    @media (max-width: 768px) {
        width: 250px;
        height: 250px;
    }
}

/* Casino Games Content */
.casino-games-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;

    @media (max-width: 968px) {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.casino-games-text {
    p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #FFFFFF;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);

        @media (max-width: 768px) {
            font-size: 16px;
        }
    }
}

.casino-games-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bingo-illustration {
    position: relative;
    width: 350px;
    height: 400px;

    @media (max-width: 768px) {
        width: 300px;
        height: 350px;
    }
}

.bingo-balls {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 200px;
}

.bingo-ball {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF68C9 0%, #2E0152 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 104, 201, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);

    @media (max-width: 768px) {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

.bingo-card {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid #FF68C9;

    @media (max-width: 768px) {
        width: 180px;
        top: 100px;
    }
}

.bingo-header {
    background: linear-gradient(135deg, #FF68C9 0%, #2E0152 100%);
    color: white;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 2px;

    @media (max-width: 768px) {
        font-size: 18px;
        padding: 6px;
    }
}

.bingo-numbers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.bingo-number {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border: 2px solid #FF68C9;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: #2E0152;

    &.free {
        background: linear-gradient(135deg, #FF68C9 0%, #2E0152 100%);
        color: white;
        font-weight: 700;
    }

    @media (max-width: 768px) {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
}

.money-bag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 100px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    border: 3px solid #FF8C00;
    position: relative;

    &::before {
        content: '$';
        position: absolute;
        top: -15px;
        font-size: 30px;
        color: #FFD700;
        font-weight: 700;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 768px) {
        width: 100px;
        height: 80px;

        &::before {
            font-size: 25px;
            top: -12px;
        }
    }
}

.bag-amount {
    color: #2E0152;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);

    @media (max-width: 768px) {
        font-size: 14px;
    }
}

/* Games Features Content - Hexagon Flowchart */
.games-features-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}

.hexagon-flowchart {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    @media (max-width: 768px) {
        height: 600px;
        max-width: 100%;
    }

    @media (max-width: 480px) {
        height: 550px;
    }
}

.hexagon-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, #FF68C9 0%, #2E0152 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 18px;
    box-shadow: 0 15px 40px rgba(255, 104, 201, 0.4);
    z-index: 10;
    border: 3px solid rgba(255, 255, 255, 0.3);

    i {
        font-size: 40px;
        margin-bottom: 10px;
        color: white;
    }

    span {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 6px;
        line-height: 1.2;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    p {
        font-size: 10px;
        line-height: 1.3;
        margin: 0;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        max-width: 200px;
        word-wrap: break-word;
    }

    @media (max-width: 768px) {
        width: 180px;
        height: 180px;
        padding: 12px;

        i {
            font-size: 32px;
            margin-bottom: 8px;
        }

        span {
            font-size: 12px;
            margin-bottom: 4px;
        }

        p {
            font-size: 9px;
            max-width: 150px;
        }
    }

    @media (max-width: 480px) {
        width: 160px;
        height: 160px;
        padding: 10px;

        i {
            font-size: 28px;
        }

        span {
            font-size: 11px;
        }

        p {
            font-size: 8px;
            max-width: 130px;
        }
    }
}

.hexagon-row {
    position: absolute;
    display: flex;
    gap: 40px;
    z-index: 5;
}

.hexagon-row.top-row {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.hexagon-row.middle-row {
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    justify-content: space-between;
    max-width: 800px;
}

.hexagon-row.bottom-row {
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
}

.hexagon-row.last-row {
    top: 72%;
    left: 50%;
    transform: translateX(-50%);
}

.hexagon-item {
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, rgba(255, 104, 201, 0.9) 0%, rgba(46, 1, 82, 0.9) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(255, 104, 201, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;

    i {
        font-size: 35px;
        margin-bottom: 10px;
        color: white;
    }

    span {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1.3;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    p {
        font-size: 11px;
        line-height: 1.4;
        margin: 0;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        max-width: 180px;
        word-wrap: break-word;
    }

    /* &:hover {
        transform: translateY(-10px) scale(1.05);
        background: linear-gradient(135deg, rgba(255,104,201,1) 0%, rgba(46,1,82,1) 100%);
        box-shadow: 0 25px 60px rgba(255,104,201,0.6);
        border-color: rgba(255,255,255,0.5);
    } */

    @media (max-width: 768px) {
        width: 180px;
        height: 180px;
        padding: 15px;

        i {
            font-size: 28px;
            margin-bottom: 8px;
        }

        span {
            font-size: 12px;
            margin-bottom: 6px;
        }

        p {
            font-size: 9px;
            line-height: 1.3;
            max-width: 140px;
        }
    }

    @media (max-width: 480px) {
        width: 160px;
        height: 160px;
        padding: 12px;

        i {
            font-size: 24px;
        }

        span {
            font-size: 11px;
        }

        p {
            font-size: 8px;
            max-width: 120px;
        }
    }
}

/* Connection Arrows */
.arrow {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 104, 201, 0.6), rgba(46, 1, 82, 0.6));
    z-index: 1;
}

.arrow::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid rgba(46, 1, 82, 0.6);
}

.arrow-1 {
    top: 18%;
    left: 50%;
    height: 10%;
    transform: translateX(-50%);
}

.arrow-2 {
    top: 40%;
    left: 38%;
    height: 8%;
    transform: rotate(-30deg);
    transform-origin: top center;
}

.arrow-3 {
    top: 40%;
    right: 38%;
    height: 8%;
    transform: rotate(30deg);
    transform-origin: top center;
}

.arrow-4 {
    top: 63%;
    left: 50%;
    height: 6%;
    transform: translateX(-50%);
}

.arrow-5 {
    top: 75%;
    left: 50%;
    height: 6%;
    transform: translateX(-50%);
}

.arrow-6 {
    top: 87%;
    left: 50%;
    height: 4%;
    transform: translateX(-50%);
}

/* Additional Features - Circular Design */
.additional-features {
    margin-top: 30px;
    text-align: center;

    h3 {
        font-family: 'Paytone One', sans-serif;
        font-size: 32px;
        color: #FFFFFF;
        margin-bottom: 40px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        border-bottom: 3px solid #FF68C9;
        padding-bottom: 15px;
        display: inline-block;
    }
}

.circular-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;

    @media (max-width: 768px) {
        gap: 20px;
        padding: 15px 0;
    }

    @media (max-width: 480px) {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }
}

.other-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* gap: 60px;
    max-width: 900px; */
    margin: 0 auto;

    /* Top 3 items */
    .circular-feature:nth-child(1) {
        grid-column: 1 / 3;
        justify-self: center;
    }

    .circular-feature:nth-child(2) {
        grid-column: 3 / 5;
        justify-self: center;
    }

    .circular-feature:nth-child(3) {
        grid-column: 5 / 7;
        justify-self: center;
    }

    /* Bottom 2 centered */
    .circular-feature:nth-child(4) {
        grid-column: 2 / 4;
        justify-self: center;
    }

    .circular-feature:nth-child(5) {
        grid-column: 4 / 6;
        justify-self: center;
    }

    @media (max-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;

        .circular-feature:nth-child(1),
        .circular-feature:nth-child(2),
        .circular-feature:nth-child(3),
        .circular-feature:nth-child(4),
        .circular-feature:nth-child(5) {
            grid-column: auto;
            justify-self: center;
        }
    }

    @media (max-width: 480px) {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.circular-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-radius: 16px;
    background: rgba(10, 0, 30, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.3s, transform 0.3s, border-color 0.3s;

    @media (max-width: 768px) {
        padding: 20px 15px;
    }

    @media (max-width: 480px) {
        padding: 15px 12px;
    }
}
.circular-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;

    i {
        font-size: 30px;
        color: white;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    &:hover {
        transform: scale(1.1);
        background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
        box-shadow: 0 15px 40px rgba(255, 140, 0, 0.5);
    }

    @media (max-width: 768px) {
        width: 80px;
        height: 80px;

        i {
            font-size: 32px;
        }
    }
}

.circular-feature h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #FF8C00;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 768px) {
        font-size: 16px;
        min-height: 40px;
    }
}

.circular-feature p {
    font-size: 17px;
    color: #FFFFFF;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin: 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 768px) {
        font-size: 13px;
        min-height: 55px;
    }
}

/* About Section Layout */
.about-content {
    margin-top: 40px;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

    @media (max-width: 968px) {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-text {
    .intro-text {
        margin-bottom: 30px !important;
    }

    p {
        font-size: 21px;
        line-height: 1.7;
        margin-bottom: 25px;
        color: #FFFFFF;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);

        @media (max-width: 768px) {
            font-size: 16px;
        }
    }
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bingo-illustration {
    position: relative;
    width: 350px;
    height: 400px;
    animation: float 6s ease-in-out infinite;

    @media (max-width: 768px) {
        width: 300px;
        height: 350px;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bingo-balls {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 200px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.bingo-ball {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF68C9 0%, #2E0152 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 104, 201, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: rotate 4s linear infinite;
    transition: all 0.3s ease;

    &:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(255, 104, 201, 0.6);
    }

    @media (max-width: 768px) {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bingo-ball:nth-child(1) {
    animation-delay: 0s;
}

.bingo-ball:nth-child(2) {
    animation-delay: 0.2s;
}

.bingo-ball:nth-child(3) {
    animation-delay: 0.4s;
}

.bingo-ball:nth-child(4) {
    animation-delay: 0.6s;
}

.bingo-ball:nth-child(5) {
    animation-delay: 0.8s;
}

.bingo-card {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid #FF68C9;

    @media (max-width: 768px) {
        width: 180px;
        top: 100px;
    }
}

.bingo-header {
    background: linear-gradient(135deg, #FF68C9 0%, #2E0152 100%);
    color: white;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 2px;

    @media (max-width: 768px) {
        font-size: 18px;
        padding: 6px;
    }
}

.bingo-numbers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.bingo-number {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border: 2px solid #FF68C9;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: #2E0152;

    &.free {
        background: linear-gradient(135deg, #FF68C9 0%, #2E0152 100%);
        color: white;
        font-weight: 700;
    }

    @media (max-width: 768px) {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
}

.money-bag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 100px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    border: 3px solid #FF8C00;
    position: relative;

    &::before {
        content: '$';
        position: absolute;
        top: -15px;
        font-size: 30px;
        color: #FFD700;
        font-weight: 700;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 768px) {
        width: 100px;
        height: 80px;

        &::before {
            font-size: 25px;
            top: -12px;
        }
    }
}

.bag-amount {
    color: #2E0152;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);

    @media (max-width: 768px) {
        font-size: 14px;
    }
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Game Card */
.game-card {
    background: linear-gradient(135deg,
            rgba(20, 0, 44, 0.85) 0%,
            rgba(33, 1, 82, 0.85) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 104, 201, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF68C9, #2121ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 104, 201, 0.3);
    transition: transform 0.3s ease;
}

.game-card h4 {
    font-family: 'Paytone One', sans-serif;
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 16px;
}

.game-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.game-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 104, 201, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 104, 201, 0.4);
}

.game-card:hover .game-arrow {
    transform: translateX(8px) scale(1.1);
    background: rgba(255, 104, 201, 1);
    box-shadow: 0 6px 20px rgba(255, 104, 201, 0.6);
}

/* Technology Section */
.tech-section {
    margin: 40px 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .content-container {
        padding: 50px 40px;
    }

    .section-header i {
        font-size: 50px;
    }

    .content-container h2 {
        font-size: 42px;
    }

    .content-container h3 {
        font-size: 28px;
    }

    .intro-text {
        font-size: 20px !important;
        padding: 25px;
    }

    .content-container p {
        font-size: 18px;
    }

    .feature-box,
    .game-card,
    .highlight-card {
        padding: 30px;
    }

    .feature-icon,
    .game-icon {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .content-page {
        padding: 50px 15px;
    }

    .content-container {
        padding: 40px 30px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header i {
        font-size: 45px;
        margin-bottom: 15px;
    }

    .content-container h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .content-container h3 {
        font-size: 26px;
        margin-top: 6px;
        margin-bottom: 6px;
    }

    .intro-text {
        font-size: 18px !important;
        padding: 20px;
        margin-bottom: 30px !important;
    }

    .content-container p {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .feature-grid,
    .games-grid,
    .tech-grid,
    .highlights-grid {
        gap: 20px;
    }

    .feature-box,
    .game-card,
    .highlight-card,
    .tech-item {
        padding: 25px;
    }

    .feature-icon,
    .game-icon {
        font-size: 45px;
        margin-bottom: 15px;
    }

    .game-card h4 {
        font-size: 18px;
    }

    .tech-item {
        padding: 20px;
    }

    .tech-item i {
        font-size: 35px;
    }

    .tech-item span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content-page {
        padding: 3px 10px;
    }

    .content-container {
        padding: 30px 20px;
    }

    .section-header i {
        font-size: 40px;
    }

    .content-container h2 {
        font-size: 32px;
    }

    .content-container h3 {
        font-size: 24px;
    }

    .intro-text {
        font-size: 17px !important;
        padding: 18px;
    }

    .feature-grid,
    .games-grid {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 15px;
        padding-left: 15px;
        gap: 12px;
    }

    .feature-box::before {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        bottom: auto;
    }

    .feature-box:hover {
        transform: translateY(-2px);
        padding: 20px 15px;
        padding-left: 15px;
    }

    .feature-box:hover::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .feature-icon,
    .game-icon {
        font-size: 40px;
        margin-bottom: 0px;
        width: 60px;
        height: 60px;
    }

    .feature-content {
        text-align: center;
    }

    .feature-box h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

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

    .audience-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-item {
        padding: 15px;
    }

    .tech-item i {
        font-size: 30px;
    }

    .tech-item span {
        font-size: 15px;
    }
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tech-item {
    background: rgba(46, 1, 82, 0.6);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 104, 201, 0.3);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 104, 201, 0.3);
    transform: translateX(10px);
    box-shadow: -5px 5px 20px rgba(255, 104, 201, 0.3);
}

.tech-item i {
    font-size: 40px;
    color: #FF68C9;
}

.tech-item span {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
}

/* Tech Highlights */
.tech-highlights {
    margin-top: 50px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.highlight-card {
    background: rgba(255, 104, 201, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 104, 201, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 104, 201, 0.25);
    box-shadow: 0 20px 40px rgba(255, 104, 201, 0.4);
}

.highlight-card i {
    font-size: 50px;
    color: #FF68C9;
    margin-bottom: 20px;
    display: block;
}

.highlight-card h4 {
    font-family: 'Paytone One', sans-serif;
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.highlight-card p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

/* Syndicate Section */
.syndicate-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.syndicate-visual {
    flex: 0 0 200px;
    text-align: center;
}

.syndicate-visual i {
    color: #FF68C9;
    font-size: 100px;
    filter: drop-shadow(0 10px 30px rgba(255, 104, 201, 0.5));
    transition: transform 0.3s ease;
}

.syndicate-visual:hover i {
    transform: scale(1.1);
}

.syndicate-text {
    flex: 1;
}

.syndicate-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.syndicate-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 104, 201, 0.1);
}

.benefit-item:hover {
    background: rgba(255, 104, 201, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 104, 201, 0.2);
}

.benefit-item i {
    color: #FF68C9;
    font-size: 20px;
}

.benefit-item span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
    text-align: center;
}

.info-box {
    background: rgba(255, 104, 201, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 104, 201, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 104, 201, 0.25);
    box-shadow: 0 15px 35px rgba(255, 104, 201, 0.4);
}

.info-box i {
    font-size: 50px;
    color: #FF68C9;
    margin-bottom: 20px;
    display: block;
}

.info-box h4 {
    font-family: 'Paytone One', sans-serif;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.info-box a {
    font-size: 24px;
    color: #FF68C9;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 15px;
}

.info-box a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 104, 201, 0.8);
}

.info-box p {
    font-size: 18px;
    color: #FFFFFF;
    margin: 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
    background: rgba(255, 104, 201, 0.1);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid rgba(255, 104, 201, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.form-group label i {
    margin-right: 10px;
    color: #FF68C9;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #FF68C9;
    border-radius: 15px;
    padding: 18px 25px;
    font-family: 'League Spartan', sans-serif;
    font-size: 18px;
    color: #2E0152;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 104, 201, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E0152;
    background: #FFFFFF;
    box-shadow: 0 8px 25px rgba(46, 1, 82, 0.3);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, #FF68C9 0%, #2E0152 100%);
    border: none;
    border-radius: 50px;
    padding: 20px 60px;
    font-family: 'Paytone One', sans-serif;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 104, 201, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    align-self: center;
    position: relative;
    overflow: hidden;
}

.submit-btn i {
    margin-right: 15px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 104, 201, 0.6);
    background: linear-gradient(135deg, #2E0152 0%, #FF68C9 100%);
}

/* Back to Top Button */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #FF68C9, #2121ff);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(255, 104, 201, 0.55);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 99;
}

.back-to-top:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 26px rgba(255, 104, 201, 0.7);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    50% {
        transform: translateY(-100px) scale(1.5);
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 104, 201, 0.5);
    }

    50% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 104, 201, 0.8);
    }
}

@media (max-width: 1100px) {
    .header-inner {
        padding: 13px 24px;
    }

    .nav-btn {
        font-size: 12px;
        padding: 8px 13px;
    }
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 560px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    html {
        background-image: url('images/LottoMobile.png') !important;
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    body {
        background-image: url('images/LottoMobile.png') !important;
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        margin: 0;
        padding: 0;
    }

    .nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 0;
        right: -100%;
        width: 275px;
        height: 100dvh;
        background: rgba(20, 0, 44, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px;
        gap: 8px;
        transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
        box-shadow: -6px 0 36px rgba(0, 0, 0, 0.55);
        overflow-y: auto;
        border-left: 1px solid rgba(255, 104, 201, 0.15);
    }

    .nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-close {
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 20px;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: background 0.2s, color 0.2s;
    }

    .nav-close:hover {
        background: rgba(255, 104, 201, 0.2);
        color: #FF68C9;
    }

    .nav.open {
        right: 0;
    }

    .nav-btn {
        text-align: left;
        border-radius: 12px;
        padding: 14px 18px;
        font-size: 14px;
        width: 100%;
        border-color: rgba(255, 255, 255, 0.12);
    }

    .nav-btn:hover,
    .nav-btn.active {
        background: rgba(255, 104, 201, 0.18);
        border-color: #FF68C9;
        color: #FF68C9;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-section {
        padding: 140px 24px 72px;
        min-height: 46vh;
    }

    .hero-title {
        letter-spacing: 4px;
    }

    /* Stats */
    .stats-section {
        padding: 70px 0;
    }

    .stats-title {
        margin-bottom: 44px;
        letter-spacing: 2px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 480px;
    }

    /* Footer */
    .footer {
        padding-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }


    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 12px 16px;
    }

    .logo {
        height: 40px;
    }

    .hero-section {
        padding: 120px 16px 60px;
        min-height: 42vh;
    }

    .hero-title {
        letter-spacing: 2px;
    }

    .hero-title::after {
        width: 56px;
        height: 3px;
        margin-top: 14px;
    }

    .details-section {
        padding: 20px 0;
    }

    .detail-card {
        padding: 36px 0;
        gap: 26px;
    }

    .detail-img {
        max-width: 300px;
    }

    .stats-section {
        padding: 23px 0;
    }

    .stats-title {
        letter-spacing: 1px;
        margin-bottom: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }

    .stat-box {
        padding: 26px 12px;
        border-radius: 12px;
    }

    .stat-box p {
        font-size: 12px;
        letter-spacing: 0;
    }

    .footer {
        padding-top: 40px;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-grid {
        gap: 26px;
    }

    .back-to-top {
        bottom: 18px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 650px) {
    .footer {
        padding-top: 35px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        flex: 0 0 auto;
        justify-content: center;
    }

    .footer-links-col {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-logo {
        height: 38px;
    }

    .footer-heading {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .copyright {
        font-size: 12px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 6px;
    }

    .footer-legal a {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 40px;
        letter-spacing: 1px;
    }

    .stats-grid {
        gap: 10px;
    }

    .stat-box {
        padding: 20px 8px;
    }

    .stat-num {
        font-size: 30px;
    }

    .container {
        padding: 0 12px;
    }

    @media (max-width: 768px) {
        body {
            overflow-x: hidden;
        }

        .content-page {
            padding: 40px 15px;
        }

        .content-container {
            padding: 40px 30px;
        }

        .content-container h2 {
            font-size: 36px;
        }

        .content-container h3 {
            font-size: 26px;
        }

        .content-container p {
            font-size: 18px;
        }

        .feature-grid,
        .games-grid {
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .feature-box {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
            padding-left: 20px;
            gap: 16px;
        }

        .feature-box::before {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            bottom: auto;
        }

        .feature-box:hover {
            transform: translateY(-4px);
            padding: 25px 20px;
            padding-left: 20px;
        }

        .feature-box:hover::before {
            left: 50%;
            transform: translateX(-50%);
        }

        .feature-icon,
        .game-icon {
            font-size: 45px;
            margin-bottom: 0px;
            width: 70px;
            height: 70px;
        }

        .feature-content {
            text-align: center;
        }

        .game-card h4 {
            font-size: 22px;
        }

        .footer {
            padding-top: 50px;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }


        .footer-bottom-inner {
            flex-direction: column;
            text-align: center;
            gap: 8px;
        }

        .back-to-top {
            width: 50px;
            height: 50px;
            font-size: 20px;
            bottom: 20px;
            right: 20px;
        }
    }


    @media (max-width: 360px) {

        /* GLOBAL */
        html,
        body {
            width: 100%;
            overflow-x: hidden;
        }

        /* HEADER */
        .logo {
            max-width: 120px;
        }

        .background-container {
            background-size: contain;
            background-position: top center;
            min-height: 100vh;
        }

        .nav-button {
            padding: 8px 14px;
            font-size: 11px;
        }

        /* HERO TEXT */
        .lottery-text {
            font-size: 24px;
            line-height: 1.2;
        }

        .launch-text {
            font-size: 18px;
            padding: 8px 25px;
            letter-spacing: 1px;
        }

        /* CAROUSEL */
        .carousel-container {
            height: 180px;
        }

        /* CONTENT TEXT */
        .content-container h2 {
            font-size: 30px;
        }

        .content-container h3 {
            font-size: 22px;
        }

        .content-container p {
            font-size: 16px;
        }

        /* BUTTONS */
        .submit-btn {
            font-size: 18px;
            padding: 14px 40px;
        }
    }

    @media (max-width: 300px) {

        /* NAV */
        .nav-container {
            flex-direction: column;
            gap: 8px;
        }

        .nav-button {
            width: 100%;
            text-align: center;
            padding: 8px 10px;
            font-size: 10px;
        }

        /* HERO */
        .lottery-text {
            font-size: 20px;
        }

        .launch-text {
            font-size: 16px;
            padding: 6px 18px;
        }

        /* CAROUSEL (SMALLEST SAFE SIZE) */
        .carousel-container {
            height: 150px;
        }

        .carousel-btn {
            width: 32px;
            height: 32px;
            font-size: 14px;
        }

        /* PARTNERS */
        .partner-image {
            max-width: 110px;
            height: 50px;
        }

        /* FORMS */
        .form-group input,
        .form-group textarea {
            font-size: 15px;
            padding: 14px 18px;
        }

        .submit-btn {
            font-size: 16px;
            padding: 12px 30px;
        }
    }


    /* @media (max-width: 768px) {
    .carousel-container {
        max-width: 95%;
    }
} */


    @media (max-width: 768px) {

        .background-container,
        .content-page {
            background-attachment: scroll;
        }
    }

    /* Grid */
    .platform-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 40px;
    }

    /* Card */
    .platform-card {
        position: relative;
        height: 420px;
        border-radius: 12px;
        overflow: hidden;
        transition: 0.3s ease;
    }

    /* Overlay */
    .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
    }

    /* Content */
    .platform-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: #fff;
        padding: 20px;
        transition: 0.3s ease;
    }

    /* Icon */
    .platform-icon {
        width: 60px;
        height: 60px;
        background: #fff;
        color: orange;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-size: 26px;
    }

    /* Hover Box */
    .hover-box {
        position: absolute;
        inset: 1px;
        border: 2px solid #ff8c1a;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: scale(0.9);
        transition: all 0.3s ease;
        z-index: 3;
    }

    /* Button */
    .read-more-btn {
        background: #ff8c1a;
        color: #fff;
        border: none;
        padding: 12px 28px;
        border-radius: 25px;
        font-size: 14px;
        cursor: pointer;
    }

    /* Hover Effects */
    .platform-card:hover .hover-box {
        opacity: 1;
        transform: scale(1);
    }

    .platform-card:hover .platform-content {
        opacity: 0.2;
    }

    .platform-card:hover {
        transform: translateY(-6px);
    }

    /* Optional Blur Effect */
    .hover-box {
        backdrop-filter: blur(3px);
    }

    /* Responsive */
    @media (max-width: 900px) {
        .platform-grid {
            grid-template-columns: 1fr;
        }
    }

    .games-visual {
        position: relative;
        width: 450px;
        height: 450px;
        margin: auto;
    }

    /* Center Circle */
    .circle-center {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 140px;
        height: 140px;
        background: #f4a940;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 22px;
        font-weight: bold;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Common Item Style */
    .circle-item {
        position: absolute;
        width: 90px;
        height: 90px;
        background: #f4a940;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        font-size: 12px;
        transition: 0.3s;
    }

    .circle-item i {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .circle-item:hover {
        transform: scale(1.1);
    }

    /* Positioning Around Circle */
    .top {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .right {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .bottom-right {
        bottom: 30px;
        right: 30px;
    }

    .bottom {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .bottom-left {
        bottom: 30px;
        left: 30px;
    }

    .left {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Experience Section */
    .experience-section {
        position: relative;
        min-height: 100vh;
        background-image: url('images/bgcontent.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 100px 20px;
    }

    .experience-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .experience-section .content-container {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 1200px;
        width: 100%;
    }

    .experience-title {
        font-size: 48px;
        font-weight: bold;
        color: #f4a940;
        margin-bottom: 60px;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .stats {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1;
        min-width: 130px;
        text-align: center;
    }

    .stat-box h3 {
        font-size: 72px;
        font-weight: bold;
        color: white;
        margin-bottom: 15px;
        line-height: 1;
    }

    .stat-box h3 span {
        font-size: 36px;
        vertical-align: super;
    }

    .stat-box h3 span.small {
        font-size: 24px;
        vertical-align: super;
    }

    .stat-box p {
        font-size: 18px;
        color: white;
        margin: 0;
        line-height: 1.4;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .experience-title {
            font-size: 36px;
            margin-bottom: 40px;
        }

        .stats {
            flex-direction: column;
            gap: 40px;
        }

        .stat-box h3 {
            font-size: 56px;
        }

        .stat-box h3 span {
            font-size: 28px;
        }

        .stat-box h3 span.small {
            font-size: 20px;
        }

        .stat-box p {
            font-size: 16px;
        }
    }

    @media (max-width: 480px) {
        .experience-section {
            padding: 60px 15px;
        }

        .experience-title {
            font-size: 28px;
        }

        .stat-box h3 {
            font-size: 48px;
        }

        .stat-box h3 span {
            font-size: 24px;
        }

        .stat-box h3 span.small {
            font-size: 18px;
        }
    }

    /* LOTTERY FEATURES RESPONSIVE */
    @media (max-width: 1024px) {
        .lottery-features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .lottery-features-grid {
            grid-template-columns: 1fr;
        }

        .lottery-feature-card {
            flex-direction: column;
            align-items: flex-start;
        }

        .lottery-feature-icon {
            margin-bottom: 10px;
        }
    }
}