/* -------------------------------------- */
/* 1. Global Reset and Base Styles */
/* -------------------------------------- */

/* Colors: Black (#000000), Orange (#FF8C00), Green (#3CB371), Dark Gray (#1A1A1A) */

body {
    background-color: #1A1A1A; 
    color: #F5F5F5; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    color: #FF8C00;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #3CB371;
    text-decoration: none;
}

h1, h2, h3 {
    color: #FF8C00; 
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

strong {
    color: #F5F5F5; 
}

ul {
    padding-left: 25px;
}

/* -------------------------------------- */
/* 2. Header and CTAs (MINIMALIST NEON PREMIUM LOOK) */
/* -------------------------------------- */

header {
    background: rgba(0, 0, 0, 0.95);
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #3CB371;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    margin: 0;
    font-size: 3.0em; 
    font-weight: 900;
    letter-spacing: 0.5px;
    text-shadow: none;
    
    background: linear-gradient(45deg, #FFD700, #FF8C00, #FFD700); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
}

.logo .logo-accent-orange { 
    color: #FF8C00; 
    font-size: 1em; 
    font-weight: 900;
}

.logo .logo-accent-green { 
    color: #3CB371; 
    font-size: 1em; 
    font-weight: 900;
    margin-left: 2px; 
    text-shadow: 0 0 10px rgba(60, 179, 113, 0.8);
}

.main-nav a {
    color: #AAAAAA;
    margin-left: 25px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s, text-shadow 0.3s;
}

.main-nav a:hover {
    color: #F5F5F5;
    text-shadow: 0 0 5px #FF8C00;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 0;
    background-color: #FF8C00;
    transition: height 0.2s ease-out;
}

.main-nav a:hover::after {
    height: 3px;
}

.cta-button {
    background-color: #3CB371;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(60, 179, 113, 0.5);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    background-color: #FF8C00; 
    color: #000000;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.7);
}


.cta-button-large {
    background-color: #FF8C00;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.6em;
    font-weight: 900;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.6);
    transition: background-color 0.3s, box-shadow 0.3s;
    
    display: block; 
    width: fit-content;
    margin: 20px auto 0;
}

.cta-button-large:hover {
    background-color: #3CB371;
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(60, 179, 113, 0.8);
}

/* WhatsApp CTA Improvement (The highlighted banner) */
.whatsapp-cta-banner {
    background-color: rgba(0, 0, 0, 0.8); 
    border: 1px solid #3CB371;
    padding: 12px 20px;
    margin: 15px auto;
    max-width: 550px;
    font-weight: 500;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.whatsapp-number-box {
    background-color: #3CB371; 
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.whatsapp-cta-banner a:hover .whatsapp-number-box {
    background-color: #FF8C00; 
    color: #000000;
}


/* -------------------------------------- */
/* 3. Main Structure and Aesthetic */
/* -------------------------------------- */

main {
    padding: 20px 5%;
    max-width: 1200px; 
    margin: 0 auto;
}

.hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)), url('images/stadium.jpeg') no-repeat center center;
    background-size: cover;
    padding: 70px 5%;
    border-radius: 12px; 
    box-shadow: 0 0 35px rgba(255, 140, 0, 0.8); 
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-content { 
    background-color: #2e2e2e;
    padding: 40px;
    border-radius: 10px;
    border-top: 5px solid #FF8C00;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

/* Section Blocks */
article, section {
    background-color: #2e2e2e;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid #3CB371; 
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    align-items: center;
}

.full-width-image {
    max-width: 100%; 
    height: auto; 
    display: block; 
    margin: 0 auto; 
    border-radius: 4px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.4); 
}


.game-previews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px;
    margin-top: 20px;
}

.game-preview-card {
    background-color: #383838;
    padding: 0; 
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s, box-shadow 0.3s;
    border: 1px solid #4a4a4a;
}

.game-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.5); 
}

.game-preview-card h3 {
    color: #FF8C00;
    padding: 10px 15px 5px;
    margin: 0;
    font-size: 1.2em;
}

.game-preview-card p {
    padding: 0 15px 15px;
    font-size: 0.9em;
    color: #CCCCCC;
}

.game-preview-card a {
    display: block;
    background-color: #3CB371;
    color: white;
    padding: 10px 15px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s;
}

.game-preview-card a:hover {
    background-color: #FF8C00;
    color: #000;
}

/* Review Summary Table Enhancements (Crucial Look) */
.summary-table-container {
    background-color: #383838;
    padding: 5px;
    border-radius: 5px;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
}

.summary-table-container table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.summary-table-container th {
    background-color: #1A1A1A;
    color: #3CB371;
    padding: 14px 10px;
    font-size: 1.2em;
    border-radius: 4px 4px 0 0;
    text-align: center;
}

.summary-table-container td {
    padding: 10px 15px;
    background-color: #2e2e2e;
    border-bottom: none;
    transition: background-color 0.2s;
}

.summary-table-container tr:hover td {
    background-color: #4a4a4a;
}

.metric-label {
    font-weight: 500;
    width: 40%;
}

.metric-value {
    font-weight: 700;
    text-align: right;
    width: 60%;
}

/* FIX: Payment Icon Sizing for Professional Look */
.payment-icons {
    display: flex;
    justify-content: flex-end; 
    gap: 8px; /* Tighter gap */
    align-items: center;
    padding-right: 15px;
}

.payment-icon {
    width: 30px; /* FIXED SMALL SIZE */
    max-height: 30px; /* Ensures consistent height */
    height: auto;
    object-fit: contain; 
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5)); 
}

.payment-description {
    text-align: center; 
    font-size: 0.95em;
    color: #AAAAAA;
    padding: 8px 0 0 0 !important; 
    background-color: transparent !important;
}

/* Highlight Colors for Key Metrics */
.bonus-highlight { color: #FFD700; font-size: 1.15em; text-shadow: 0 0 3px rgba(255, 215, 0, 0.5); }
.success-highlight { color: #3CB371; font-size: 1.15em; text-shadow: 0 0 3px rgba(60, 179, 113, 0.5); }
.whatsapp-highlight a { color: #3CB371; font-size: 1.15em; }

/* Legal/Warning Box */
.legal-warning {
    background-color: #4a1d1d; 
    border: 1px solid #FF8C00;
    padding: 18px; 
    border-radius: 5px;
    font-size: 0.95em;
    margin-top: 25px; 
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.6);
}

/* Game Preview Look */
.game-preview-image {
    width: 100%;
    height: 150px; 
    margin-bottom: 0;
    border-radius: 0;
    object-fit: cover;
    opacity: 0.85; 
    transition: opacity 0.3s;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 1px solid #4a4a4a;
}
.game-preview-card:hover .game-preview-image {
    opacity: 1;
}

/* AI Chatbot Styling - Fancy Look */
.ai-chat-container {
    display: none; 
    flex-direction: column;
    position: fixed;
    bottom: 100px; 
    left: 30px; 
    width: 350px; 
    height: 450px; 
    background-color: #1A1A1A; 
    border: 1px solid #FF8C00;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow: hidden;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform-origin: bottom left;
}

.ai-chat-container.active { 
    transform: scale(1);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(90deg, #FF8C00, #FFD700); 
    color: #000000;
    padding: 12px 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #3CB371;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
}

.chat-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #2e2e2e; 
    scroll-behavior: smooth;
}

.user-message, .bot-message {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9em;
}

.user-message {
    align-self: flex-end;
    background-color: #3CB371; 
    color: white;
    border-bottom-right-radius: 2px;
}

.bot-message {
    align-self: flex-start;
    background-color: #4a4a4a; 
    color: white;
    border-bottom-left-radius: 2px;
}

.chat-input-area {
    display: flex;
    padding: 10px;
    background-color: #1A1A1A; 
}

.chat-input-area input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #FF8C00; 
    border-radius: 20px;
    background-color: #383838;
    color: #F5F5F5;
    margin-right: 10px;
}

.chat-send-button {
    background-color: #FF8C00;
    color: #000000;
    border-radius: 20px;
    padding: 10px 18px;
    transition: background-color 0.2s, transform 0.2s;
}

.chat-send-button:hover {
    background-color: #3CB371;
    color: #FFFFFF;
}


/* -------------------------------------- */
/* 4. Footer (PROFESSIONAL, NEON GLOW) */
/* -------------------------------------- */

footer {
    background-color: #000000;
    padding: 25px 5%;
    text-align: center;
    border-top: 2px solid var(--color-accent-green);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.9);
    color: #AAAAAA;
    font-size: 0.9em;
}

.footer-nav {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer a {
    color: #AAAAAA;
    font-weight: 400;
    transition: color 0.3s, text-shadow 0.3s;
}

footer a:hover {
    color: #3CB371;
    text-shadow: 0 0 8px rgba(60, 179, 113, 0.8);
}

.copyright {
    margin-top: 15px;
    color: #555555;
    font-size: 0.8em;
    text-align: center;
}

/* -------------------------------------- */
/* 5. Floating Widgets (Positioning and Images) */
/* -------------------------------------- */

.floating-widget {
    position: fixed;
    bottom: 30px; 
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    
    background-color: #000000; 
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%; 
}

.floating-widget:hover {
    transform: scale(1.1);
}

.floating-widget a {
    display: block;
    width: 100%;
    height: 100%;
}

/* --- Positioning and Specific Image Reference --- */

/* AI Score Hub (Green - LEFT SIDE TOP) */
#score-hub {
    left: 30px;
    bottom: 100px;
    width: 130px;
    height: 50px;
    background-color: #3CB371; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    animation: pulse-score 2s infinite; 
}
#score-hub a {
    font-size: 0.85em;
    font-weight: bold;
    color: #1A1A1A; 
    text-align: center;
    line-height: 1.1;
    padding: 5px;
}
@keyframes pulse-score {
    0% { transform: scale(1.0); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1.0); }
}

/* WhatsApp Widget (RIGHT SIDE) */
#whatsapp-widget {
    right: 30px; 
    background-color: #3CB371; 
    background-image: url('images/whatapps.png'); 
    animation: pulse 2s infinite; 
}

/* Chatbot Widget (LEFT SIDE BOTTOM) */
#chatbot-widget {
    left: 30px; 
    bottom: 30px;
    background-color: #FF8C00; 
    background-image: url('images/chatbot.png'); 
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(60, 179, 113, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(60, 179, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(60, 179, 113, 0); }
}

/* -------------------------------------- */
/* 6. Mobile Responsiveness */
/* -------------------------------------- */
@media (max-width: 768px) {
    header {
        padding: 10px 3%;
        flex-direction: column;
        text-align: center;
    }

    .logo h1 {
        font-size: 2em;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }
    
    .main-nav a {
        margin: 0 5px;
        font-size: 0.8em;
    }
    
    .cta-button {
        display: none;
    }

    .hero-banner {
        min-height: 250px;
        padding: 40px 5%;
    }

    .main-heading {
        font-size: 1.8em;
        letter-spacing: 0.5px;
    }

    .whatsapp-cta-banner {
        font-size: 1em;
        padding: 10px 15px;
    }
    
    .cta-button-large {
        padding: 14px 25px;
        font-size: 1.2em;
        width: 90% !important; 
        margin: 15px auto 0 !important;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-table-container, article, section {
        padding: 20px;
    }
    
    .game-previews-grid {
        grid-template-columns: 1fr;
    }

    /* Floating widgets adjusted for less screen space */
    .floating-widget {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }
    
    #chatbot-widget {
        left: 15px;
        right: auto;
    }
    
    #score-hub {
        left: 80px !important;
        bottom: 15px !important;
        width: 100px !important;
        height: 50px !important;
    }
    
    #score-hub a {
        font-size: 0.7em !important;
    }
    
    .ai-chat-container {
        width: 90%;
        bottom: 80px;
        left: 5%;
        right: 5%;
    }
}