body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

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

.text-dark h1, .text-dark h2, .text-dark h3, .text-dark h4, .text-dark h5, .text-dark h6 {
    color: #1a1a2e;
}

.site-logo {
    height: 30px;
    width: auto;
}

.site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e0e0e0;
}

.site-logo-footer {
    height: 25px;
    width: auto;
}

.site-name-footer {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e0e0e0;
}

.navbar-brand .site-name {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.navbar-nav .nav-link {
    color: #e0e0e0 !important;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: #8be9fd !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #8be9fd;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.offcanvas-header .btn-close {
    filter: invert(1);
}

.hero-section {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; 
    padding-bottom: 80px;
}

.hero-bg-img {
    z-index: 0;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
}

.hero-section p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #f0f0f0;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.custom-btn-primary {
    background-color: #8be9fd;
    border-color: #8be9fd;
    color: #1a1a2e;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
}

.custom-btn-primary:hover {
    background-color: #61dafb;
    border-color: #61dafb;
    color: #1a1a2e;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: #8be9fd;
    transform: translateX(-50%);
}

.game-card {
    background-color: #282a36;
    color: #f8f8f2;
    border: none;
    overflow: hidden;
}

.game-card .card-title {
    color: #8be9fd;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.game-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.game-rating .bi-star-fill, .game-rating .bi-star-half {
    color: #ffc107;
}

.game-rating span {
    font-weight: 600;
}

.btn-outline-primary {
    color: #8be9fd;
    border-color: #8be9fd;
    text-decoration: none;
}

.btn-outline-primary:hover {
    background-color: #8be9fd;
    color: #1a1a2e;
}

.table-responsive .table {
    color: #f8f8f2;
    border-color: #44475a;
}

.table-responsive .table th {
    color: #8be9fd;
    border-color: #44475a;
}

.table-responsive .table td {
    border-color: #44475a;
}

.popular-game-img {
    max-width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.statistic-card {
    background-color: #282a36;
    color: #f8f8f2;
    border: 1px solid #44475a;
}

.statistic-card .display-4 {
    color: #f8f8f2;
}

.statistic-card i {
    font-size: clamp(2rem, 5vw, 4rem);
}

.comment-card {
    background-color: #fff;
    color: #1a1a2e;
    border: none;
}

.comment-card .avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #8be9fd;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: #e0e0e0;
    background-color: #44475a;
    border-radius: 8px;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    color: #8be9fd;
    background-color: #282a36;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-body {
    background-color: #282a36;
    color: #f8f8f2;
    padding: 1rem 1.25rem;
}

.form-label {
    color: #1a1a2e;
    font-weight: 600;
}

.form-control {
    border-color: #8be9fd;
}

.form-control:focus {
    border-color: #61dafb;
    box-shadow: 0 0 0 0.25rem rgba(139, 233, 253, 0.25);
}

.form-text {
    color: #6c757d;
}

footer a {
    color: #e0e0e0;
}

footer a:hover {
    color: #8be9fd;
}

.cookie-banner {
    z-index: 1050;
    background-color: #282a36 !important;
    border-top: 1px solid #44475a;
}

.cookie-banner p {
    margin-bottom: 0;
    color: #f8f8f2;
}

.cookie-banner a {
    color: #8be9fd !important;
}

.cookie-banner .btn {
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .navbar-collapse {
        display: none;
    }
    .navbar-toggler {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .game-card .row > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .game-img {
        border-radius: 0.375rem 0.375rem 0 0 !important;
        height: 200px;
    }
    .game-card .card-body {
        padding: 1rem;
    }
    .game-card .card-title {
        font-size: 1.25rem;
    }
    .statistic-card .display-4 {
        font-size: 2.5rem;
    }
    .statistic-card .lead {
        font-size: 1rem;
    }
    .accordion-button {
        font-size: 1rem;
    }
    .cookie-banner .container {
        flex-direction: column;
    }
    .cookie-banner p {
        text-align: center;
        margin-bottom: 1rem !important;
    }
    .site-name {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    .hero-section p {
        font-size: 1.15rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .game-card .card-title {
        font-size: 1.5rem;
    }
    .statistic-card .display-4 {
        font-size: 3rem;
    }
    .accordion-button {
        font-size: 1.1rem;
    }
    .site-name {
        font-size: 1.4rem;
    }
}

@media (min-width: 1024px) {
    .hero-section h1 {
        font-size: 4.5rem;
    }
    .hero-section p {
        font-size: 1.25rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .game-card .card-title {
        font-size: 1.75rem;
    }
    .statistic-card .display-4 {
        font-size: 4rem;
    }
    .accordion-button {
        font-size: 1.2rem;
    }
    .site-name {
        font-size: 1.5rem;
    }
}/* Parent container styling */
.regShieldWrap {
    padding: 25px 20px; /* Top/bottom and left/right padding for the main content area */
    /* You might also consider max-width and margin: auto for centering content */
}

/* Heading 1 styles */
.regShieldWrap h1 {
    font-size: 1.8rem; /* Moderate font size for main headings */
    margin-top: 1.5em; /* Space above heading */
    margin-bottom: 0.75em; /* Space below heading */
    font-weight: 700; /* Bold text */
    line-height: 1.2; /* Tighter line spacing for headings */
}

/* Heading 2 styles */
.regShieldWrap h2 {
    font-size: 1.6rem; /* Slightly smaller than h1 */
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    font-weight: 700;
    line-height: 1.2;
}

/* Heading 3 styles */
.regShieldWrap h3 {
    font-size: 1.4rem; /* Further reduction in size */
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    font-weight: 700;
    line-height: 1.3;
}

/* Heading 4 styles */
.regShieldWrap h4 {
    font-size: 1.2rem; /* Closer to body text size, but still distinct */
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.3;
}

/* Heading 5 styles */
.regShieldWrap h5 {
    font-size: 1.1rem; /* Slightly larger than base text, primarily bold */
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    font-weight: 700;
    line-height: 1.4;
}

/* Paragraph styles */
.regShieldWrap p {
    margin-bottom: 1em; /* Space below paragraphs for clear separation */
    line-height: 1.6; /* Comfortable line spacing for readability */
}

/* Unordered list styles */
.regShieldWrap ul {
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 25px; /* Indentation for list items */
    list-style-type: disc; /* Default bullet style */
}

/* Ordered list styles (included for completeness, often paired with ul) */
.regShieldWrap ol {
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 25px; /* Indentation for list items */
    list-style-type: decimal; /* Default numbering style */
}

/* List item styles */
.regShieldWrap li {
    margin-bottom: 0.5em; /* Space between individual list items */
    line-height: 1.5; /* Line spacing for list item content */
}
