/* ========================== */
/* Reset & Global Styles */
/* ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Bai Jamjuree', sans-serif;
}

/* General Styles */
body {
    font-family: 'Bai Jamjuree', sans-serif;
    background-color: #03451F; /* Green background */
    color: white; /* White text for contrast */
    text-align: center;
    margin: 0;
    padding: 0;
    margin-top: 80px; /* Adjust based on navbar height */
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}



/* Section Widths */
.hero, .example-section {
    width: 100%; /* Full width */
    max-width: 1200px; /* Same maximum width as the Hero section */
    margin: 0 auto; /* Centered */
    padding: 50px 20px;
}

/* Main Container */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* Left & Right Sections: Full width on mobile */
.left-content, .right-content {
    width: 100%;
    text-align: center;
}

/* Header Container */
.header-container {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center; /* Keep everything centered */
}

/* Header Styling */
h2 {
    color: #FDE11E; /* Yellow heading */
    background-color: rgba(255, 255, 255, 0.1); /* Light overlay */
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
}

.hero h2 {
        color: white; /* Yellow heading */
        background-color: rgba(255, 255, 255, 0.1); /* Light overlay */
        display: inline-block;
        padding: 10px 20px;
        border-radius: 8px;
}

h1, h2, h3 {
    font-weight: 600; /* Bold headings */
}

p, td, th, button {
    font-weight: 400; /* Regular text */
}

/* Prevent horizontal scroll on mobile */
body, html {
    overflow-x: hidden;
    width: 100%;
}

/* Example Section - Ensure Proper Scaling */
.example-section {
    padding-top: 1px; /* Reduce space at the top */
    padding-bottom: 1px; /* Add some space at the bottom */
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Header and Paragraph Centering */
.example-header {
    font-size: 2rem;
    font-weight: bold;
    color: #FFC800; /* Yellow */
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    max-width: 90%; /* Prevent it from stretching too wide */
}

/* Example Paragraph Styling */
.example-paragraph {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    max-width: 90%; /* Ensures good readability */
}

/* Ensure all internal elements are contained properly */
.example-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* If there's an image or video, make sure it scales properly */
.example-image, .example-video {
    width: 100%;
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
    .example-header {
        font-size: 1.8rem;
    }
    
    .example-paragraph {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}



/* Field Container */
.field-container {
    position: relative;
    width: 100%; /* Make it responsive */
    max-width: 800px; /* Maintain aspect ratio */
    height: auto;
    margin: 0 auto; /* Ensures it stays centered */
    display: flex;
    justify-content: center;
}

.field-container img {
    display: block;
    width: 100%; /* Ensures the field scales */
    height: auto;
    margin: auto;
}

.player, .opponent, .ball {
    position: absolute;
    font-size: 24px;
    color: blue;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.player {
    color: blue;
    font-size: 28px;
}

/* Opponent (Runner) - Medium Size for Better Proportion */
.opponent {
    color: orangered; /* Stronger highlight */
    font-size: 34px; /* Slightly reduced from 40px */
    width: 32px; /* Slightly smaller */
    height: 32px;
    transform: translate(-50%, -50%); /* Ensures proper positioning */
}

/* Ball (Smaller, but still centered) */
.ball {
    color: white; /* Baseball icon color */
    font-size: 14px; /* Further reduced size */
    background-color: red; /* Red circular background */
    border-radius: 50%; /* Makes it round */
    width: 18px; /* Slightly smaller */
    height: 18px;
    box-shadow: 0px 0px 5px rgba(255, 0, 0, 0.7); /* Red glow effect */
    border: 1px solid rgba(255, 255, 255, 0.6); /* White border for better visibility */
    transform: translate(-50%, -50%); /* Ensures correct alignment */
}

/* Table Styling */
.description-table {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    background: white; /* White background */
    color: black; /* Black text */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.description-table th {
    background-color: #FDE11E; /* Yellow */
    color: black; /* Black text */
    font-weight: 600;
    text-align: center;
    padding: 12px;
    border-bottom: 2px solid black;
}

.description-table td {
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Zebra Striping for Better Readability */
.description-table tr:nth-child(even) {
    background-color: #f9f9f9; /* Light gray */
}

.description-table tr:nth-child(odd) {
    background-color: white;
}

.description-table tr:hover {
    background-color: #f1f1f1;
}


/* Buttons Styling */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out, transform 0.1s ease-in-out;
}

button:hover {
    background-color: #0056b3;
}

/* Audio Play Button */
.description-table td button {
    background-color: #03451F; /* Green */
    color: white;
    border: 1px solid #FDE11E; /* Yellow border */
    font-size: 16px;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.description-table td button i {
    color: #FDE11E; /* Yellow icon */
    font-size: 14px;
}

.description-table td button:hover {
    background-color: #FDE11E; /* Yellow hover */
    color: black;
}

.description-table td button:hover i {
    color: black; /* Icon changes to black on hover */
}

#situationPlayButton {
    background-color: #03451F; /* Green */
    border: 2px solid #FDE11E; /* Yellow border */
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#situationPlayButton i {
    color: #FDE11E; /* Yellow icon */
    transition: color 0.3s ease-in-out;
}

#situationPlayButton:hover {
    background-color: #FDE11E; /* Yellow hover */
}

#situationPlayButton:hover i {
    color: black; /* Black icon on hover */
}

/* Overlay Styling */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Scale with field */
    height: auto;
    opacity: 1; /* Arrows start visible */
    transition: opacity 0.5s ease-in-out; /* Smooth fade effect */
    z-index: 2; /* Ensure it sits above field but below moving players */
}

.description-table td {
    text-align: center; /* Horizontally center content */
    vertical-align: middle; /* Vertically center content */
}

/* Run Play Button Styling */
#runPlayButton {
    background-color: #03451F; /* Green background */
    color: white;
    border: 2px solid #FDE11E; /* Yellow border */
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.1s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

#runPlayButton i {
    color: #FDE11E; /* Yellow icon */
    font-size: 20px;
}

#runPlayButton:hover {
    background-color: #FDE11E; /* Yellow hover */
    color: black;
    transform: scale(1.05); /* Slight pop effect */
}

#runPlayButton:hover i {
    color: black;
}

#runPlayButton:disabled {
    background-color: #666; /* Gray when disabled */
    border-color: #999;
    color: #ddd;
    cursor: not-allowed;
    transform: none;
}

#runPlayButton:disabled i {
    color: #bbb;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    body {
        font-size: 14px; /* Smaller text for better readability */
    }

    h2 {
        font-size: 16px; /* Reduce heading size */
    }

    .description-table {
        font-size: 12px; /* Make table text smaller */
    }

    .description-table th, .description-table td {
        padding: 4px; /* Reduce padding to fit better */
    }

    button {
        font-size: 14px; /* Adjust button text size */
        padding: 6px 12px; /* Make the button slightly smaller */
    }
}

@media screen and (max-width: 1024px) {
    .player, .opponent, .ball {
        font-size: 20px; /* Slightly smaller */
        width: 25px;
        height: 25px;
    }
}

@media screen and (max-width: 768px) {
    .player, .opponent, .ball {
        font-size: 16px; /* More compact */
        width: 20px;
        height: 20px;
    }

    .description-table td button {
        font-size: 14px; /* Smaller icon */
        padding: 3px
    }
}

@media screen and (min-width: 768px) {
    .main-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center; /* Center everything vertically */
        width: 100%;
        margin: auto;
        gap: 20px;
        min-height: 90vh; /* Ensures it fills most of the screen */
    }

    .left-content, .right-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* Centers both left and right content */
        width: 50%;
    }

    .description-table {
        width: 100%;
        max-width: 100%;
    }

    .field-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* Ensures field is centered */
        width: 100%; /* Make it responsive */
        max-width: 800px; /* Maintain aspect ratio */
        height: auto;
        margin: 0 auto; /* Ensures it stays centered */
        position: relative; /* Ensure position relative for overlay and players */
    }

    #runPlayButton {
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 50px;
        font-size: 1rem;
    }
}

    
/* ========================== */
/* Navbar Styles */
/* ========================== */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #03451F;
    padding: 15px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Center Navbar Content */
.navbar-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFC800;
    text-decoration: none;
}

/* Navbar Links */
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

/* Navbar Links */
.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFC800;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out; /* Added transition for hover effects */
    padding: 10px 15px; /* Added padding for a larger clickable area */
    border-radius: 5px; /* Added slight rounding for a more polished look */
}

.nav-links a i {
    color: white; /* Keeps them visible by default */
    transition: color 0.3s ease-in-out;
}

/* Change Icons to Site Green on Hover */
.nav-links a:hover i {
    color: #0FA34A; /* Your site’s green */
}

.nav-links a:hover {
    color: #03451F; /* Dark green text on hover */
    background-color: yellow; /* Yellow background on hover */
    transform: scale(1.05); /* Slight scaling for a subtle effect */
}

/* Hamburger Menu */
.nav-toggle {
    background: transparent !important; /* No background */
    border: none;
    outline: none;
    color: white; /* Icon stays visible */
}

/* Ensure when tapped, it stays theme-friendly */
.nav-toggle:focus,
.nav-toggle:active {
    background: rgba(255, 255, 255, 0.1) !important; /* Subtle highlight */
    outline: none;
    box-shadow: none;
}

.nav-toggle i {
    color: white !important; /* Keeps icon white */
    font-size: 1.8rem; /* Matches desktop styling */
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Hide hamburger menu on larger screens */
@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}
/* Ensure Hamburger Shows on Mobile */
@media (max-width: 1024px) {
    .nav-links {
        position: absolute;
        top: 60px; /* Adjust based on navbar height */
        right: 10px;
        background: #03451F; /* Solid background matching theme */
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0px 4px 10px rgba(255, 200, 0, 0.6); /* Yellow glow effect */
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        display: none; /* Hide by default */
    }

    /* Show dropdown when active */
    .nav-links.active {
        display: flex;
    }

    /* Hover effect for dropdown menu links */
    .nav-links a {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 10px 15px; /* Ensure padding covers the entire link area */
    }

    .nav-links a i {
        font-size: 1rem; /* Adjust icon size */
        color: white; /* Matches the navbar text */
    }

    .nav-links a:hover {
        background-color: yellow; /* Yellow background on hover */
        color: #03451F; /* Dark green text on hover */
    }

    .nav-links.show {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}


/* ========================== */
/* Hero Section Styles */
/* ========================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 120px auto 0;
    padding: 50px 20px;
}

/* Left Side of Hero */
.hero-left {
    width: 50%;
    padding-right: 20px; /* Added padding to the right */
}

.hero-left h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #FFC800;
    margin-bottom: 20px; /* Added margin to create space below heading */
}

.hero-left p {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 30px; /* Added margin to create space below paragraph */
}


.cta-button {
    background-color: #FFC800;
    color: #000;
    font-size: 1.2rem;
    padding: 12px 24px;
    border: a;
    cursor: pointer;
    border-radius: 5px;
}

/* Play Button Fix */
/* Center the text and button in hero-right */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Ensure vertical centering */
    text-align: center;
    width: 50%; /* Ensure it takes up the full available width */
}



/* ========================== */
/* Responsive Hero Fixes */
/* ========================== */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-left, .hero-right {
        width: 100%;
    }

    .play-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;  /* Ensure a fixed width */
        height: 60px; /* Keep it square */
        margin: 0 auto; /* Center horizontally */
    }

    .cta-button {
        margin-bottom: 20px; /* Extra space below "GET STARTED" */
    }

    #videoText {
        margin-top: 10px; /* Space between text and button */
        margin-bottom: 10px; /* Extra space before button */
    }

    /* Light divider line for separation */
    .mobile-divider {
        width: 50%; /* Keep it subtle */
        height: 2px;
        background: rgba(255, 200, 0, 0.5); /* Lighter yellow */
        margin: 20px auto; /* Centered with spacing */
        border-radius: 2px;
    }
}

#videoText {
    font-size: 1.5rem; /* Increase text size */
    font-weight: bold; /* Make it stand out */
    color: white;
    margin-bottom: 15px; /* Space between text and button */
    text-align: center;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    display: block;
}


/* Reusable Button Style */
.button-style {
    background-color: #03451F; /* Green background */
    color: white;
    border: 2px solid #FDE11E; /* Yellow border */
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.1s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.button-style:hover {
    background-color: #FDE11E; /* Yellow background on hover */
    color: #03451F; /* Dark green text on hover */
    transform: scale(1.05);
}

/* Divider Line */
.divider {
    height: 4px;
    background: linear-gradient(to right, #03451F,#FFC800, #03451F); /* Gradient from yellow to green */
    margin: 40px 0; /* Space above and below the divider */
    border-radius: 2px; /* Slight rounding for a smooth look */
}

/* ========================== */
/* Why This Matters Section */
/* ========================== */
.why-matters {
    text-align: center;
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Slight contrast */
    border-radius: 10px;
    max-width: 1000px;
    margin: 50px auto; /* Centers section */
}

.why-matters h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #FFC800; /* Matches site theme */
    margin-bottom: 20px;
}

.why-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.highlight {
    color: #FFC800; /* Yellow emphasis */
    font-weight: bold;
}

.brand-name {
    color: #FFC800;
    font-weight: bold;
}

.why-matters .cta-button {
    background-color: #03451F; /* Green background */
    color: white;
    border: 2px solid #FDE11E; /* Yellow border */
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.1s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    text-align: center;
    
}

.why-matters .cta-button:hover {
    background-color: #FDE11E; /* Yellow hover */
    color: black;
    transform: scale(1.05); /* Slight pop effect */
}

/* ========================== */
/* How It Works Section */
/* ========================== */
.how-it-works {
    text-align: center;
    padding: 50px 20px;
    max-width: 1000px;
    margin: 50px auto;
}

.how-header {
    font-size: 2rem;
    font-weight: bold;
    color: #FFC800; /* Matches theme */
    margin-bottom: 20px;
}

.how-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ========================== */
/* Consistent Section Width & Styling */
/* ========================== */
.styled-section {
    text-align: center;
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Light contrast */
    border-radius: 10px;
    max-width: 1200px; /* Matches hero section */
    margin: 50px auto; /* Centers section */
    width: 100%; /* Ensures responsiveness */
}


/* Headers for Consistency */
.styled-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #FFC800; /* Bright yellow title */
    margin-bottom: 20px;
}

/* Paragraph Styling */
.styled-section p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
/* ========================== */
/* Features Section (What You Get Inside) */
/* ========================== */
.features-section {
    text-align: center;
    padding: 40px 20px;
}

/* Feature Box Container */
.features-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Ensures stacking only on smaller screens */
    max-width: 900px;
    margin: 0 auto;
}

/* Individual Feature Box */
.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 400px; /* Responsive width */
    max-width: 400px;
    text-align: center;
    border: 2px solid #FFC800;
}

/* Feature Icons */
.feature-box i {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

/* Feature Title */
.feature-box h3 {
    font-size: 1.5rem;
    color: #FFC800;
    margin-bottom: 10px;
}

/* Feature Text */
.feature-box p {
    font-size: 1rem;
    color: white;
    line-height: 1.5;
}

/* Early Adopters Promo */
.early-adopters {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFC800;
    margin-top: 20px;
}

/* CTA Button */
.features-section .cta-button {
    margin-top: 20px;
    background-color: #03451F;
    color: white;
    border: 2px solid #FDE11E;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.1s ease-in-out;
}

.features-section .cta-button:hover {
    background-color: #FDE11E;
    color: black;
    transform: scale(1.05);
}



/* ========================== */
/* Pricing Section */
/* ========================== */
.pricing-section {
    text-align: center;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

/* Set cards to the same height */
.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    max-width: 280px; /* Adjusted for layout */
    text-align: center;
    border: 2px solid #FFC800;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Highlight effect for Lifetime Plan */
.pricing-card.highlight {
    background: rgba(255, 200, 0, 0.2);
    border: 3px solid #FFC800;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #FFC800;
    margin-bottom: 10px;
}

/* Ensure all buttons stay at the bottom */
.pricing-card ul {
    flex-grow: 1; /* Pushes the button to the bottom */
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    font-size: 1rem;
    color: white;
    padding: 5px 0;
}

/* Button alignment fix */
.pricing-card .cta-button {
    margin-top: auto; /* Ensures button is at the bottom */
    background-color: #03451F;
    color: white;
    border: 2px solid #FDE11E;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.1s ease-in-out;
}

.pricing-card .cta-button:hover {
    background-color: #FDE11E;
    color: black;
    transform: scale(1.05);
}

/* ========================== */
/* Footer Styling */
/* ========================== */
.site-footer {
    background-color: #022B14; /* Darker green for contrast */
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 1rem;
    margin-top: 50px;
    border-top: 3px solid #FFC800; /* Yellow top border */
}

/* Footer Content Layout */
.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Hyperlink for 8-Bit Hive Technology */
.footer-link {
    color: #FFC800; /* Normal yellow */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.footer-link:visited {
    color: #D4A017; /* Darker yellow after visited */
}

.footer-link:hover {
    color: #FDE11E; /* Lighter yellow for hover effect */
}

.site-footer p {
    margin: 5px 0;
}

.site-footer strong {
    color: #FFC800; /* Yellow highlight */
}

/* Add Extra Spacing Only for Pricing Page */
.pricing-page-section {
    margin-top: 100px; /* Adjust as needed */
}

/* ========================== */
/* Future Features Section */
/* ========================== */
.future-features {
    text-align: center;
    padding: 40px 20px;
}

/* Intro Text */
.future-intro {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Future Features Grid */
.future-features-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-start; /* Ensures boxes only take necessary height */
}

/* Individual Feature Box */
.future-feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 400px; /* Responsive width */
    max-width: 400px;
    text-align: center;
    border: 2px solid #FFC800;
}

/* Feature Icons */
.future-feature-box i {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

/* Feature Title */
.future-feature-box h3 {
    font-size: 1.5rem;
    color: #FFC800;
    margin-bottom: 10px;
}

/* Feature Text */
.future-feature-box p {
    font-size: 1rem;
    color: white;
    line-height: 1.5;
}

/* Future Note Text */
.future-note {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFC800;
    margin-top: 20px;
}

/* CTA Button */
.future-features .cta-button {
    margin-top: 20px;
    background-color: #03451F;
    color: white;
    border: 2px solid #FDE11E;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.1s ease-in-out;
}

.future-features .cta-button:hover {
    background-color: #FDE11E;
    color: black;
    transform: scale(1.05);
}



/* ========================== */
/* FUTURE SECTIONS - COMMENTED OUT FOR LATER USE */
/* ========================== */

/* Who This Is For Section */
.who-this-for {
    /* display: none; */ /* Uncomment when ready to use */
    text-align: center;
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-width: 1000px;
    margin: 50px auto;
}

.who-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 20px auto;
}

.who-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    max-width: 250px;
    text-align: center;
    border: 2px solid #FFC800;
}

.who-item i {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.who-item h3 {
    font-size: 1.5rem;
    color: #FFC800;
    margin-bottom: 10px;
}

.who-item p {
    font-size: 1rem;
    color: white;
    line-height: 1.5;
}

/* Social Proof (Testimonials) */
.social-proof {
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
    border: 2px solid #FFC800; /* Highlight */
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 20px auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    max-width: 350px;
    text-align: center;
    border: 2px solid #FFC800;
}

.testimonial p {
    font-size: 1rem;
    color: white;
    line-height: 1.5;
}

.testimonial strong {
    font-size: 1rem;
    color: #FFC800;
    display: block;
    margin-top: 10px;
}

/* Final CTA */
.final-cta {
    /* display: none; */ /* Uncomment when ready */
    text-align: center;
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    max-width: 1000px;
    margin: 50px auto;
}

.final-cta h2 {
    font-size: 2rem;
    color: #FFC800;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
}

.final-cta .cta-button {
    background-color: #03451F;
    color: white;
    border: 2px solid #FDE11E;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.1s ease-in-out;
}

.final-cta .cta-button:hover {
    background-color: #FDE11E;
    color: black;
    transform: scale(1.05);
}

/* Specifically make the volume icon in the example scenario white */
#situationPlayButton i {
    color: white;
}

/* ========================== */
/* Navbar Branding - EliteSportsIQ */
/* ========================== */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none; /* Remove underline */
    color: white; /* Ensure text stays white */
}

.navbar-brand:hover {
    color: #FFC800; /* Change color on hover */
}

/* Font Awesome Icon */
.navbar-brand i {
    font-size: 1.8rem; /* Make it slightly larger */
    color: #FFC800; /* Matches your theme */
}

/* Stacked Text */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* ELITE and SPORTS styling */
.elite {
    font-size: 1.1rem; /* Slightly larger for emphasis */
    color: white;
}

.sports {
    font-size: 1rem;
    color: white;
}

/* IQ Styling (same height as stacked text) */
.iq {
    font-size: 1.8rem; /* Matches icon height */
    font-weight: bold;
    color: #FFC800; /* Standout color */
    margin-left: 4px;
}

.navbar a {
    text-decoration: none !important;
}

.navbar a:hover, 
.navbar a:focus {
    text-decoration: none !important;
}

/* ================================ */
/* Defensive Situations Layout Fix */
/* ================================ */
/* Add space so content isn't hidden behind navbar */
#situation-container {
    padding-top: 0; /* Remove any top padding */
    margin-top: 0;  /* Reduce any extra space */
}

.situation-container {
    display: flex;
    flex-direction: row; /* Default: Side-by-side */
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


/* Table Section */
.left-content {
    flex: 1;
    min-width: 400px; /* Ensures it has enough space */
    max-width: 50%; /* Keeps it at half on large screens */
    text-align: left;
}

/* Animation Section */
.right-content {
    flex: 1;
    min-width: 400px; /* Ensures it doesn't shrink too much */
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Ensure images and animations stay contained */
.field-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

/* ================================ */
/* Mobile & Tablet: Stack Layout */
/* ================================ */
@media screen and (max-width: 768px) {
    .situation-container {
        flex-direction: column; /* Stack only on small screens */
        align-items: center;
    }

    .left-content, .right-content {
        max-width: 100%; /* Take full width */
    }

    .right-content {
        margin-top: 20px;
    }
}

/* ================================ */
/* Situation Selection Buttons */
/* ================================ */
.situation-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0; /* Reduce padding */
    margin-bottom: 5px; /* Reduce space below buttons */
}

/* Differentiate Situation Buttons */
.situation-button {
    background: #03451F; /* Darker green */
    color: white; /* Yellow text */
    border: 2px solid #FDE11E;
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    width: 98%;
    text-align: center;
    transition: background-color 0.3s ease-in-out, transform 0.15s ease-in-out;
}

.situation-button i {
    color: #FDE11E; /* Yellow icon */
    transition: color 0.3s ease-in-out;
    padding: 6px;
}

.situation-button:hover {
    background: #FFC800;
    color: #03451F;
    transform: scale(1.08);
}

.situation-button:hover i {
    color: #022B14;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .situation-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .situation-button {
        width: 80%; /* Larger buttons for easier tapping */
    }
}

/* Scenario Accordion */
.scenario-accordion {
    width: 90%;
    max-width: 600px;
    margin: 10px auto;
    margin-top: 60px;
}

/* Accordion Button */
.accordion-button {
    background: #03451F;
    color: white;
    border: 2px solid #FFC800;
    padding: 10px;
    font-size: 1.2rem;
    text-align: left;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px; /* Spacing between icon and text */
}

.accordion-button:hover,
.accordion-button.active {
    background: #FFC800;
    color: #03451F;
}

.accordion-button i {
    transition: transform 0.3s ease-in-out;
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.accordion-content.active {
    max-height: 500px; /* Adjust based on content */
}


/* Select New Situation Button */
.select-new-button {
    display: none; /* Initially hidden */
    background: #FFC800;
    color: #03451F;
    border: none;
    padding: 12px 15px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin: 20px auto;
    width: 80%;
    max-width: 300px;
}

.select-new-button:hover {
    background: #03451F;
    color: #FFC800;
}

@media (max-width: 768px) {
    .styled-section {
        padding: 30px 10px; /* Reduce padding for mobile */
    }

    .future-features-container,
    .features-container {
        gap: 15px; /* Reduce spacing between elements */
    }

    .feature-box p,
    .future-feature-box p {
        margin-bottom: 5px; /* Reduce extra space below paragraphs */
    }
}

.future-feature-box {
    min-height: auto !important;
}

/* Wrap icon to prevent shifting */
.player-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}


/* Highlighted Player Effect */
.highlight-player .player-icon {
    color: #04d98b !important; /* Site Green */
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9); /* Yellow Glow */
    transform: scale(1.2); /* Ensures only the icon grows, not the container */
}

/* Table row highlight effect */
.description-table tr.selected {
    background-color: rgba(3, 69, 31, 0.5); /* Slight green tint */
    transition: background-color 0.3s ease-in-out;
}

/* Highlighted Table Row */
.highlight-row {
    background-color: rgba(65, 141, 97, 0.5) !important; /* Light green tint */
    transition: background-color 0.3s ease-in-out;
    height: auto; /* Ensure the row does not expand */
    border: none !important; /* Prevent border changes from affecting row size */
    padding: inherit !important; /* Keep padding consistent */
}

.highlight-player {
    color: #04d98b !important; /* Site Green */
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9); /* Yellow Glow */
    transform: translate(-50%, -50%) scale(1.2); /* Grow without shifting */
}

/* Quick Pricing Blurb */
.pricing-blurb {
    text-align: center;
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Slight contrast */
    border-radius: 10px;
    max-width: 1000px;
    margin: 50px auto; /* Centers section */
}

.pricing-blurb p {
    margin-bottom: 10px;
}

.pricing-blurb h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #FFC800; /* Matches site theme */
    margin-bottom: 20px;
}

.highlight-price {
    color: #FFC800; /* Gold color to stand out */
    font-weight: bold;
}

.pricing-blurb .cta-button {
    margin-top: 20px;
    background-color: #03451F;
    color: white;
    border: 2px solid #FDE11E;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.1s ease-in-out;
}

.pricing-blurb .cta-button:hover {
    background-color: #FDE11E;
    color: black;
    transform: scale(1.05);
}
