/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #1B1A19;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #1B1A19;
    box-shadow: 0 5px 5px 0 rgba(0,0,0,.3);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FF9948;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(180deg,#fcb632 0,#ff7304 20%,#ff9948 79.5%,#fffaa6 100%);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 44px;
    justify-content: center;
}

.primary-btn {
    background: linear-gradient(180deg,#fcb632 0,#ff7304 20%,#ff9948 79.5%,#fffaa6 100%);
    color: #fff;
    border: none;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 153, 72, 0.3);
}

.secondary-btn {
    border: 1px solid #ff9948;
    color: #fff;
    background: #262525;
}

.secondary-btn:hover {
    background: #ff9948;
    color: #1B1A19;
    transform: translateY(-2px);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Slider Styles */
.slider-section {
    position: relative;
    overflow: hidden;
}

ul li {
    list-style: none;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(27, 26, 25, 0.8);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #FF9948;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 153, 72, 0.8);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-btn:hover {
    background: #FF9948;
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FF9948;
    transform: scale(1.2);
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.hero {
    text-align: center;
    margin-bottom: 80px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #FF9948;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

/* Sections */
.why-tk666,
.features,
.tips,
.mobile-experience,
.faq {
    margin-bottom: 80px;
}

.why-tk666 h2,
.features h2,
.tips h2,
.mobile-experience h2,
.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #FF9948;
    text-align: center;
}

.why-tk666 p,
.tips p,
.mobile-experience p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-tk666 ul,
.tips ul {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.why-tk666 li,
.tips li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.why-tk666 li::before,
.tips li::before {
    content: '•';
    color: #FF9948;
    position: absolute;
    left: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

section {
    margin-bottom: 80px;
}

.feature-card {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.feature-icon {
    font-size: 3rem;
    color: #FF9948;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FF9948;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #262525;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #333;
}

.faq-item h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.faq-item p {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Casino Images */
.casino-images {
    margin-bottom: 80px;
}

.casino-images h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #FF9948;
    text-align: center;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.image-card {
    background: #262525;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.image-card:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}


section h2, section p {
    text-align: center;
}

.feature-card i {
    font-size: 2.5rem;
    color: #FF9948;
    margin-bottom: 20px;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #FF9948;
    text-align: center;
}

.header .container {
    max-width: unset;
}

.image-card img {
    width: 100%;
    object-fit: cover;
}

.image-card h3 {
    padding: 20px;
    font-size: 1.2rem;
    color: #FF9948;
    text-align: center;
}

/* Footer */
.footer {
    background: #0f0f0f;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #FF9948;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF9948;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Links */
a {
    color: #FF9948;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    
    .header-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-nav {
        padding: 0 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .why-tk666 h2,
    .features h2,
    .tips h2,
    .mobile-experience h2,
    .faq h2,
    .casino-images h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
    
    .slider-container {
        height: 200px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-content h2 {
        font-size: 1.3rem;
    }
    
    .feature-card,
    .faq-item {
        padding: 20px;
    }
    
    .image-card h3 {
        padding: 15px;
        font-size: 1.1rem;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.faq-item,
.image-card {
    animation: fadeIn 0.6s ease-out;
}

/* Hover effects for interactive elements */
.nav-link,
.btn,
.slider-btn,
.dot {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
.btn:focus,
.slider-btn:focus,
.dot:focus {
    outline: 2px solid #FF9948;
    outline-offset: 2px;
}

/* Login Page Styles */
.login-features {
    margin-bottom: 80px;
}

.login-features h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #FF9948;
    text-align: center;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step-card {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg,#fcb632 0,#ff7304 20%,#ff9948 79.5%,#fffaa6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Mobile Features */
.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.mobile-feature {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.mobile-feature:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.mobile-feature i {
    font-size: 2.5rem;
    color: #FF9948;
    margin-bottom: 20px;
}

.mobile-feature h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.mobile-feature p {
    color: #ccc;
    line-height: 1.6;
}

/* Troubleshooting Table */
.troubleshooting-table {
    background: #262525;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    margin: 40px 0;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #FF9948;
    color: #1B1A19;
    font-weight: bold;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #333;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 20px;
    color: #fff;
}

.table-header .table-cell {
    color: #1B1A19;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.6;
}

.testimonial-author {
    color: #FF9948;
    font-weight: bold;
}

/* Mobile Menu Styles */
.nav.mobile-open {
    position: fixed;
    top: 70px;
    left: 0;
    display: block;
    right: 0;
    background: #1B1A19;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
}

.nav.mobile-open .nav-list {
    flex-direction: column;
    padding: 20px;
    gap: 0;
}

.nav.mobile-open .nav-list li {
    border-bottom: 1px solid #333;
}

.nav.mobile-open .nav-list li:last-child {
    border-bottom: none;
}

.nav.mobile-open .nav-link {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
}

/* App Page Styles */
.download-section {
    margin-bottom: 80px;
}

.download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.download-step {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.download-step:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg,#fcb632 0,#ff7304 20%,#ff9948 79.5%,#fffaa6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 20px;
}

.download-step h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.download-step p {
    color: #ccc;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.app-features {
    margin-bottom: 80px;
}

.app-bonuses {
    margin-bottom: 80px;
}

.bonus-table {
    background: #262525;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    margin: 40px 0;
}

.bonus-table .table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #FF9948;
    color: #1B1A19;
    font-weight: bold;
}

.bonus-table .table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #333;
}

.bonus-table .table-row:last-child {
    border-bottom: none;
}

.bonus-table .table-cell {
    padding: 20px;
    color: #fff;
}

.bonus-table .table-header .table-cell {
    color: #1B1A19;
}

.why-app {
    margin-bottom: 80px;
}

.why-app ul {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.why-app li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}



.why-app li::before {
    content: '•';
    color: #FF9948;
    position: absolute;
    left: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.app-summary {
    margin-bottom: 80px;
}

.app-images {
    margin-bottom: 80px;
}

/* Games Page Styles */
.games-collection {
    margin-bottom: 80px;
}

.games-categories {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 30px;
    margin: 40px 0;
}

.game-category {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg,#fcb632 0,#ff7304 20%,#ff9948 79.5%,#fffaa6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 20px;
}

.game-category h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.game-category p {
    color: #ccc;
    line-height: 1.6;
}

.popular-games {
    margin-bottom: 80px;
}

.games-table {
    background: #262525;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    margin: 40px 0;
}

.games-table .table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #FF9948;
    color: #1B1A19;
    font-weight: bold;
}

.games-table .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #333;
}

.games-table .table-row:last-child {
    border-bottom: none;
}

.games-table .table-cell {
    padding: 20px;
    color: #fff;
}

.games-table .table-header .table-cell {
    color: #1B1A19;
}

.mobile-app-section {
    margin-bottom: 80px;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.app-feature {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.app-feature:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.app-feature i {
    font-size: 2.5rem;
    color: #FF9948;
    margin-bottom: 20px;
}

.app-feature h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.app-feature p {
    color: #ccc;
    line-height: 1.6;
}

.why-choose-games {
    margin-bottom: 80px;
}

.why-choose-games ul {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.why-choose-games li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.why-choose-games li::before {
    content: '•';
    color: #FF9948;
    position: absolute;
    left: 0;
}

.player-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.game-summary {
    margin-bottom: 80px;
}

.games-images {
    margin-bottom: 80px;
}

/* Slots Page Styles */
.slots-collection {
    margin-bottom: 80px;
}

.slots-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.slot-category {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.slot-category:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.slot-providers {
    margin-bottom: 80px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.provider-card {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.provider-card h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.provider-card p {
    color: #ccc;
    line-height: 1.6;
}

.how-to-win {
    margin-bottom: 80px;
}

.top-slots-table {
    background: #262525;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    margin: 40px 0;
}

.top-slots-table .table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    background: #FF9948;
    color: #1B1A19;
    font-weight: bold;
}

.top-slots-table .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    border-bottom: 1px solid #333;
}

.top-slots-table .table-row:last-child {
    border-bottom: none;
}

.top-slots-table .table-cell {
    padding: 20px;
    color: #fff;
}

.top-slots-table .table-header .table-cell {
    color: #1B1A19;
}

.mobile-slots {
    margin-bottom: 80px;
}

.slots-summary {
    margin-bottom: 80px;
}

.slots-images {
    margin-bottom: 80px;
}

/* Bonus Page Styles */
.bonus-types {
    margin-bottom: 80px;
}

.bonus-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.bonus-category {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.bonus-category:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.bonus-category h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.bonus-category p {
    color: #ccc;
    line-height: 1.6;
}

.how-to-claim {
    margin-bottom: 80px;
}

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.claim-step {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.claim-step:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.claim-step h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.claim-step p {
    color: #ccc;
    line-height: 1.6;
}

.bonus-terms {
    margin-bottom: 80px;
}

.bonus-terms ul {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.bonus-terms li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.bonus-terms li::before {
    content: '•';
    color: #FF9948;
    position: absolute;
    left: 0;
}

.top-bonuses-table {
    background: #262525;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    margin: 40px 0;
}

.top-bonuses-table .table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #FF9948;
    color: #1B1A19;
    font-weight: bold;
}

.top-bonuses-table .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #333;
}

.top-bonuses-table .table-row:last-child {
    border-bottom: none;
}

.top-bonuses-table .table-cell {
    padding: 20px;
    color: #fff;
}

.top-bonuses-table .table-header .table-cell {
    color: #1B1A19;
}

.why-use-bonus {
    margin-bottom: 80px;
}

.bonus-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.benefit-card i {
    font-size: 2.5rem;
    color: #FF9948;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #ccc;
    line-height: 1.6;
}

.bonus-summary {
    margin-bottom: 80px;
}

.bonus-images {
    margin-bottom: 80px;
}

/* Betting Page Styles */
.how-to-start {
    margin-bottom: 80px;
}

.start-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.start-step {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.start-step:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.start-step h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.start-step p {
    color: #ccc;
    line-height: 1.6;
}

.cricket-betting {
    margin-bottom: 80px;
}

.cricket-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.cricket-feature {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.cricket-feature:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.cricket-feature i {
    font-size: 2.5rem;
    color: #FF9948;
    margin-bottom: 20px;
}

.cricket-feature h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cricket-feature p {
    color: #ccc;
    line-height: 1.6;
}

.betting-strategies {
    margin-bottom: 80px;
}

.betting-strategies ul {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.betting-strategies li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.betting-strategies li::before {
    content: '•';
    color: #FF9948;
    position: absolute;
    left: 0;
}

.betting-markets-table {
    background: #262525;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    margin: 40px 0;
}

.betting-markets-table .table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    background: #FF9948;
    color: #1B1A19;
    font-weight: bold;
}

.betting-markets-table .table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    border-bottom: 1px solid #333;
}

.betting-markets-table .table-row:last-child {
    border-bottom: none;
}

.betting-markets-table .table-cell {
    padding: 20px;
    color: #fff;
}

.betting-markets-table .table-header .table-cell {
    color: #1B1A19;
}

.why-bet-tk666 {
    margin-bottom: 80px;
}

.betting-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.betting-summary {
    margin-bottom: 80px;
}

.betting-images {
    margin-bottom: 80px;
}

/* Aviator Page Styles */
.how-to-play {
    margin-bottom: 80px;
}

.play-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.play-step {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.play-step:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.play-step h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.play-step p {
    color: #ccc;
    line-height: 1.6;
}

.aviator-features {
    margin-bottom: 80px;
}

.aviator-strategies {
    margin-bottom: 80px;
}

.aviator-strategies ul {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.aviator-strategies li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.aviator-strategies li::before {
    content: '•';
    color: #FF9948;
    position: absolute;
    left: 0;
}

.strategies-table {
    background: #262525;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    margin: 40px 0;
}

.strategies-table .table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    background: #FF9948;
    color: #1B1A19;
    font-weight: bold;
}

.strategies-table .table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    border-bottom: 1px solid #333;
}

.strategies-table .table-row:last-child {
    border-bottom: none;
}

.strategies-table .table-cell {
    padding: 20px;
    color: #fff;
}

.strategies-table .table-header .table-cell {
    color: #1B1A19;
}

.why-choose-aviator {
    margin-bottom: 80px;
}

.aviator-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.aviator-summary {
    margin-bottom: 80px;
}

.aviator-images {
    margin-bottom: 80px;
}

/* Live Casino Page Styles */
.how-live-casino-works {
    margin-bottom: 80px;
}

.live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.live-feature {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.live-feature:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.live-feature i {
    font-size: 2.5rem;
    color: #FF9948;
    margin-bottom: 20px;
}

.live-feature h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.live-feature p {
    color: #ccc;
    line-height: 1.6;
}

.popular-live-games {
    margin-bottom: 80px;
}

.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.live-game-card {
    background: #262525;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.live-game-card:hover {
    transform: translateY(-5px);
    border-color: #FF9948;
}

.game-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg,#fcb632 0,#ff7304 20%,#ff9948 79.5%,#fffaa6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 20px;
}

.live-game-card h3 {
    color: #FF9948;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.live-game-card p {
    color: #ccc;
    line-height: 1.6;
}

.live-casino-bonuses {
    margin-bottom: 80px;
}

.live-bonuses-table {
    background: #262525;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    margin: 40px 0;
}

.live-bonuses-table .table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #FF9948;
    color: #1B1A19;
    font-weight: bold;
}

.live-bonuses-table .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #333;
}

.live-bonuses-table .table-row:last-child {
    border-bottom: none;
}

.live-bonuses-table .table-cell {
    padding: 20px;
    color: #fff;
}

.live-bonuses-table .table-header .table-cell {
    color: #1B1A19;
}

.why-choose-live-casino {
    margin-bottom: 80px;
}

.why-choose-live-casino ul {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.why-choose-live-casino li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.why-choose-live-casino li::before {
    content: '•';
    color: #FF9948;
    position: absolute;
    left: 0;
}

.live-casino-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.live-casino-summary {
    margin-bottom: 80px;
}

.live-casino-images {
    margin-bottom: 80px;
}

@media (max-width: 1280px) {
    .nav.mobile-open .nav-link {
        text-align: center;
    }

    .nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
}

/* Responsive adjustments for login page */
@media (max-width: 768px) {

    section h2 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mobile-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-cell {
        padding: 15px;
    }
    
    .table-header .table-cell:first-child {
        border-bottom: 1px solid #333;
    }
    
    /* App page responsive */
    .download-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bonus-table .table-header,
    .bonus-table .table-row {
        grid-template-columns: 1fr;
    }
    
    .bonus-table .table-cell {
        padding: 15px;
    }
    
    .bonus-table .table-header .table-cell:first-child {
        border-bottom: 1px solid #333;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Games page responsive */
    .games-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .games-table .table-header,
    .games-table .table-row {
        grid-template-columns: 1fr;
    }
    
    .games-table .table-cell {
        padding: 15px;
    }
    
    .games-table .table-header .table-cell:first-child {
        border-bottom: 1px solid #333;
    }
    
    .app-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .player-testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Slots page responsive */
    .slots-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .top-slots-table .table-header,
    .top-slots-table .table-row {
        grid-template-columns: 1fr;
    }
    
    .top-slots-table .table-cell {
        padding: 15px;
    }
    
    .top-slots-table .table-header .table-cell:first-child {
        border-bottom: 1px solid #333;
    }
    
    /* Bonus page responsive */
    .bonus-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .claim-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .top-bonuses-table .table-header,
    .top-bonuses-table .table-row {
        grid-template-columns: 1fr;
    }
    
    .top-bonuses-table .table-cell {
        padding: 15px;
    }
    
    .top-bonuses-table .table-header .table-cell:first-child {
        border-bottom: 1px solid #333;
    }
    
    .bonus-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Betting page responsive */
    .start-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cricket-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .betting-markets-table .table-header,
    .betting-markets-table .table-row {
        grid-template-columns: 1fr;
    }
    
    .betting-markets-table .table-cell {
        padding: 15px;
    }
    
    .betting-markets-table .table-header .table-cell:first-child {
        border-bottom: 1px solid #333;
    }
    
    .betting-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Aviator page responsive */
    .play-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .strategies-table .table-header,
    .strategies-table .table-row {
        grid-template-columns: 1fr;
    }
    
    .strategies-table .table-cell {
        padding: 15px;
    }
    
    .strategies-table .table-header .table-cell:first-child {
        border-bottom: 1px solid #333;
    }
    
    .aviator-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Live casino page responsive */
    .live-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .live-games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .live-bonuses-table .table-header,
    .live-bonuses-table .table-row {
        grid-template-columns: 1fr;
    }
    
    .live-bonuses-table .table-cell {
        padding: 15px;
    }
    
    .live-bonuses-table .table-header .table-cell:first-child {
        border-bottom: 1px solid #333;
    }
    
    .live-casino-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Game Blocks Styles */
.hot-games,
.slots-games,
.all-games {
    margin-bottom: 80px;
}

.games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.games-header h2 {
    font-size: 2.5rem;
    color: #FF9948;
    margin: 0;
}

.games-filters,
.slots-controls,
.games-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn,
.sort-btn,
.theme-btn,
.category-btn {
    padding: 10px 20px;
    border: 1px solid #444;
    background: #262525;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover,
.sort-btn:hover,
.theme-btn:hover,
.category-btn:hover {
    border-color: #FF9948;
    color: #FF9948;
}

.filter-btn.active,
.sort-btn.active,
.theme-btn.active,
.category-btn.active {
    background: #FF9948;
    color: #1B1A19;
    border-color: #FF9948;
}

.games-grid,
.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.game-card,
.slot-card {
    background: #262525;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover,
.slot-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 153, 72, 0.3);
    border-color: #FF9948;
}

.game-image,
.slot-image {
    position: relative;
    overflow: hidden;
}

.game-image img,
.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img,
.slot-card:hover .slot-image img {
    transform: scale(1.05);
}

.game-overlay,
.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay,
.slot-card:hover .slot-overlay {
    opacity: 1;
}

.play-btn,
.demo-btn {
    padding: 12px 24px;
    background: #FF9948;
    color: #1B1A19;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.demo-btn {
    background: transparent;
    color: #FF9948;
    border: 1px solid #FF9948;
}

.play-btn:hover,
.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 72, 0.4);
}

.game-type,
.game-badge,
.game-time {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #FF9948;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.game-badge {
    background: #FF9948;
    color: #1B1A19;
    top: 10px;
    left: 10px;
    right: auto;
}

.game-time {
    top: 40px;
    right: 10px;
    background: rgba(255, 153, 72, 0.9);
    color: #1B1A19;
}

.game-info,
.slot-info {
    padding: 20px;
}

.game-info h3,
.slot-info h3 {
    color: #FF9948;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
}

.games-cta {
    text-align: center;
    margin: 40px 0;
}

.slots-controls {
    justify-content: space-between;
    align-items: center;
}

.sort-buttons,
.theme-filters,
.category-tabs,
.quick-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Responsive Game Blocks */
@media (max-width: 768px) {
    .games-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .games-filters,
    .slots-controls,
    .games-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .slots-controls {
        gap: 20px;
    }
    
    .games-grid,
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .filter-btn,
    .sort-btn,
    .theme-btn,
    .category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .games-grid,
    .slots-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .game-image,
    .slot-image {
        /* height: 180px; */
        height: auto;
        aspect-ratio: 16/9;
        background: #1B1A19;
    }

    .game-image img,
    .slot-image img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
    
    .game-info,
    .slot-info {
        padding: 15px;
    }
    
    .game-info h3,
    .slot-info h3 {
        font-size: 1rem;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
        gap: 10px;
        align-items: center;
        order: 3;
        margin-top: 15px;
    }

    .header-content {
        flex-wrap: wrap;
    }
}

/* Print styles */
@media print {
    .header,
    .slider-section,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
