/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #003B3B;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #006a4e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
    max-width: unset;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #f7d462;
    background-color: rgba(247, 212, 98, 0.1);
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Banner Slider Styles */
.banner-slider {
    width: 100%;
    background-color: #003B3B;
    overflow: hidden;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.bannerSwiper {
    width: 100%;
    height: auto;
    min-height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.bannerSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.bannerSwiper .swiper-slide img {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    display: block;
}

/* Swiper Navigation */
.bannerSwiper .swiper-button-next,
.bannerSwiper .swiper-button-prev {
    color: #f7d462;
    background: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-top: -22px;
}

.bannerSwiper .swiper-button-next:after,
.bannerSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.bannerSwiper .swiper-button-next:hover,
.bannerSwiper .swiper-button-prev:hover {
    background: rgba(247, 212, 98, 0.8);
    color: #012b20;
}

/* Swiper Pagination */
.bannerSwiper .swiper-pagination {
    bottom: 20px;
}

.bannerSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
}

.bannerSwiper .swiper-pagination-bullet-active {
    background: #f7d462;
    transform: scale(1.2);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.primary-btn {
    background: linear-gradient(180deg, #fbe38c, #ebab51);
    color: #012b20;
    box-shadow: 0 4px 15px rgba(251, 227, 140, 0.3);
}

.primary-btn:hover {
    box-shadow: 0 6px 20px rgba(251, 227, 140, 0.4);
    text-decoration: none;
}

.secondary-btn {
    border: 1px solid #f7d462;
    color: #f7d462;
    background: transparent;
}

.secondary-btn:hover {
    background-color: #f7d462;
    color: #012b20;
    text-decoration: none;
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #003B3B 0%, #006a4e 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f7d462;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero-content a:not(.btn) {
    color: #f7d462;
    text-decoration: none;
}

.hero-content a:not(.btn):hover {
    text-decoration: underline;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #f7d462;
    text-align: center;
}

section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f7d462;
}

section p {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.1rem;
}

section a {
    color: #f7d462;
    text-decoration: none;
}

section a:hover {
    text-decoration: underline;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(247, 212, 98, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(247, 212, 98, 0.2);
}

.feature-item i {
    font-size: 3rem;
    color: #f7d462;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

table th,
table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(247, 212, 98, 0.2);
}

table th {
    background-color: #006a4e;
    color: #f7d462;
    font-weight: 600;
}

table td {
    color: #ffffff;
}

table tr:hover {
    background-color: rgba(247, 212, 98, 0.1);
}

/* Steps List */
.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(247, 212, 98, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(247, 212, 98, 0.2);
}

section p {
    text-align: center;
}

.step-number {
    background: linear-gradient(180deg, #fbe38c, #ebab51);
    color: #012b20;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-item p {
    margin: 0;
    color: #ffffff;
}

/* User Reviews */
.user-reviews {
    background: rgba(0, 0, 0, 0.2);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.review-item {
    background: rgba(247, 212, 98, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(247, 212, 98, 0.2);
    text-align: center;
}

.stars {
    color: #f7d462;
    margin-bottom: 1rem;
}

.review-item p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #ffffff;
}

.reviewer {
    font-weight: bold;
    color: #f7d462;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(247, 212, 98, 0.1);
    padding: 20px 30px;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(247, 212, 98, 0.2);
}

.faq-item h3 {
    color: #f7d462;
    font-size: 21px;
    margin-bottom: 0;
}

.faq-item p {
    margin: 0;
    color: #ffffff;
    margin-top: 15px;
    font-size: 16px;
}

/* Disclaimer */
.disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #cccccc;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

/* Footer */
.footer {
    background-color: #012b20;
    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,
.footer-section h4 {
    color: #f7d462;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f7d462;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 2rem;
    color: #f7d462;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(247, 212, 98, 0.2);
    color: #cccccc;
}

/* Special Sections */
.why-content,
.mobile-content,
.play-content,
.matters-content,
.cricket-content,
.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-text,
.mobile-text,
.play-text,
.matters-text,
.cricket-text {
    padding-right: 2rem;
}

.why-image,
.mobile-image,
.play-image,
.matters-image,
.cricket-image {
    text-align: center;
}

.why-image img,
.mobile-image img,
.play-image img,
.matters-image img,
.cricket-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Bonus Types */
.bonus-types,
.slots-types,
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bonus-type,
.slot-type,
.game-item {
    text-align: center;
    padding: 2rem;
    background: rgba(247, 212, 98, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(247, 212, 98, 0.2);
}

.bonus-type i,
.slot-type i,
.game-item i {
    font-size: 3rem;
    color: #f7d462;
    margin-bottom: 1rem;
}

.bonus-type h3,
.slot-type h3,
.game-item h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0;
}

/* Tips List */
.tips-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.tips-list li {
    padding: 0.5rem 0;
    color: #ffffff;
    position: relative;
    padding-left: 2rem;
}

.tips-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f7d462;
    font-weight: bold;
}

/* Troubleshooting List */
.troubleshooting-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.troubleshooting-list li {
    padding: 0.5rem 0;
    color: #ffffff;
    position: relative;
    padding-left: 2rem;
}

.troubleshooting-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f7d462;
    font-weight: bold;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #006a4e 0%, #003B3B 100%);
    padding: 4rem 0;
}

.final-cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #f7d462;
    text-align: left;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.cta-image {
    text-align: center;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container,
    .why-content,
    .mobile-content,
    .play-content,
    .matters-content,
    .cricket-content,
    .final-cta .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-text,
    .mobile-text,
    .play-text,
    .matters-text,
    .cricket-text {
        padding-right: 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 1600px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #006a4e;
        padding: 1rem;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: center;
        border-radius: 10px;
        gap: 10px;
    }
    
    .nav-link {
        display: block;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(247, 212, 98, 0.2);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .bannerSwiper {
        min-height: 200px;
    }
    
    .bannerSwiper .swiper-slide img {
        min-height: 200px;
    }
    
    .bannerSwiper .swiper-button-next,
    .bannerSwiper .swiper-button-prev {
        display: none;
    }
    
    .bannerSwiper .swiper-pagination {
        bottom: 10px;
    }

    .logo img {
        height: 35px;
    }
    
    .header-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .features-grid,
    .steps-list,
    .reviews-grid,
    .bonus-types,
    .slots-types,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    table th,
    table td {
        padding: 0.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }

    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .feature-item,
    .bonus-type,
    .slot-type,
    .game-item,
    .review-item,
    .faq-item {
        padding: 1.5rem;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        gap: 0.5rem;
    }
}

/* Table Responsive */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    section {
        text-align: center;
    }

    .cta-content h2 {
        font-size: 32px;
    }
    
    table {
        min-width: 600px;
    }
}

/* Animation for buttons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn:hover {
    animation: pulse 0.3s ease-in-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #f7d462;
    outline-offset: 2px;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src=""] {
    opacity: 0;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .cta-buttons {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .main {
        padding: 0;
    }
}
