/* 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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: #fff;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

p {
    margin-bottom: 1rem;
    color: #ccc;
}

a {
    color: #ff7304;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fcb632;
}

/* Buttons */
.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 44px;
    line-height: 1.2;
}

.header .container {
    max-width: unset;
}

.primary-btn {
    background: linear-gradient(180deg,#fcb632 0,#ff7304 20%,#ff9948 79.5%,#fffaa6 100%);
    box-shadow: inset 0 -1px 0 0 #ff7304,inset 0 1px 0 0 #ff7304;
    color: #fff;
}

.primary-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 115, 4, 0.4);
}

.secondary-btn {
    background: #262525;
    border: 1px solid #ff9948;
    color: #fff;
}

.secondary-btn:hover {
    background: #ff9948;
    color: #1b1a19;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: #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: 1rem 0;
}

.logo {
    height: 30px;
    width: auto;
}

.logo a {
    height: 100%;
    display: block;
}

.logo img {
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff7304;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.section-card i, .bonus-category i {
    font-size: 2rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.advantage-image {
    width: 100%;
}

.advantage-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.text-center {
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100%;
    max-height: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1b1a19 0%, #262525 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 26, 25, 0.9) 0%, rgba(38, 37, 37, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    margin-bottom: 2.5rem;
    font-size: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1.2s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInRight 1.2s ease-out 0.6s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-buttons .btn {
    transform: translateY(0);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 115, 4, 0.4);
}

/* Hero Description Section */
.hero-description {
    background: linear-gradient(135deg, #262525 0%, #1b1a19 100%);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 115, 4, 0.2);
    border-bottom: 1px solid rgba(255, 115, 4, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 115, 4, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.description-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.description-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.description-content p:hover {
    color: #fff;
    text-shadow: 0 2px 4px rgba(255, 115, 4, 0.3);
}

.description-content a {
    color: #ff7304;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.description-content a:hover {
    color: #fcb632;
    border-bottom-color: #fcb632;
}

/* Responsive adjustments for hero-description */
@media (max-width: 768px) {
    .hero-description {
        padding: 2rem 0;
    }
    
    .description-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-description {
        padding: 1.5rem 0;
    }
    
    .description-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Sections */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background: #262525;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ccc;
}

.features-list i {
    color: #ff7304;
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff7304;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Sections Grid */
.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.section-card {
    background: #1b1a19;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #ff7304;
    text-align: center;
}

.section-card h3 {
    margin-bottom: 1rem;
}

.section-card a {
    color: #ff7304;
    font-size: 1.3rem;
}

/* Games Table */
.games-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.games-table {
    width: 100%;
    border-collapse: collapse;
    background: #1b1a19;
    border-radius: 10px;
    overflow: hidden;
}

.games-table th,
.games-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ff7304;
}

.games-table th {
    background: #ff7304;
    color: #fff;
    font-weight: bold;
}

.games-table tr:hover {
    background: #262525;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1b1a19;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid #ff7304;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #262525;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    color: #fff;
}

.faq-question i {
    color: #ff7304;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #ff7304, #fcb632);
    text-align: center;
}

.final-cta h2 {
    color: #fff;
    font-size: 2.5rem;
}

.final-cta p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #1b1a19;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ff7304;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
}

.footer-section ul li a:hover {
    color: #ff7304;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    color: #ff7304;
}

.footer-bottom {
    border-top: 1px solid #ff7304;
    padding-top: 2rem;
    text-align: center;
}

.responsible-gaming {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1280px) {
    .nav {
        display: none;
    }

    .nav-menu a {
        text-align: center;
    }
    
    .burger-menu {
        display: flex;
    }
}

@media (max-width: 768px) {
    
    .hero {
        height: 70vh;
        margin-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .sections-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .games-table {
        font-size: 0.9rem;
    }
    
    .games-table th,
    .games-table td {
        padding: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header .header-content {
        flex-wrap: wrap;
    }

    .header-buttons {
        width: 100%;
        margin-top: 10px;
        gap: 10px;
        order: 3;
        justify-content: center;
    }

    .header-buttons .btn {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    
    .section {
        padding: 2rem 0;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .section-card {
        padding: 1.5rem;
    }
}

/* Mobile Menu */
.nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1b1a19;
    box-shadow: 0 5px 5px 0 rgba(0,0,0,.3);
}

.nav.active .nav-menu {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
}

.nav.active .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ff7304;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
a:focus {
    outline: 2px solid #ff7304;
    outline-offset: 2px;
}

/* Loading states */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Hover effects for interactive elements */
.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
    transition: all 0.3s ease;
}

/* Login Page Specific Styles */
.login-hero {
    background: linear-gradient(135deg, #1b1a19, #262525);
    height: 70vh;
}

.login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.login-step {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.login-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #ff7304;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.mobile-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff7304;
    font-weight: bold;
}

.feature i {
    font-size: 1.5rem;
}

.mobile-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #ff7304;
}

.troubleshooting-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.troubleshooting-table {
    width: 100%;
    border-collapse: collapse;
    background: #1b1a19;
    border-radius: 10px;
    overflow: hidden;
}

.troubleshooting-table th,
.troubleshooting-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ff7304;
}

.troubleshooting-table th {
    background: #ff7304;
    color: #fff;
    font-weight: bold;
}

.troubleshooting-table tr:hover {
    background: #262525;
}

.login-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.benefit i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.benefit h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.benefit p {
    color: #ccc;
}

/* Responsive adjustments for login page */
@media (max-width: 768px) {
    .mobile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-features {
        justify-content: center;
    }
    
    .login-steps {
        grid-template-columns: 1fr;
    }
    
    .login-benefits {
        grid-template-columns: 1fr;
    }
}

/* APP Page Specific Styles */
.app-hero {
    background: linear-gradient(135deg, #1b1a19, #262525);
    height: 70vh;
}

.download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.download-step {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.download-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.feature-item i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #ccc;
}

.bonuses-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.bonuses-table {
    width: 100%;
    border-collapse: collapse;
    background: #1b1a19;
    border-radius: 10px;
    overflow: hidden;
}

.bonuses-table th,
.bonuses-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ff7304;
}

.bonuses-table th {
    background: #ff7304;
    color: #fff;
    font-weight: bold;
}

.bonuses-table tr:hover {
    background: #262525;
}

.app-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.advantage {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.advantage i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.advantage h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.advantage p {
    color: #ccc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.review {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.stars {
    color: #fcb632;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review p {
    color: #ccc;
    font-style: italic;
    margin-bottom: 1rem;
}

.review h4 {
    color: #ff7304;
    font-weight: bold;
}

/* Responsive adjustments for app page */
@media (max-width: 768px) {
    .download-steps {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .app-advantages {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Games Page Specific Styles */
.games-hero {
    background: linear-gradient(135deg, #1b1a19, #262525);
    height: 70vh;
}

.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.game-category {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: #ff7304;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.game-category h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.game-category p {
    color: #ccc;
}

.games-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.games-advantages .advantage {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.games-advantages .advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.games-advantages .advantage i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.games-advantages .advantage h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.games-advantages .advantage p {
    color: #ccc;
}

/* Responsive adjustments for games page */
@media (max-width: 768px) {
    .games-categories {
        grid-template-columns: 1fr;
    }
    
    .games-advantages {
        grid-template-columns: 1fr;
    }
}

/* Slots Page Specific Styles */
.slots-hero {
    background: linear-gradient(135deg, #1b1a19, #262525);
    height: 70vh;
}

.slots-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.slot-category {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.slot-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.provider {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.provider:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.provider h3 {
    color: #ff7304;
    margin-bottom: 1rem;
}

.provider p {
    color: #ccc;
}

.winning-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tip {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.tip i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.tip h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.tip p {
    color: #ccc;
}

.slots-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.slots-table {
    width: 100%;
    border-collapse: collapse;
    background: #1b1a19;
    border-radius: 10px;
    overflow: hidden;
}

.slots-table th,
.slots-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ff7304;
}

.slots-table th {
    background: #ff7304;
    color: #fff;
    font-weight: bold;
}

.slots-table tr:hover {
    background: #262525;
}

/* Responsive adjustments for slots page */
@media (max-width: 768px) {
    .slots-categories {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .winning-tips {
        grid-template-columns: 1fr;
    }
}

/* Bonus Page Specific Styles */
.bonus-hero {
    background: linear-gradient(135deg, #1b1a19, #262525);
    height: 70vh;
}

.bonus-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-category {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.bonus-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.claim-step {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.claim-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.term-item {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.term-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.term-item i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.term-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.term-item p {
    color: #ccc;
}

.bonus-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-benefits .benefit {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.bonus-benefits .benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.bonus-benefits .benefit i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.bonus-benefits .benefit h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.bonus-benefits .benefit p {
    color: #ccc;
}

/* Responsive adjustments for bonus page */
@media (max-width: 768px) {
    .bonus-categories {
        grid-template-columns: 1fr;
    }
    
    .claim-steps {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-benefits {
        grid-template-columns: 1fr;
    }
}

/* Betting Page Specific Styles */
.betting-hero {
    background: linear-gradient(135deg, #1b1a19, #262525);
    height: 70vh;
}

.betting-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.betting-step {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.betting-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.cricket-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.cricket-features .feature {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    flex-direction: column;
    transition: all 0.3s ease;
}

.cricket-features .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.cricket-features .feature i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.cricket-features .feature h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.cricket-features .feature p {
    color: #ccc;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.strategy {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.strategy:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.strategy i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.strategy h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.strategy p {
    color: #ccc;
}

.markets-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.markets-table {
    width: 100%;
    border-collapse: collapse;
    background: #1b1a19;
    border-radius: 10px;
    overflow: hidden;
}

.markets-table th,
.markets-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ff7304;
}

.markets-table th {
    background: #ff7304;
    color: #fff;
    font-weight: bold;
}

.markets-table tr:hover {
    background: #262525;
}

.betting-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.betting-advantages .advantage {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.betting-advantages .advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.betting-advantages .advantage i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.betting-advantages .advantage h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.betting-advantages .advantage p {
    color: #ccc;
}

/* Responsive adjustments for betting page */
@media (max-width: 768px) {
    .betting-steps {
        grid-template-columns: 1fr;
    }
    
    .cricket-features {
        grid-template-columns: 1fr;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .betting-advantages {
        grid-template-columns: 1fr;
    }
}

/* Aviator Page Specific Styles */
.aviator-hero {
    background: linear-gradient(135deg, #1b1a19, #262525);
    height: 70vh;
}

.aviator-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.aviator-step {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.aviator-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.strategies-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.strategies-table {
    width: 100%;
    border-collapse: collapse;
    background: #1b1a19;
    border-radius: 10px;
    overflow: hidden;
}

.strategies-table th,
.strategies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ff7304;
}

.strategies-table th {
    background: #ff7304;
    color: #fff;
    font-weight: bold;
}

.strategies-table tr:hover {
    background: #262525;
}

.aviator-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.aviator-benefits .benefit {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.aviator-benefits .benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.aviator-benefits .benefit i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.aviator-benefits .benefit h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.aviator-benefits .benefit p {
    color: #ccc;
}

/* Responsive adjustments for aviator page */
@media (max-width: 768px) {
    .aviator-steps {
        grid-template-columns: 1fr;
    }
    
    .aviator-benefits {
        grid-template-columns: 1fr;
    }
}

/* Live Casino Page Specific Styles */
.live-casino-hero {
    background: linear-gradient(135deg, #1b1a19, #262525);
    height: 70vh;
}

.how-live-casino-works {
    padding: 4rem 0;
    background: #1b1a19;
}

.live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.live-features .feature {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    flex-direction: column;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.live-features .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.live-features .feature i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.popular-live-games {
    padding: 4rem 0;
    background: #262525;
}

.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.live-game {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.live-game:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.game-icon {
    width: 80px;
    height: 80px;
    background: #ff7304;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.live-casino-bonuses {
    padding: 4rem 0;
    background: #1b1a19;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-item {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.bonus-item i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

.why-choose-live-casino {
    padding: 4rem 0;
    background: #262525;
}

.live-casino-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.live-casino-advantages .advantage {
    text-align: center;
    padding: 2rem;
    background: #1b1a19;
    border-radius: 10px;
    border: 1px solid #ff7304;
    transition: all 0.3s ease;
}

.live-casino-advantages .advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 115, 4, 0.2);
}

.live-casino-advantages .advantage i {
    font-size: 3rem;
    color: #ff7304;
    margin-bottom: 1rem;
}

/* Responsive adjustments for live casino page */
@media (max-width: 768px) {
    .live-features {
        grid-template-columns: 1fr;
    }
    .live-games-grid {
        grid-template-columns: 1fr;
    }
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    .live-casino-advantages {
        grid-template-columns: 1fr;
    }
}

/* New Image Styles for Categories */
.category-image,
.feature-image,
.section-image,
.step-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-image img,
.feature-image img,
.section-image img,
.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-image:hover img,
.feature-image:hover img,
.section-image:hover img,
.step-image:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for images */
@media (max-width: 768px) {
    .category-image,
    .feature-image,
    .section-image,
    .step-image {
        height: 150px;
    }
}

/* Responsive adjustments for hero */
@media (max-width: 768px) {
    .hero {
        max-height: 800px;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        max-height: 700px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
}
