/* General Styles */
:root {
    --primary-color: #e53935; /* Red */
    --secondary-color: #ffb300; /* Yellow/Amber */
    --dark-bg: #1a1a1a; /* Dark background */
    --light-text: #f0f0f0;
    --grey-text: #b0b0b0;
    --card-bg: #2a2a2a;
    --border-color: #3a3a3a;
    --header-height: 80px;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--light-text);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--grey-text);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: #c02d2d;
    color: var(--light-text);
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--card-bg);
    color: var(--light-text);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
    color: var(--light-text);
    text-decoration: none;
}

.text-center {
    text-align: center;
}

/* Top Banner */
.top-banner {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.top-banner p {
    margin: 0;
    color: var(--dark-bg);
}

/* Header */
.header {
    background-color: var(--dark-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    color: var(--light-text);
    text-decoration: none;
    margin-right: 15px;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.site-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
}

.main-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav .nav-list li {
    margin-left: 30px;
}

.main-nav .nav-list a {
    color: var(--light-text);
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav .nav-list a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.btn-header-cta {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

.btn-header-cta:hover {
    background-color: #e6a200;
    color: var(--dark-bg);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('graphics/media/hero-background_2.jfif') no-repeat center center/cover;
    padding: 50px 0 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.hero-left {
    flex: 1; 
}

.hero-left h1 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    min-height: 300px;
}

.game-cards-stack {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.game-card-stack-item {
 
    width: 250px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    background-color: var(--card-bg);
}

.game-card-stack-item:nth-child(1) {
    transform: translateZ(0px) translateX(0px) translateY(0px) rotateY(0deg);
    z-index: 3;
}

.game-card-stack-item:nth-child(2) {
    transform: translateZ(-20px) translateX(20px) translateY(10px) rotateY(-5deg);
    z-index: 2;
}

.game-card-stack-item:nth-child(3) {
    transform: translateZ(-40px) translateX(40px) translateY(20px) rotateY(-10deg);
    z-index: 1;
}

.game-card-stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--light-text);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}

.game-card-stack-item:hover .card-hover-info {
    transform: translateY(0%);
}

.card-hover-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.card-hover-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--grey-text);
}

/* About Section */
.about-section {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.about-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* How to Play Section */
.how-to-play-section {
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
}

.how-to-play-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.step-item img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.step-item h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.step-item p {
    color: var(--grey-text);
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Game Selection Section */
.game-selection-section {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.category-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin: 0 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background-color: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.game-card .game-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.game-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--light-text);
}

.category-label {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: 600;
}

.game-info p {
    font-size: 0.9rem;
    color: var(--grey-text);
    margin-bottom: 15px;
    flex-grow: 1;
}

.game-card .btn-play {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.game-card .btn-play:hover {
    background-color: #e6a200;
    text-decoration: none;
}

/* Leaderboards Section */
.leaderboards-section {
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
}

.leaderboard-intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.leaderboard-table-wrapper {
    overflow-x: auto;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.leaderboard-table th {
    background-color: var(--primary-color);
    color: var(--light-text);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.leaderboard-table td {
    color: var(--light-text);
    font-size: 1rem;
}

.leaderboard-table tbody tr:nth-child(odd) {
    background-color: var(--card-bg);
}

.leaderboard-table tbody tr:nth-child(even) {
    background-color: #202020;
}

.leaderboard-table tbody tr:hover {
    background-color: #353535;
}

.leaderboard-table tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ & Support Section */
.faq-support-section {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.accordion-container {
    max-width: 800px;
    margin: 40px auto;
}

.accordion-item {
    background-color: var(--dark-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #2a2a2a;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
}

.accordion-content p {
    padding-bottom: 20px;
    margin-top: 0;
    color: var(--grey-text);
}

.support-info {
    text-align: center;
    margin-top: 50px;
}

.support-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.support-link {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.support-link:hover {
    background-color: #c02d2d;
    text-decoration: none;
}

.support-link i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    background-color: var(--card-bg);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.player-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.slide-item p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--light-text);
}

.player-name {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.slider-nav-prev, .slider-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--light-text);
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.slider-nav-prev:hover, .slider-nav-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-nav-prev {
    left: 10px;
}

.slider-nav-next {
    right: 10px;
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--grey-text);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Blog Teasers Section */
.blog-teasers-section {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card h3 {
    padding: 15px 20px 0;
    margin: 0;
    color: var(--primary-color);
}

.blog-card p {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: var(--grey-text);
    flex-grow: 1;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #2c2c2c;
    padding: 60px 0;
    border-top: 5px solid var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}

.disclaimer-content {
    background-color: #202020;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.disclaimer-title {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-title i {
    margin-right: 15px;
    font-size: 2.2rem;
}

.disclaimer-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--grey-text);
}

.disclaimer-content ul {
    list-style: disc inside;
    padding-left: 20px;
    margin-bottom: 20px;
}

.disclaimer-content ul li {
    margin-bottom: 8px;
    color: var(--grey-text);
}

.disclaimer-content ul li a {
    color: var(--primary-color);
    text-decoration: underline;
}

.disclaimer-content ul li a:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 50px 0 20px;
    text-align: center;
    color: var(--grey-text);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo .logo-link {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo .logo {
    height: 35px;
    margin-right: 8px;
}

.footer-logo .site-name {
    font-size: 1.5rem;
}

.footer-nav .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-nav .footer-links a {
    color: var(--grey-text);
    font-weight: 400;
}

.footer-nav .footer-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.btn-footer-cta {
    background-color: var(--primary-color);
    color: var(--light-text);
    margin-top: 15px;
}

.btn-footer-cta:hover {
    background-color: #c02d2d;
    text-decoration: none;
}

.footer-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

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

.footer-partners .age-icon {
    max-width: 50px;
    height: auto;
}

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--grey-text);
}

.sticky-play-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 999;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.sticky-play-button:hover {
    background-color: #c02d2d;
    transform: translateY(-3px);
    text-decoration: none;
}

.sticky-play-button i {
    margin-right: 10px;
    font-size: 1.4rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--card-bg);
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.7);
    position: relative;
}

.age-modal h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.age-modal p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.game-iframe-modal .modal-content-iframe {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-iframe-modal iframe {
    width: 95%;
    height: 95%;
    background-color: var(--dark-bg);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
}

.close-game-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    transition: background-color 0.3s ease;
}

.close-game-modal:hover {
    background-color: #c02d2d;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: var(--light-text);
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cookie-banner-content p {
    margin: 0;
    flex-grow: 1;
    color: var(--light-text);
}

.cookie-banner-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-banner-content a:hover {
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

/* Cookie Customize Modal */
.cookie-customize-modal .modal-content {
    max-width: 600px;
    padding: 30px;
}

.cookie-customize-modal h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cookie-customize-modal p {
    margin-bottom: 25px;
}

.cookie-category-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-category-item input[type="checkbox"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.cookie-category-item label {
    font-size: 1.1rem;
    color: var(--light-text);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cookie-category-item .category-desc {
    font-size: 0.85rem;
    color: var(--grey-text);
    margin-top: 3px;
}

.cookie-customize-modal .modal-actions {
    margin-top: 30px;
}
#hero p {
    color: #ffff;
}
#hero {
    overflow: hidden;
}
section {
    overflow: hidden;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left, .hero-right {
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-left h1 {
        font-size: 3rem;
    }

    .game-cards-stack {
        margin-top: 50px;
    }

    .header-content {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 20px;
    }

    .main-nav .nav-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .main-nav .nav-list li {
        margin-left: 0;
    }

 

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav .footer-links {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .footer-cta {
        width: 100%;
    }

    .btn-footer-cta {
        width: auto;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-right {
        display: none;
    }
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 80px 0;
    }

    .game-cards-stack {
        width: 280px;
        height: 320px;
    }

    .filter-btn {
        margin: 5px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .leaderboard-table th, .leaderboard-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .accordion-header {
        font-size: 1.1rem;
        padding: 18px 20px;
    }

    .slide-item {
        padding: 30px 20px;
    }

    .slider-nav-prev, .slider-nav-next {
        padding: 10px 8px;
        font-size: 1.2rem;
    }

    .sticky-play-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
        font-size: 1rem;
    }

    .sticky-play-button i {
        font-size: 1.2rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner-content p {
        margin-bottom: 15px;
    }

    .cookie-customize-modal .modal-content {
        padding: 20px;
    }

    .disclaimer-title {
        font-size: 1.8rem;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .disclaimer-title i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .slider-nav-prev {
        display: none !important;
    }
    .slider-nav-next {
        display: none !important;
    }
}
@media (max-width: 576px) {
    .sticky-play-button {
        display: none;
    }
    .main-nav {
        display: none;
    }


}
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .site-name {
        font-size: 1.5rem;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 10px;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .footer-partners {
        gap: 15px;
    }

    .footer-partners img {
        max-width: 100px;
    }

    .modal-content {
        padding: 25px;
    }

    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }

    .modal-actions .btn {
        width: 100%;
    }
}/* Parent container for compliance-related content */
.complianceVaultNode {
    padding: 20px 25px; /* Adds spacing around the content inside the node */
    /* You might want to add a background-color, border, or margin-bottom here depending on the layout */
}

/* Heading styles for h1 to h5 within complianceVaultNode */
.complianceVaultNode h1 {
    font-size: 1.8rem; /* Slightly smaller than default browser h1, but still prominent */
    margin-top: 1.5em; /* Spacing above the heading */
    margin-bottom: 0.8em; /* Spacing below the heading */
    line-height: 1.2; /* Tighter line height for headings */
    font-weight: 600; /* A bit bolder */
}

.complianceVaultNode h2 {
    font-size: 1.5rem; /* Moderate heading size */
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    line-height: 1.3;
    font-weight: 600;
}

.complianceVaultNode h3 {
    font-size: 1.3rem; /* Standard sub-heading size */
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    line-height: 1.4;
    font-weight: 500; /* Slightly less bold */
}

.complianceVaultNode h4 {
    font-size: 1.1rem; /* Smaller heading, good for sub-sections */
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1.5;
    font-weight: 500;
}

.complianceVaultNode h5 {
    font-size: 1rem; /* Smallest heading, often same as body text but bold */
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    line-height: 1.6;
    font-weight: 500;
}

/* Paragraph styles */
.complianceVaultNode p {
    font-size: 1rem; /* Standard body text size */
    line-height: 1.6; /* Improved readability for paragraphs */
    margin-bottom: 1em; /* Spacing between paragraphs */
}

/* Unordered list styles */
.complianceVaultNode ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1em; /* Spacing above the list */
    margin-bottom: 1em; /* Spacing below the list */
    padding-left: 2em; /* Indentation for bullets */
}

/* List item styles */
.complianceVaultNode li {
    margin-bottom: 0.5em; /* Spacing between list items */
    line-height: 1.5; /* Good line height for list items */
}
