/* 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: #212121;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #191919;
    border-bottom: 1px solid #ffeb00;
    position: sticky;
    top: 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;
}

.nav-link:hover,
.nav-link.active {
    color: #ffeb00;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

/* Button Styles */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-btn {
    background: linear-gradient(180deg, #fffad5, #ccaf11 48%, #ffeb00);
    color: #000;
    border: 1px solid #ff0;
}

.primary-btn:hover {
    transform: translateY(-2px);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 235, 0, 0.4);
}

.secondary-btn {
    background: linear-gradient(180deg, #d8d8d8, #5a5a5a 51%, #c3c3c3);
    color: #fff;
    border: 1px solid #fff;
}

.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

header .container {
    max-width: unset;
}

/* Slider Styles */
/* Notice Marquee Section */
.notice-marquee-section {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.slider-section {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.slider-section .slider-container {
    border-radius: 10px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.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;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #ffeb00;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.arrow {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.arrow:hover {
    background: rgba(255, 235, 0, 0.8);
    color: #000;
}

/* Main Content */
.main {
    padding: 40px 0;
}

.hero {
    margin-bottom: 80px;
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffeb00;
    text-align: left;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.section-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Sections */
.why-choose,
.popular-games,
.bonuses,
.trust {
    margin-bottom: 80px;
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #444;
}

.why-choose:first-of-type {
    border-top: none;
}

.why-choose h2,
.popular-games h2,
.bonuses h2,
.trust h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffeb00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 15px;
}

.why-choose h2::after,
.popular-games h2::after,
.bonuses h2::after,
.trust h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffeb00, transparent);
}

.advantages-list {
    list-style: none;
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

.advantages-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.advantages-list i {
    color: #ffeb00;
    width: 20px;
}

/* Tables */
.games-table,
.bonuses-table {
    margin: 30px 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

th {
    background-color: #ffeb00;
    color: #000;
    font-weight: 600;
}

td {
    color: #fff;
}

td i {
    color: #ffeb00;
    margin-right: 8px;
}

/* FAQ */
.faq {
    margin-bottom: 80px;
    padding: 60px 0;
    border-top: 1px solid #444;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffeb00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 15px;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffeb00, transparent);
}

/* Additional section styles */
.login-process,
.download-process,
.app-features,
.app-bonuses,
.why-play,
.games-collection,
.mobile-app,
.discover-slots,
.providers,
.how-to-win,
.strategies,
.bonus-types,
.how-to-claim,
.bonus-terms,
.why-use-bonus,
.how-to-start,
.cricket-betting,
.why-bet,
.how-to-play,
.aviator-features,
.how-it-works,
.popular-games,
.live-bonuses,
.troubleshooting,
.why-login,
.final-cta {
    margin-bottom: 80px;
    padding: 60px 0;
    border-top: 1px solid #444;
}

.login-process:first-of-type,
.download-process:first-of-type,
.app-features:first-of-type,
.games-collection:first-of-type,
.discover-slots:first-of-type,
.bonus-types:first-of-type,
.how-to-start:first-of-type,
.how-to-play:first-of-type,
.how-it-works:first-of-type {
    border-top: none;
}

/* Section headings */
.login-process h2,
.download-process h2,
.app-features h2,
.app-bonuses h2,
.why-play h2,
.games-collection h2,
.mobile-app h2,
.discover-slots h2,
.providers h2,
.how-to-win h2,
.strategies h2,
.bonus-types h2,
.how-to-claim h2,
.bonus-terms h2,
.why-use-bonus h2,
.how-to-start h2,
.cricket-betting h2,
.why-bet h2,
.how-to-play h2,
.aviator-features h2,
.how-it-works h2,
.popular-games h2,
.live-bonuses h2,
.troubleshooting h2,
.why-login h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffeb00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.login-process h2::after,
.download-process h2::after,
.app-features h2::after,
.app-bonuses h2::after,
.why-play h2::after,
.games-collection h2::after,
.mobile-app h2::after,
.discover-slots h2::after,
.providers h2::after,
.how-to-win h2::after,
.strategies h2::after,
.bonus-types h2::after,
.how-to-claim h2::after,
.bonus-terms h2::after,
.why-use-bonus h2::after,
.how-to-start h2::after,
.cricket-betting h2::after,
.why-bet h2::after,
.how-to-play h2::after,
.aviator-features h2::after,
.how-it-works h2::after,
.popular-games h2::after,
.live-bonuses h2::after,
.troubleshooting h2::after,
.why-login h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffeb00, transparent);
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 8px;
}

.faq-item h3 {
    color: #ffeb00;
    margin-bottom: 10px;
}

.faq-item p {
    color: #ccc;
}

/* Footer */
.footer {
    background-color: #191919;
    padding: 40px 0 20px;
    border-top: 1px solid #ffeb00;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffeb00;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffeb00;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.payment-methods i {
    color: #ffeb00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #ccc;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.9rem;
    color: #888;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 8px;
    border-left: 4px solid #ffeb00;
}

.step-number {
    background: linear-gradient(180deg, #fffad5, #ccaf11 48%, #ffeb00);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ffeb00;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-content p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Features Lists */
.features-list,
.games-list,
.slots-list,
.bonus-list {
    list-style: none;
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

.features-list li,
.games-list li,
.slots-list li,
.bonus-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i,
.games-list i,
.slots-list i,
.bonus-list i {
    color: #ffeb00;
    width: 20px;
}

/* Testimonials */
.testimonials {
    margin-bottom: 60px;
}

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

.testimonial {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #444;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial p {
    color: #ccc;
    font-style: italic;
}

/* Additional Table Styles */
.strategies-table,
.troubleshooting-table,
.betting-table,
.bonuses-table,
.slots-table,
.games-table {
    margin: 30px 0;
    overflow-x: auto;
}

/* Benefits Section */
.benefits {
    margin: 30px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits h3 {
    color: #ffeb00;
    margin-bottom: 15px;
}

/* Advantages Section */
.advantages {
    margin: 30px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.advantages h3 {
    color: #ffeb00;
    margin-bottom: 15px;
}

/* Final CTA Section */
.final-cta {
    margin-bottom: 60px;
    text-align: center;
    padding: 40px 20px;
    background-color: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #444;
}

/* Links */
a {
    color: #ffeb00;
    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: 2rem;
    }
    
    .nav-list {
        gap: 20px;
    }
}

.hero-description {
    padding: 20px 0;
    text-align: center;
}

@media (max-width: 1280px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #191919;
        border-top: 1px solid #ffeb00;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        align-items: center;
    }
    
    .burger-menu {
        display: flex;
    }

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

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

    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -8px);
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .header-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons,
    .section-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .slider-section {
        height: 250px;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
        padding: 0 10px;
    }

}

@media (max-width: 480px) {
    .header-content {
        flex-wrap: wrap;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }
}

/* Images Grid */
.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 0 20px;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.image-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .why-choose h2,
    .popular-games h2,
    .bonuses h2,
    .trust h2,
    .faq h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        width: 100%;
        max-width: 300px;
    }
    
    .slider-section {
        height: 150px;
    }
    
    .slider-arrows {
        padding: 0 10px;
    }
    
    .arrow {
        width: 35px;
        height: 35px;
    }
}
