/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Default text color, readable */
    line-height: 1.6;
}

.text-default {
    color: #e0e0e0; /* Ensure default text color is always set */
}

/* Custom Color Palette */
:root {
    --primary-color: #007bff; /* A vibrant blue, can be adjusted for EA FC feel */
    --primary-light-color: #00aaff; /* Lighter shade for accents */
    --secondary-dark-color: #1a1a1a; /* Darker shade for cards/sections */
    --background-dark: #121212; /* Main background */
    --footer-background: #0d0d0d; /* Even darker for footer */
    --text-white-75: rgba(224, 224, 224, 0.9); /* Slightly transparent white for secondary text */
    --text-muted-custom: #a0a0a0; /* Custom muted text */
    --border-secondary-light: rgba(255, 255, 255, 0.1); /* Light border for separation */
}

/* Override Bootstrap variables for custom colors */
.text-primary-light {
    color: var(--primary-light-color) !important;
}

.bg-dark-gradient {
    background: linear-gradient(145deg, var(--secondary-dark-color), #222222);
    border: 1px solid var(--border-secondary-light);
}

.bg-secondary-dark {
    background-color: var(--secondary-dark-color) !important;
}

.text-white-75 {
    color: var(--text-white-75) !important;
}

.text-muted {
    color: var(--text-muted-custom) !important;
}

.bg-footer {
    background-color: var(--footer-background);
}

.border-bottom-secondary {
    border-bottom: 1px solid var(--border-secondary-light) !important;
}

/* Hero Section */
#hero-section {
    background-image: url('img/content/ea-sports-fc-hero.jpg'); /* Macro for hero background */
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full viewport height */
    position: relative;
    overflow: hidden;
}

#hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    z-index: 0;
}

#hero-section h1 {
    font-size: 4.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

#hero-section .lead {
    font-size: 1.75rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.hero-logo {
    max-width: 250px;
    height: auto;
    width: 100px;
}

/* Custom Button Style */
.custom-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.8rem 2.5rem;
    transition: background-color 0.1s ease, border-color 0.1s ease; /* No smooth transitions */
}

.custom-btn:hover {
    background-color: var(--primary-light-color);
    border-color: var(--primary-light-color);
    transform: none; /* No scaling or other animations */
}

/* Section Styling */
section {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

h2 {
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-light-color);
}

/* Game Overview */
#game-overview ul.list-group-flush li {
    background-color: transparent;
    border-color: var(--border-secondary-light);
    padding-left: 0;
    padding-right: 0;
}

#game-overview ul.list-group-flush li:last-child {
    border-bottom: none;
}

/* Screenshots Gallery */
.game-screenshot {
    border: 2px solid var(--border-secondary-light);
    transition: border-color 0.1s ease; /* No smooth transitions */
}

.game-screenshot:hover {
    border-color: var(--primary-light-color);
    transform: none; /* No scaling or other animations */
}

/* User Reviews */
.review-card {
    border: 1px solid var(--border-secondary-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.text-warning {
    color: #ffc107 !important; /* Standard star color */
}

/* Footer */
.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--text-white-75);
    transition: color 0.1s ease; /* No smooth transitions */
}

.footer a:hover {
    color: var(--primary-light-color);
    text-decoration: none;
    transform: none; /* No scaling or other animations */
}

.social-icons .fa-lg {
    font-size: 1.5rem;
}

.disclaimer-box {
    border: 1px solid var(--border-secondary-light);
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    max-width: 800px;
    color: #b0b0b0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #hero-section h1 {
        font-size: 3rem;
    }

    #hero-section .lead {
        font-size: 1.25rem;
    }

    .hero-logo {
        max-width: 180px;
    }

    .custom-btn {
        padding: 0.7rem 2rem;
        font-size: 0.9rem;
    }

    section {
        padding: 2rem 1rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }

    .footer .col-md-4 {
        margin-bottom: 1.5rem;
    }

    .social-icons {
        justify-content: center !important;
    }
}/* Styles for the legal content container */
.legalFoldBox {
    padding: 3rem 2rem; /* Top/bottom and left/right padding */
    max-width: 900px; /* Max width for readability */
    margin: 3rem auto; /* Center the box horizontally with top/bottom margin */
    background-color: var(--secondary-dark-color); /* Consistent dark background */
    border-radius: 10px; /* Slightly rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* Subtle shadow */
    color: var(--text-white-75); /* Default text color for this box */
    line-height: 1.7; /* Improved readability for legal text */
}

/* Heading styles within legalFoldBox */
.legalFoldBox h1 {
    font-size: 2rem; /* Moderate size for main section title */
    margin-bottom: 1.5rem; /* Space below heading */
    color: var(--primary-light-color); /* Highlight color for headings */
    font-weight: 600; /* Slightly bolder */
}

.legalFoldBox h2 {
    font-size: 1.75rem; /* Slightly smaller than h1 */
    margin-top: 2rem; /* Space above heading if it follows other content */
    margin-bottom: 1.25rem; /* Space below heading */
    color: var(--primary-light-color);
    font-weight: 600;
}

.legalFoldBox h3 {
    font-size: 1.5rem; /* Smaller than h2 */
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-white-75); /* Default text color for sub-headings */
    font-weight: 500; /* Medium weight */
}

.legalFoldBox h4 {
    font-size: 1.25rem; /* Smaller than h3 */
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-white-75);
    font-weight: 500;
}

.legalFoldBox h5 {
    font-size: 1.1rem; /* Smallest heading */
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-white-75);
    font-weight: 500;
}

/* Paragraph styles within legalFoldBox */
.legalFoldBox p {
    font-size: 1rem; /* Standard paragraph text size */
    margin-bottom: 1rem; /* Space between paragraphs */
    color: var(--text-white-75); /* Consistent text color */
}

/* List styles within legalFoldBox */
.legalFoldBox ul {
    list-style: disc; /* Default disc for unordered lists */
    padding-left: 1.5rem; /* Indentation for list items */
    margin-bottom: 1rem; /* Space below the list */
    color: var(--text-white-75); /* Consistent text color */
}

.legalFoldBox ol {
    list-style: decimal; /* Default decimal for ordered lists */
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white-75);
}

.legalFoldBox li {
    font-size: 1rem; /* Consistent list item text size */
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Good line height for readability */
    color: var(--text-white-75); /* Consistent text color */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .legalFoldBox {
        padding: 2rem 1.5rem; /* Reduce padding on smaller screens */
        margin: 2rem auto; /* Adjust margin */
    }

    .legalFoldBox h1 {
        font-size: 1.75rem;
    }

    .legalFoldBox h2 {
        font-size: 1.5rem;
    }

    .legalFoldBox h3 {
        font-size: 1.3rem;
    }

    .legalFoldBox h4 {
        font-size: 1.1rem;
    }

    .legalFoldBox h5 {
        font-size: 1rem;
    }

    .legalFoldBox p,
    .legalFoldBox ul,
    .legalFoldBox ol,
    .legalFoldBox li {
        font-size: 0.95rem;
    }
}
.hero-logo + span {
    font-size: 34px;
    color: #fff;
    text-decoration: none;
}

.logo {
    position: absolute;
    top: 20px;
    right: 20px;
}