/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #e31e24;
    --dark-bg: #000;
    --card-bg: #1a1a1a;
    --border-color: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-glow: rgba(227, 30, 36, 0.5);
}

body {
    font-family: sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-igaming,
.logo-knightslots {
    height: 40px; /* Adjust as needed */
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--primary-red);
}

.logo-tagline {
    font-size: 12px;
    color: var(--text-secondary);
    font-style: italic;
}

.nav {
    display: flex;
    gap: 15px;
}

.login-btn{
    display: flex;
    width: 160px;
    height: 40px;
    padding: 14.9px 26.293px;
    justify-content: center;
    align-items: center;
    gap: 8.764px;
    border-radius: 4.382px;
    border: 1.753px solid #FFF;
    background-color: #000;
    color: #FFF;
}

.join-btn{
    display: flex;
    width: 160px;
    height: 40px;
    padding: 14.9px 26.293px;
    justify-content: center;
    align-items: center;
    gap: 8.764px;
    flex-shrink: 0;
    border-radius: 4.382px;
    background: var(--Red, #D60000);
    color: #FFF;
    border: none;
}

.divider{
    width: 1580px;
    height: 2px;
    flex-shrink: 0;
    background: radial-gradient(50% 50% at 50% 50%, #8D8D8D 0%, rgba(50, 49, 49, 0.00) 100%);
}

.hero {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    /* background: url('img/hero-bg1.png'); */
    /* background-size: contain;
    background-position: center;
    background-repeat: no-repeat; */
}

.hero-bg{
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    width: -webkit-fill-available;
}

.hero-content {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 60px 0 30px 0;
}

.hero-card{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    border: 1px solid #D60000;
    border-radius: 20px;
    padding: 20px;
    gap: 20px;
}

.hero-subtitle {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.hero-description {
    color: #FFF;
    font-family: Inter;
    font-size: 21.78px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.bonus-btn{
    display: flex;
    width: 95%;
    height: 45px;
    padding: 23.62px 41.683px;
    justify-content: center;
    align-items: center;
    gap: 13.894px;
    flex-shrink: 0;
    background-color: #D60000;
    color: #FFFFFF;
    border-radius: 6.9472px;
    border: none;
    font-size: 19.4521px;
    cursor: pointer;
}

.hero-terms {
    color: #FFF;
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 335px;
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-svg{
    width: 300px;
}

/* Section Styles */
.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background: var(--dark-bg);
}

.reviews-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.testimonials-carousel {
    position: relative;
    margin-top: 50px;
    width: 100%;
}

.testimonial-nav {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 2;
}

.testimonial-nav:hover {
    transform: scale(1.1);
}

.testimonial-nav img {
    width: 35px;
    height: 35px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(94%) saturate(7151%) hue-rotate(358deg) brightness(91%) contrast(118%);
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}

.testimonial-card {
    display: flex;
    width: 23%;
    height: 220px;
    padding: 21px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #000;
    box-shadow: 0 0 37px 0 rgba(214, 0, 0, 0.50) inset;
}

.testimonial-name {
    color: var(--primary-red);
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
    text-align: center;
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonials-carousel {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-nav {
        position: static;
        order: 2;
    }
    
    .testimonials-track {
        order: 1;
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }
    
    .testimonial-card {
        flex: none;
        width: 100%;
        min-height: auto;
        padding: 20px 15px;
    }
    
    .testimonial-name {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .testimonial-nav img {
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .testimonials-track {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Features Section */
.features {
    padding: 30px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 20px;
    border: 3px solid #D60000;
    opacity: 0.8;
    background: #1C1111;
    mix-blend-mode: difference;
    backdrop-filter: blur(50.5px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
}

/* Big Wins Section */
.big-wins {
    padding: 30px 0;
    background: var(--dark-bg);
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.win-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    cursor: pointer;
}

.game-image {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
}

.game-image img {
    width: 253px;
    height: 251px;
    flex-shrink: 0;
    aspect-ratio: 253/251;
}

.win-amount {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.win-line{
    width: 260px;
    height: 2px;
    flex-shrink: 0;
    background: radial-gradient(50% 50% at 50% 50%, #D60000 0%, rgba(214, 0, 0, 0.00) 100%);
}

.win-location {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.win-date {
    color: #929292;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* CTA Banner */
.cta-banner {
    padding: 30px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.flare-image{
    position: absolute;
    left: -80px;
    top: -50px;
    width: 200px;
    height: 200px;
    aspect-ratio: 64/179;
}

.cta-characters {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-characters::before {
    /* Remove the emoji content */
    content: none;
}

.cta-characters img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.cta-text h3 {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.cta-text p {
    color: #7D7D7D;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.play-btn{
    display: flex;
    width: 235px;
    height: 47px;
    padding: 23.62px 41.683px;
    justify-content: center;
    align-items: center;
    gap: 13.894px;
    border-radius: 6.947px;
    background-color: #D60000;
    border: none;
    color: #FFF;
    font-size: 19.452px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
}

/* About Section */
.about {
    padding: 30px 0;
    background: var(--dark-bg);
}

.about-description {
    color: #929292;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 auto 50px;
}

.about-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.about-card {
    width: 310px;
    height: 276px;
    flex-shrink: 0;
    position: relative;
    background: url('img/about-us-rect.svg') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    opacity: 0.8;
    mix-blend-mode: difference;
    backdrop-filter: blur(50.5px);
    gap: 10px;
    cursor: pointer;
}

.about-card-icon {
    width: 180px;
    height: 180px;
    display: block;
    position: absolute;
    top: -57px;
}

.about-title {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.about-text {
    width: 262px;
    color: #DEDEDE;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* Providers Section */
.providers {
    padding: 30px 0 60px 0;
}

.providers-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.providers-image-content{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.providers-card{
    display: flex;
    gap: 5px;
}

.providers-image {
    width: 100%;
    height: auto;
}

.providers-image-svg{
    background-color: #191919;
    border-radius: 9px;
    padding: 0 42px;
}

.providers-image-svg1{
    background-color: #191919;
    border-radius: 9px;
    padding: 0 30px;
}

.left-line{
    position: absolute;
    left: -25px;
}

.right-line{
    position: absolute;
    right: -30px;
}

.flare-image-providers{
    position: absolute;
    right: 82px;
    bottom: -40px;
    width: 200px;
    height: 200px;
    aspect-ratio: 64/179;
}

/* Games Section */
.games {
    padding: 30px 0;
    background: var(--dark-bg);
}

.games-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.left-arrow{
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    aspect-ratio: 41.456/65.714;
    cursor: pointer;
}

.right-arrow{
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    aspect-ratio: 41.456/65.714;
    cursor: pointer;
}

.games-track {
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
    padding: 10px 0;
    overflow-x: auto;
}

.games-track::-webkit-scrollbar {
    height: 0px;
}

.games-track::-webkit-scrollbar-track {
    background: var(--card-bg);
    border-radius: 4px;
}

.games-track::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

.game-card {
    width: 184.052px;
    height: 196px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

/* FAQs Section */
.faqs {
    padding: 30px 0;
}

.faq-list {
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid var(--primary-red);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-red);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: #222222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-toggle {
    margin-left: auto;
    font-size: 24px;
    color: var(--primary-red);
}

.faq-answer {
    padding: 25px;
    color:#FFFFFF;
    line-height: 1.8;
    display: none;
    background: linear-gradient(264deg, #F52222 -49.5%, #010101 73.1%);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(90deg);
}

/* Mobile App Section */
.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.app-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.app-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.app-title {
    color: #FFF;
    text-align: right;
    font-size: 46px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: end;
}

.app-btn{
    display: flex;
    padding: 18px 25px;
    gap: 10px;
    width: 238.033px;
    height: 86.628px;
    flex-shrink: 0;
    border-radius: 13.076px;
    border: 1px solid #FFF;
    background-color: #090909;
    cursor: pointer;
}

.apple-icon {
    width: 38.424px;
    height: 47.412px;
    flex-shrink: 0;
}

.google-icon {
    width: 39.848px;
    height: 44.562px;
    flex-shrink: 0;
}

.app-btn-text{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn-text-p{
    color: #FFF;
    -webkit-text-stroke-color: #000;
    font-size: 11.115px;
    font-style: normal;
    font-weight: 400;
    line-height: 112.6%;
}

/* Footer */
.footer {
    background: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-text {
    color: #FFF;
    font-size: 13.721px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 250px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-logo{
    cursor: pointer;
}

.footer-heading {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-us-form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    width: 329.296px;
    height: 54.883px;
    flex-shrink: 0;
    border-radius: 11.434px;
    background: linear-gradient(97deg, #000 9.26%, #D60000 181.68%);
    gap: 10px;
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #FFF;
    font-size: 14px;
    padding: 0 15px;
    height: 100%;
}

.email-input::placeholder {
    color: #a0a0a0;
    font-size: 14px;
}

.email-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.contact-us-envelope{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 43.449px;
    height: 43.449px;
    border-radius: 5.717px;
    background: linear-gradient(247deg, #D60000 -254.06%, #000 201.74%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-us-envelope:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(214, 0, 0, 0.3);
}

.contact-us-envelope:active {
    transform: scale(0.95);
}

.envelope-icon{
    width: 33.158px;
    height: 33.158px;
    flex-shrink: 0;
}

/* Enhanced Mobile-First Responsive Design */

/* Base Mobile Styles (320px+) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* Header Mobile */
    .header {
        padding: 12px 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
    }
    
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-igaming,
    .logo-knightslots {
        height: 32px;
    }
    
    /* Mobile Navigation */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
    }
    
    .nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .login-btn, .join-btn {
        width: 100%;
        height: 44px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    /* Hero Section Mobile */
    .hero {
        margin-top: 70px;
        padding: 40px 0;
        min-height: calc(100vh - 70px);
        display: flex;
        align-items: center;
    }
    
    .hero-bg {
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-card {
        width: 100%;
        max-width: 340px;
        padding: 30px 20px;
        margin: 0 auto;
        border-radius: 16px;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
    }
    
    .hero-svg {
        width: 100%;
        height: auto;
        margin: 10px 0;
    }
    
    .hero-description {
        font-size: 18px;
        text-align: center;
        margin: 20px 0;
    }
    
    .bonus-btn {
        width: 100%;
        height: 50px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 8px;
        margin: 20px 0;
    }
    
    .hero-terms {
        font-size: 12px;
        text-align: center;
        line-height: 1.4;
        opacity: 0.8;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px;
        line-height: 1.2;
    }
    
    /* Reviews Section Mobile */
    .reviews {
        padding: 50px 0;
    }
    
    .reviews-subtitle {
        font-size: 16px;
        text-align: center;
        margin-bottom: 30px;
        opacity: 0.8;
    }
    
    .testimonials-carousel {
        position: relative;
        margin-top: 30px;
    }
    
    .testimonials-track {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .testimonial-card {
        width: 100%;
        padding: 25px 20px;
        border-radius: 16px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .testimonial-name {
        font-size: 18px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }
    
    .left-arrow, .right-arrow {
        display: none;
    }
    
    /* Features Section Mobile */
    .features {
        padding: 50px 0;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
        border-radius: 16px;
        text-align: center;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
    }
    
    .feature-card .icon-image {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }
    
    .feature-title {
        font-size: 16px;
        font-weight: 600;
    }
    
    /* Big Wins Section Mobile */
    .big-wins {
        padding: 50px 0;
    }
    
    .wins-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .win-card {
        text-align: center;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        padding: 20px;
    }
    
    .game-image {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .game-image img {
        width: 160px;
        height: 160px;
        border-radius: 12px;
    }
    
    .win-amount {
        font-size: 32px;
        font-weight: 700;
        color: #D60000;
        margin-bottom: 10px;
    }
    
    .win-line {
        width: 200px;
        height: 2px;
        margin: 15px auto;
    }
    
    .win-location {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .win-date {
        font-size: 14px;
        opacity: 0.7;
    }
    
    /* CTA Banner Mobile */
    .cta-banner {
        padding: 50px 0;
        position: relative;
        overflow: hidden;
    }
    
    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .cta-characters {
        width: 100%;
        max-width: 300px;
        order: 2;
    }
    
    .cta-text {
        order: 1;
        width: 100%;
    }
    
    .cta-text h3 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .cta-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .play-btn {
        width: 200px;
        height: 50px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .flare-image {
        display: none;
    }
    
    /* About Section Mobile */
    .about {
        padding: 50px 0;
    }
    
    .about-description {
        font-size: 16px;
        text-align: center;
        margin-bottom: 40px;
        padding: 0 20px;
        line-height: 1.6;
    }
    
    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .about-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 30px 20px;
        border-radius: 16px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        position: relative;
    }
    
    .about-card-icon {
        width: 100px;
        height: 100px;
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-title {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .about-text {
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
        width: 100%;
    }
    
    /* Providers Section Mobile */
    .providers {
        padding: 50px 0;
    }
    
    .providers-image-wrapper {
        padding: 0 20px;
    }
    
    .providers-image-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .providers-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .providers-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    .providers-image-svg,
    .providers-image-svg1 {
        width: 100%;
        height: 70px;
        border-radius: 8px;
    }
    
    .left-line,
    .right-line,
    .flare-image-providers {
        display: none;
    }
    
    /* Games Section Mobile */
    .games {
        padding: 50px 0;
    }
    
    .games-carousel {
        position: relative;
        padding: 0 20px;
    }
    
    .games-track {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .games-track::-webkit-scrollbar {
        height: 4px;
    }
    
    .games-track::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
    
    .games-track::-webkit-scrollbar-thumb {
        background: #D60000;
        border-radius: 2px;
    }
    
    .game-card {
        flex: 0 0 160px;
        height: 180px;
        border-radius: 12px;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
    }
    
    .game-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .left-arrow, .right-arrow {
        display: none;
    }
    
    /* FAQs Section Mobile */
    .faqs {
        padding: 50px 0;
    }
    
    .faq-list {
        padding: 0 20px;
    }
    
    .faq-item {
        border-radius: 12px;
        margin-bottom: 15px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        background: #D60000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: bold;
    }
    
    .faq-toggle {
        margin-left: auto;
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .faq-item.active .faq-toggle {
        transform: rotate(45deg);
    }
    
    /* Mobile App Section Mobile */
    .mobile-app {
        padding: 50px 0;
    }
    
    .app-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .app-image {
        order: 2;
        height: 250px;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .app-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .app-text {
        order: 1;
        text-align: center;
    }
    
    .app-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 30px;
    }
    
    .app-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .app-btn {
        width: 100%;
        max-width: 250px;
        height: 70px;
        padding: 15px 20px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .apple-icon, .google-icon {
        width: 35px;
        height: 35px;
    }
    
    .app-btn-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .app-btn-text-p {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-logo img {
        height: 40px;
        margin-bottom: 20px;
    }
    
    .footer-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .social-links {
        justify-content: center;
        gap: 20px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: #D60000;
        transform: translateY(-2px);
    }
    
    .footer-heading {
        font-size: 18px;
        margin-bottom: 15px;
        color: #D60000;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .contact-us-form {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        height: 50px;
        border-radius: 12px;
    }
    
    .email-input {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .contact-us-envelope {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
    
    .envelope-icon {
        width: 25px;
        height: 25px;
    }
}

/* Tablet Styles (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .header {
        padding: 16px 0;
    }
    
    .logo-igaming,
    .logo-knightslots {
        height: 36px;
    }
    
    .hero {
        margin-top: 80px;
        padding: 60px 0;
    }
    
    .hero-card {
        max-width: 400px;
        padding: 40px 30px;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    .bonus-btn {
        height: 55px;
        font-size: 19px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .wins-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .win-card:last-child {
        grid-column: 1 / -1;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .providers-card {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .app-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .app-image {
        order: 1;
    }
    
    .app-text {
        order: 2;
        text-align: left;
    }
    
    .app-title {
        font-size: 36px;
        text-align: left;
    }
    
    .app-buttons {
        justify-content: flex-start;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Small Desktop Styles (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-card {
        max-width: 500px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .wins-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .about-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .cta-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    
    .cta-text h3 {
        font-size: 28px;
    }
    
    .app-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .app-title {
        font-size: 40px;
        text-align: right;
    }
    
    .app-buttons {
        justify-content: flex-end;
    }
}

/* Touch-friendly improvements for all mobile devices */
@media (max-width: 1024px) {
    /* Increase touch targets */
    button, .btn, .app-btn, .bonus-btn, .play-btn, .login-btn, .join-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    /* Improve scrolling */
    .games-track {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Better focus states for accessibility */
    button:focus,
    input:focus,
    .app-btn:focus,
    .bonus-btn:focus,
    .play-btn:focus {
        outline: 2px solid #D60000;
        outline-offset: 2px;
    }
    
    /* Smooth transitions */
    * {
        transition: all 0.3s ease;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 30px 0;
        min-height: auto;
    }
    
    .hero-card {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .features-grid,
    .wins-grid,
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg,
    .app-image img,
    .game-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .games-track {
        scroll-behavior: auto;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #a0a0a0;
        --card-bg: #1a1a1a;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .bonus-btn,
    .play-btn,
    .app-buttons {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-card,
    .feature-card,
    .win-card,
    .about-card {
        border: 1px solid #ccc;
        background: white;
        color: black;
    }
}