body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #0A360A;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #0A360A;
}

.text-white {
    color: #FFFFFF !important;
}

.bg-dark-green {
    background-color: #0A360A !important;
}

.bg-light-green {
    background-color: #38761D !important;
}

.btn-light-green {
    background-color: #38761D;
    color: #FFFFFF;
    border: 1px solid #38761D;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.btn-light-green:hover {
    background-color: #2a5a15;
    border-color: #2a5a15;
    color: #FFFFFF;
}

.btn-outline-light {
    color: #FFFFFF;
    border-color: #FFFFFF;
    text-decoration: none;
}

.btn-outline-light:hover {
    background-color: #FFFFFF;
    color: #0A360A;
    text-decoration: none;
}

.bg-light-green-subtle {
    background-color: #E6F0E0 !important;
}

.text-light-green {
    color: #38761D !important;
}

.text-dark-green {
    color: #0A360A !important;
}


.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.header-warning {
    max-width: 300px;
    font-size: 0.85rem;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #38761D;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}


.hero-section {
    background-image: url('photos/pics/gaming-background_16.jpg');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-section h2 {
    font-size: 3.5rem;
    color: #FFFFFF;
}

.hero-section p {
    font-size: 1.25rem;
    color: #E0E0E0;
}


.bg-light-green-subtle {
    background-color: #E6F0E0;
}


.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
    width: 85%;
    max-width: 95%;
    height: 200px;
    object-fit: contain;
    margin-inline: auto;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.star-rating i {
    font-size: 1.1rem;
}

.card-img-link {
    display: flex;
    height: 200px;
    overflow: hidden;
}


.bg-dark-green h4 {
    color: #FFFFFF;
}


.list-group-item {
    border-left: none;
    border-right: none;
    border-color: rgba(0, 0, 0, 0.125);
    padding: 1rem 1.25rem;
}

.list-group-item:first-child {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.list-group-item:last-child {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.list-item-hover {
    transition: background-color 0.3s ease;
}

.list-item-hover:hover {
    background-color: rgba(56, 118, 29, 0.1) !important; 
}


.comparison-table th, .comparison-table td {
    vertical-align: middle;
    padding: 1rem;
    border-color: rgba(0, 0, 0, 0.1);
}

.comparison-table thead th {
    background-color: #0A360A;
    color: #FFFFFF;
    border-bottom: 2px solid #38761D;
}

.comparison-table tbody tr:nth-of-type(odd) {
    background-color: #f2f2f2;
}

.comparison-table tbody tr:nth-of-type(even) {
    background-color: #ffffff;
}

.comparison-table .expandable-row td {
    padding: 0;
    border-bottom: none;
}

.comparison-table .expandable-row:last-child td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background-color: #f9f9f9;
}

.expandable-content.show {
    max-height: 200px; 
    transition: max-height 0.5s ease-in;
}

.expandable-content table {
    width: 100%;
    margin-bottom: 0;
}

.expandable-content table td {
    border-top: none;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.expandable-content table tr:last-child td {
    padding-bottom: 1rem;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-icon.rotate {
    transform: rotate(180deg);
}


.bg-warning-dark {
    background-color: #8B0000; 
}

.disclaimer-box {
    border: 2px solid #FFD700 !important; 
    background-color: rgba(0, 0, 0, 0.2); 
}

.disclaimer-box h4, .disclaimer-box h5 {
    color: #FFD700; 
}

.disclaimer-box p {
    color: #FFFFFF;
}

.disclaimer-box a {
    color: #FFFFFF;
}


#footer a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #38761D;
    text-decoration: underline;
}

.border-light-green {
    border-color: #38761D !important;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content-center;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
    display: block;
}

.age-restriction-icon {
    background-color: #CC0000; 
    color: #FFFFFF;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.1rem;
    margin-left: 10px;
}


#ageVerificationModal .modal-content {
    border-radius: 1rem;
    border: none;
}

#ageVerificationModal .modal-body {
    padding: 2rem;
}

#ageVerificationModal .modal-title {
    font-size: 1.8rem;
}

#ageVerificationModal p {
    font-size: 1.1rem;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    display: none; 
}

.cookie-banner p {
    font-size: 0.9rem;
}

.cookie-banner .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}


#cookieModal .modal-content {
    border-radius: 0.75rem;
    border: none;
}

#cookieModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#cookieModal .form-check-label {
    font-weight: 600;
}

.text-muted-custom {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85em;
}


@media (max-width: 991.98px) {
    .header-warning {
        display: none;
    }
    .navbar-brand {
        width: auto;
    }
    .hero-section h2 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 400px;
    }
    .hero-section h2 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 0.9rem;
    }
    .btn-lg {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    .display-5 {
        font-size: 2rem;
    }
    .footer-logos {
        justify-content: center;
    }
    .footer-logo-img {
        max-width: 100px;
    }
    .age-restriction-icon {
        margin-top: 10px;
    }
    .list-group-item > div {
        font-size: 0.9rem;
    }
    .comparison-table th, .comparison-table td {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    .disclaimer-box {
        padding: 1.5rem !important;
    }
    .disclaimer-box h4 {
        font-size: 1.5rem;
    }
    .disclaimer-box h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .header-warning {
        display: none;
    }
    .navbar-brand h1 {
        font-size: 1.25rem;
    }
    .navbar-brand .logo-img {
        height: 30px;
    }
    .nav {
        flex-direction: column;
        align-items: center;
    }
    .nav-item {
        width: 100%;
        text-align: center;
    }
    .cookie-banner .container {
        flex-direction: column;
    }
    .cookie-banner p {
        margin-bottom: 1rem !important;
    }
    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .btn {
        flex: 1;
    }
    .list-group-item.d-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    .list-group-item > div {
        width: 100% !important;
        text-align: left !important;
        margin-bottom: 5px;
    }
    .list-group-item > div:first-child {
        text-align: center !important;
        margin-bottom: 10px;
    }
    .comparison-table .expandable-content table td {
        padding-left: 1rem;
    }
}

.legalDomeBlock {
    padding-top: 60px; 
    padding-bottom: 60px; 
    padding-left: 40px; 
    padding-right: 40px; 
    max-width: 960px; 
    margin-left: auto; 
    margin-right: auto; 
}


.legalDomeBlock h1 {
    font-size: 2.2em; 
    line-height: 1.2; 
    margin-top: 1.5em; 
    margin-bottom: 0.75em; 
    font-weight: 700; 
}

.legalDomeBlock h2 {
    font-size: 1.8em; 
    line-height: 1.3;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    font-weight: 600;
}

.legalDomeBlock h3 {
    font-size: 1.5em; 
    line-height: 1.4;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    font-weight: 600;
}

.legalDomeBlock h4 {
    font-size: 1.2em; 
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.legalDomeBlock h5 {
    font-size: 1.1em; 
    line-height: 1.5;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    font-weight: 500;
}


.legalDomeBlock p {
    font-size: 1em; 
    line-height: 1.6; 
    margin-bottom: 1em; 
}


.legalDomeBlock ul {
    list-style-type: disc; 
    margin-top: 1em; 
    margin-bottom: 1em; 
    padding-left: 25px; 
}


.legalDomeBlock li {
    font-size: 1em; 
    line-height: 1.6; 
    margin-bottom: 0.5em; 
}


body {
    overflow-x: hidden;
}

#footer .container .row {
    display: flex;
    justify-content: space-between;
}