/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif; /* Basic font, can be replaced */
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
.header {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px; /* Increased size */
    width: auto;
    /* Placeholder style if image missing */
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.member-text {
    font-size: 14px;
    color: #ccc;
}

.register-link {
    color: #d32f2f; /* Red color */
    font-weight: bold;
}

.btn-login {
    border: 1px solid #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: url('images/creative-cricket-stadium-poster-line-600nw-2374638565.webp') no-repeat center center/cover;
    height: 500px; /* Adjust height */
    position: relative;
    background-color: #1a4d2e; /* Fallback green */
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    width: 100%;
    justify-content: flex-end; /* Push text to right */
    align-items: center;
}

.hero-left, .hero-center {
    display: none; /* Hide placeholders as we use the full banner image */
}

.hero-right {
    flex: 1;
    text-align: right;
    padding-right: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-right h1 {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
}

.hero-right span {
    color: #ffeb3b; /* Yellow for emphasis */
    font-size: 60px;
}

/* Stats Bar */
.stats-bar {
    background-color: #f9f9f9;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 30px;
    color: #666;
}

.box-4-3 {
    border: 2px solid #666;
    padding: 5px;
    font-weight: bold;
    font-size: 20px;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 18px;
    color: #333;
}

.stat-text span {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

/* Steps Section */
.steps-section {
    background-color: #b71c1c; /* Dark Red */
    color: #fff;
    padding: 50px 0;
}

.steps-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.video-wrapper {
    flex: 1;
}

.video-placeholder {
    background-color: #000;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #fff;
    border: 2px solid #fff;
}

.steps-content {
    flex: 1;
}

.steps-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step-item {
    text-align: center;
    flex: 1;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 12px;
    color: #ffcdd2; /* Light red text */
}

/* App Info Section */
.app-info-section {
    padding: 60px 0;
}

.app-info-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.app-info-text {
    flex: 1;
}

.app-info-text h2 {
    color: #b71c1c;
    font-size: 32px;
    margin-bottom: 20px;
}

.app-info-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}

.btn-preview {
    display: inline-block;
    border: 1px solid #b71c1c;
    color: #b71c1c;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 4px;
}

.app-info-image {
    flex: 1;
    text-align: center;
}

.app-info-image img {
    max-width: 100%;
    height: auto;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.tabs {
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-btn.active {
    color: #b71c1c;
    border-bottom: 3px solid #b71c1c; /* Thicker border */
}

.accordion-item {
    background: #fff; /* Light greyish background for item */
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: #f7f9fa; /* Slightly darker header */
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
}

.accordion-content {
    padding: 20px;
    display: none; /* Hidden by default */
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    background: #fff;
}

.accordion-content p {
    margin-bottom: 10px;
}

.red-text {
    color: #b71c1c;
}

/* Testimonials Section */
.testimonials-section {
    padding: 50px 0;
    text-align: center;
}

.testimonials-section h2 {
    color: #b71c1c;
    margin-bottom: 40px;
    font-size: 32px;
}

.testimonials-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    max-width: 500px;
}

.user-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background: #ccc;
}

.testimonial-text h3 {
    font-size: 16px;
    color: #b71c1c;
}

.winnings {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.quote {
    font-style: italic;
    font-size: 13px;
    color: #666;
}

.btn-testimonials {
    display: inline-block;
    border: 1px solid #b71c1c;
    color: #b71c1c;
    padding: 10px 20px;
    border-radius: 4px;
}

/* Footer */
.footer {
    background-color: #b01d1d; /* Dark Red match */
    color: #fff;
    padding: 40px 0 20px;
    font-size: 13px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    flex: 1;
    max-width: 300px;
}

.footer-middle {
    flex: 1.5;
}

.footer-right {
    flex: 1;
}

.footer-logo {
    width: 220px; /* Increased size */
    height: auto;
    margin-bottom: 20px;
    display: block;
    background: none;
    padding: 0;
}

.copyright-text {
    font-size: 12px;
    margin-bottom: 20px;
}

.social-connect h4 {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.8;
}

.social-fb { background-color: #3b5998; }
.social-tw { background-color: #1da1f2; }
.social-in { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-li { background-color: #0077b5; }
.social-tg { background-color: #0088cc; }

.footer-middle h4, .footer-right h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: none;
}

.footer-links-grid {
    display: flex;
    gap: 40px;
}

.footer-links-grid ul {
    list-style: none;
}

.footer-links-grid li {
    margin-bottom: 6px;
    font-size: 12px;
}

.footer-links-grid a::before {
    content: "»";
    margin-right: 5px;
    font-weight: bold;
}

.footer-links-grid a:hover {
    text-decoration: underline;
}

.security-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.badge-play {
    background: #fff;
    color: #00a0e9; /* Blue text */
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    display: inline-block;
}

.badge-18 {
    background: #fff;
    color: #b01d1d; /* Red text */
    padding: 5px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #b01d1d; /* In case needed */
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pay-badge {
    background: #fff;
    color: #333;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: bold;
}

.footer-bottom-warning {
    text-align: right;
    margin-top: 20px;
    font-size: 11px;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
}

/* Sticky Widget */
.sticky-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000; /* Dark background */
    border-top: 3px solid #b71c1c; /* Red top border */
    padding: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
}

.widget-content {
    display: flex;
    background: url('images/widget-bg.png'); /* If there's a background */
    background-color: #111;
}

.widget-text {
    background: #8b0000; /* Dark Red part */
    color: #fff;
    padding: 10px 15px;
    font-size: 12px;
    font-style: italic;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.widget-text span {
    font-size: 18px;
    font-weight: bold;
}

.widget-download {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
}

.widget-download i {
    font-size: 24px;
    color: #a4c639;
}

.widget-dl-text {
    display: flex;
    flex-direction: column;
}

.widget-dl-text span {
    font-size: 10px;
    color: #ccc;
}

.widget-dl-text strong {
    font-size: 14px;
    color: #fff;
}

/* Responsiveness */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .app-info-container {
        flex-direction: column-reverse;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .testimonials-wrapper {
        flex-direction: column;
        align-items: center;
    }
}
