body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    --primary-color: #7B00FF;
    --secondary-color: #00E676;
    --background-dark: #1A1A2E;
    --background-light: #2A2A4A;
    --text-light: #E0E0E0;
    --text-dark: #A0A0A0;
    --card-background: #2A2A4A;
    --border-color: #4A4A6A;
    --danger-color: #FF3D00;
    --gradient-primary: linear-gradient(90deg, #7B00FF, #A03DFF);
    --gradient-secondary: linear-gradient(90deg, #00E676, #33FF99);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    font-weight: 700;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.btn {
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none !important;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 230, 118, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--border-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Age Verification Overlay */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    text-align: center;
}

.age-verification-content {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    max-width: 500px;
    width: 90%;
}

.age-verification-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.age-verification-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.age-verification-logo {
    max-width: 150px;
    height: auto;
}
@media screen and (width < 576px) {
    .age-verification-content {
        padding: 1rem;
    }
    .age-verification-logo {
        max-width: 80px;
    }
    .age-verification-content h2 {
        font-size: 1.2rem;
    }
}


/* Header */
.header-section {
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
}

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

.site-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-section {
    background-image: url('assets/pics/dark-gaming-pattern_2.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.badge-trust {
    background-color: var(--secondary-color);
    color: var(--background-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.badge-trust i {
    margin-right: 0.5rem;
}

.certification-icons .icon-small {
    height: 30px;
    width: auto;
}

.hero-image-wrapper {
    position: relative;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
}

.hero-image-wrapper img {
    border: 3px solid var(--primary-color);
}

.hero-game-previews {
    margin-top: 1rem;
}

.game-preview-card {
    width: 100px;
    height: 70px;
    overflow: hidden;
    border-radius: 0.5rem;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

.game-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about-section {
    background-color: var(--background-light);
}

.stat-block {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: var(--secondary-color);
}

.stat-number {
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-description {
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Game Selection Section */
.game-selection-section {
    background-color: var(--background-dark);
}

.game-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.game-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.game-card .card-body {
    padding: 1.5rem;
}

.game-card .card-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-card .card-text {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.game-card .play-game-btn {
    width: 100%;
}

.game-link {
    display: block;
    text-decoration: none;
}

/* Game Modal */
.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.game-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.game-modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--danger-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    box-shadow: 0 0 15px rgba(255, 61, 0, 0.6);
}

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

#gameIframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Tournaments Section */
.tournaments-section {
    background-color: var(--background-light);
}

.tournament-block {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tournament-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.tournament-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.tournament-title {
    font-size: 1.8rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.tournament-description {
    color: var(--text-dark);
    font-size: 1rem;
}

/* Clans Section */
.clans-section {
    background-color: var(--background-dark);
    background-image: url('assets/pics/clans-section-background_2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.clans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.clans-section .container {
    position: relative;
    z-index: 2;
}

.clans-icon {
    font-size: 4rem;
    color: var(--secondary-color);
}

.clans-description {
    font-size: 1.3rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    background-color: var(--background-light);
}

.faq-item {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.faq-question {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.faq-answer {
    color: var(--text-dark);
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--background-dark);
}

.testimonial-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.3);
}

.testimonial-name {
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.badge-reviewer {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.badge-reviewer i {
    margin-right: 0.4rem;
    color: gold;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--background-light);
}

.form-container {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.form-label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: var(--background-dark);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
}

.form-control:focus {
    background-color: var(--background-dark);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(123, 0, 255, 0.25);
    color: var(--text-light);
}

.form-control::placeholder {
    color: var(--text-dark);
    opacity: 0.7;
}

.invalid-feedback {
    color: var(--danger-color);
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #2D005B; /* Dark purple background */
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 5px solid var(--secondary-color);
    border-bottom: 5px solid var(--secondary-color);
}

.disclaimer-content {
    background-color: #1A0033; /* Even darker purple for content */
    border: 1px solid #5B00B2; /* Lighter purple border */
    border-radius: 1rem;
    padding: 2.5rem;
    color: #E0E0E0;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

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

.disclaimer-title i {
    font-size: 2.2rem;
    color: #FFD700; /* Gold warning icon */
}

.disclaimer-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.disclaimer-content strong {
    color: var(--secondary-color);
}

.disclaimer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.disclaimer-list li {
    margin-bottom: 0.5rem;
}

.disclaimer-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer */
.footer-section {
    background-color: var(--background-dark);
    border-top: 1px solid var(--border-color);
    color: var(--text-dark);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-title {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.footer-title i {
    color: var(--primary-color);
}

.footer-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-list a {
    color: var(--text-dark);
    text-decoration: none;
}

.footer-list a:hover {
    color: var(--primary-color);
}

.footer-divider {
    border-color: var(--border-color);
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-logos {
    gap: 1.5rem;
}

.footer-org-logo {
    max-width: 200px;
    height: auto;
    display: block;
    max-height: 80px;
}

.age-icon {
    height: 75px;
    vertical-align: middle;
}

.footer-bottom {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-image-wrapper {
        margin-top: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .stat-block, .tournament-block, .game-card, .faq-item, .testimonial-card {
        margin-bottom: 1rem;
    }
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
    .footer-logos {
        flex-direction: column;
        align-items: center;
    }
    .footer-org-logo {
        max-width: 150px;
    }
}
/* New stock styles for content within the .userClauseNet container */

.userClauseNet {
    /* Top margin for the entire content block to separate it from preceding elements */
    margin-top: 2rem;
    /* Horizontal padding for the content block to prevent it from touching screen edges */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    /* Optional: You might want to add a max-width for better readability on large screens */
    /* max-width: 768px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Headings */
.userClauseNet h1 {
    font-size: 1.8rem; /* H1 font size, designed not to be overly large */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 2.5rem; /* Space above the heading */
    margin-bottom: 1rem; /* Space below the heading */
}

.userClauseNet h2 {
    font-size: 1.6rem; /* H2 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.userClauseNet h3 {
    font-size: 1.4rem; /* H3 font size */
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.8rem;
    margin-bottom: 0.7rem;
}

.userClauseNet h4 {
    font-size: 1.2rem; /* H4 font size */
    font-weight: 600; /* Slightly less bold than H1-H3 */
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.userClauseNet h5 {
    font-size: 1.1rem; /* H5 font size */
    font-weight: 600;
    line-height: 1.5;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Paragraphs */
.userClauseNet p {
    font-size: 1rem; /* Base paragraph font size */
    line-height: 1.6; /* Comfortable line height for readability */
    margin-bottom: 1rem; /* Space between paragraphs */
}

/* Unordered Lists */
.userClauseNet ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1rem; /* Space above the list block */
    margin-bottom: 1rem; /* Space below the list block */
    padding-left: 1.8rem; /* Indentation for list items and their bullets */
}

/* List Items */
.userClauseNet li {
    font-size: 1rem; /* List item font size, matching paragraphs */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.5rem; /* Space between individual list items */
}
