/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--primary-color);
}

.main-navigation {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-item a {
    color: var(--text-dim);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-item a:hover {
    color: var(--text-light);
}

.nav-item a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 94, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1010;
    margin-left: auto;
}

.hamburger-icon {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.bar:nth-child(1) {
    top: 0;
}

.bar:nth-child(2) {
    top: 8px;
}

.bar:nth-child(3) {
    top: 16px;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    padding: 1.5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    transition: all 0.3s ease;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-item a {
    display: block;
    color: var(--text-dim);
    font-size: 1.1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-nav-item a:hover {
    color: var(--text-light);
    padding-left: 0.5rem;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.mobile-nav-buttons .btn {
    width: 100%;
}

/* Adjust main content to account for fixed header */
main {
    padding-top: 80px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-card);
    padding: 4rem 0 2rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo-text {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-tagline {
    color: var(--text-dim);
    margin-bottom: 0;
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links-column h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 0.8rem;
}

.footer-links-column ul li a {
    color: var(--text-dim);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.copyright p,
.footer-disclaimer p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-disclaimer p {
    font-style: italic;
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 999;
    background-color: var(--bg-dark);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.8rem 0.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn:last-child {
    border-right: none;
}

.sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.sticky-btn span {
    font-size: 0.9rem;
    font-weight: 500;
}

.sticky-btn-primary {
    background-color: var(--primary-color);
}

.sticky-btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--text-light);
}

.sticky-btn-secondary {
    background-color: var(--secondary-color);
}

.sticky-btn-secondary:hover {
    background-color: var(--secondary-hover);
    color: var(--text-light);
}

.sticky-btn:hover {
    transform: translateY(-3px);
}

/* Adjust footer padding to account for sticky buttons */
.site-footer {
    padding-bottom: calc(2rem + 70px);
}

/* Media Queries for Header, Footer, and Sticky Buttons */
@media (max-width: 1050px) {
    .main-navigation,
    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu {
        top: 80px;
        max-height: calc(100vh - 80px);
    }

    .nav-menu {
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        height: 70px;
    }

    main {
        padding-top: 70px;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-btn i {
        font-size: 1.2rem;
    }

    .sticky-btn span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .mobile-menu-toggle {
        padding: 0.3rem;
    }

    .hamburger-icon {
        width: 25px;
        height: 18px;
    }

    .bar:nth-child(2) {
        top: 7px;
    }

    .bar:nth-child(3) {
        top: 14px;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .footer-logo .logo-text {
        font-size: 1.5rem;
    }

    .footer-links-column h3 {
        font-size: 1.1rem;
    }

    .sticky-btn {
        padding: 0.6rem 0.3rem;
    }

    .sticky-btn i {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .sticky-btn span {
        font-size: 0.75rem;
    }

    .site-footer {
        padding-bottom: calc(2rem + 60px);
    }
}

/* Base Styles - Theme/Colors and Global Settings */
:root {
    /* Color scheme for dark theme */
    --primary-color: #ff5e00;
    --primary-hover: #ff7b33;
    --secondary-color: #0095ff;
    --secondary-hover: #33adff;
    --text-light: #ffffff;
    --text-dim: #cccccc;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --bg-card-hover: #2a2a2a;
    --border-color: #333333;
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.5);
    --spacer: 2rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 94, 0, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 149, 255, 0.4);
}

/* Hero Section Styles */
.hero-section {
    padding: 4rem 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/evo777-5.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-description {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.hero-img {
    border-radius: 12px;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
}

.hero-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: var(--shadow-dark);
    transform: rotate(15deg);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-image {
        margin-top: 2rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .hero-badge {
        top: -10px;
        right: -5px;
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-section {
        padding: 2rem 0;
    }
}

/* Introduction Section Styles */
.intro-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
    position: relative;
}

.intro-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-card), transparent);
    z-index: 1;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-text strong {
    color: var(--text-light);
    font-weight: 700;
}

.intro-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 1rem 0;
}

.intro-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid var(--border-color);
    height: 100%;
}

.intro-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: var(--primary-color);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.intro-card h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.4rem;
}

.intro-card p {
    color: var(--text-dim);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.card-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.card-btn i {
    font-size: 1rem;
}

.intro-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .intro-card-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .intro-card-container {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .intro-content {
        gap: 2rem;
    }

    .intro-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .intro-card {
        padding: 1.5rem;
    }

    .intro-card h3 {
        font-size: 1.2rem;
    }

    .intro-section {
        padding: 2.5rem 0;
    }
}

/* Game Variety Section Styles */
.game-variety-section {
    padding: 5rem 0;
    background-color: var(--bg-card);
    position: relative;
}

.game-variety-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/evo777-6.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.game-variety-section .container {
    position: relative;
    z-index: 1;
}

.game-variety-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.game-variety-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.game-variety-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.game-variety-text p:last-child {
    margin-bottom: 0;
}

.game-variety-text strong {
    color: var(--text-light);
    font-weight: 700;
}

/* Game Categories */
.game-categories {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.game-category-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.game-category-header p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 0;
}

.game-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.game-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    background: var(--bg-card-hover);
}

.game-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-dark);
    border-radius: 50%;
    flex-shrink: 0;
}

.game-icon i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.game-info {
    color: var(--text-dim);
    line-height: 1.5;
}

.game-info strong {
    color: var(--text-light);
    font-weight: 700;
}

/* Game Features Grid */
.game-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.game-feature {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-feature:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: var(--gradient-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary-color);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.feature-content h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-dim);
    margin-bottom: 0;
}

.feature-content a {
    color: var(--secondary-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

.feature-content a:hover {
    color: var(--secondary-hover);
    text-decoration: underline;
}

/* Game Preview */
.game-preview {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
}

.game-preview-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-preview-image:hover .preview-overlay {
    opacity: 1;
}

.game-preview-image:hover .preview-img {
    transform: scale(1.05);
}

.preview-button {
    background: rgba(255, 94, 0, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.preview-button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.preview-button i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.game-preview-cta {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-preview-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.game-preview-cta p {
    color: var(--text-dim);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .game-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-preview {
        grid-template-columns: 1fr;
    }

    .game-preview-image {
        height: 300px;
    }

    .game-variety-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .game-features-grid {
        grid-template-columns: 1fr;
    }

    .game-preview-cta {
        padding: 2rem;
    }

    .game-feature {
        padding: 1.5rem;
    }

    .game-variety-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .game-item {
        padding: 1rem;
        gap: 1rem;
    }

    .game-icon {
        width: 40px;
        height: 40px;
    }

    .game-icon i {
        font-size: 1.2rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.4rem;
    }

    .game-categories {
        padding: 1.5rem;
    }

    .preview-button {
        width: 60px;
        height: 60px;
    }

    .preview-button i {
        font-size: 2rem;
    }

    .game-preview-cta h3 {
        font-size: 1.3rem;
    }

    .game-variety-section {
        padding: 2.5rem 0;
    }
}

/* Legal Information Section Styles */
.legal-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
    position: relative;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.legal-section .container {
    position: relative;
    z-index: 1;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.legal-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.legal-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.legal-text p:last-child {
    margin-bottom: 0;
}

.legal-text strong {
    color: var(--text-light);
    font-weight: 700;
}

/* Legal Grid */
.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.legal-image {
    position: relative;
}

.legal-img {
    border-radius: 12px;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
    overflow: hidden;
    width: 100%;
}

.legal-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px dashed var(--secondary-color);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.5;
}

.legal-points p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-color);
}

.legal-points p:last-child {
    margin-bottom: 0;
}

.legal-points strong {
    color: var(--text-light);
    font-weight: 700;
}

/* Legal Checklist */
.legal-checklist {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.legal-checklist h3 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1.4rem;
}

.checklist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--secondary-color);
}

.checklist-item:hover {
    transform: translateX(5px);
    background: var(--bg-card-hover);
}

.checklist-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.checklist-text {
    color: var(--text-dim);
    line-height: 1.5;
}

.checklist-text strong {
    color: var(--text-light);
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
}

/* Legal Conclusion */
.legal-conclusion {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(to right, transparent, rgba(0, 149, 255, 0.1), transparent);
    border-radius: 12px;
}

.legal-conclusion p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.legal-conclusion p:last-child {
    margin-bottom: 0;
}

.legal-conclusion strong {
    color: var(--text-light);
    font-weight: 700;
}

/* Legal CTA */
.legal-cta {
    text-align: center;
    margin-top: 1rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .legal-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .legal-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .legal-checklist {
        padding: 2rem;
    }

    .checklist-item {
        padding: 1.25rem;
    }

    .legal-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .legal-conclusion {
        padding: 1.5rem;
    }

    .legal-checklist h3 {
        font-size: 1.2rem;
    }

    .legal-checklist {
        padding: 1.5rem;
    }

    .checklist-item {
        padding: 1rem;
    }

    .checklist-item i {
        font-size: 1.3rem;
    }

    .legal-points p {
        padding-left: 0.75rem;
    }

    .legal-section {
        padding: 2.5rem 0;
    }
}

/* Unique Features Section Styles */
.features-section {
    padding: 5rem 0;
    background-color: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 94, 0, 0.1), transparent 60%);
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.features-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.features-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.features-text p:last-child {
    margin-bottom: 0;
}

.features-text strong {
    color: var(--text-light);
    font-weight: 700;
}

/* Feature Cards */
.features-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    display: flex;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: var(--bg-card-hover);
}

.feature-card-icon {
    width: 80px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(255, 94, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.feature-card-content {
    padding: 1.5rem;
}

.feature-card-content h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card-content p {
    color: var(--text-dim);
    margin-bottom: 0;
}

.feature-card-content strong {
    color: var(--text-light);
    font-weight: 700;
}

/* Features Spotlight */
.features-spotlight {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: var(--bg-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
    margin-top: 1rem;
}

.spotlight-image {
    position: relative;
    height: 100%;
}

.spotlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.spotlight-badge i {
    font-size: 1rem;
}

.spotlight-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.spotlight-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    position: relative;
    padding-bottom: 1rem;
}

.spotlight-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.spotlight-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.spotlight-content strong {
    color: var(--text-light);
    font-weight: 700;
}

.spotlight-cta {
    margin-top: auto;
}

/* Media Queries */
@media (max-width: 1100px) {
    .features-cards {
        grid-template-columns: 1fr;
    }

    .features-spotlight {
        grid-template-columns: 1fr;
    }

    .spotlight-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
    }

    .feature-card-icon {
        width: 100%;
        height: 70px;
    }

    .spotlight-content {
        padding: 2rem;
    }

    .spotlight-content h3 {
        font-size: 1.4rem;
    }

    .features-section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .feature-card-content {
        padding: 1.25rem;
    }

    .feature-card-content h3 {
        font-size: 1.1rem;
    }

    .spotlight-content {
        padding: 1.5rem;
    }

    .spotlight-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .spotlight-badge {
        top: 10px;
        right: 10px;
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }

    .features-section {
        padding: 3rem 0;
    }
}

/* Promotions Section Styles */
.promotions-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
    position: relative;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.promotions-section .container {
    position: relative;
    z-index: 1;
}

.promotions-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.promotions-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.promotions-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.promotions-text p:last-child {
    margin-bottom: 0;
}

.promotions-text strong {
    color: var(--text-light);
    font-weight: 700;
}

/* Bonus Highlights */
.bonus-highlights {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
}

.bonus-highlight-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bonus-highlight-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bonus-card {
    background: var(--bg-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.bonus-icon {
    background: linear-gradient(to right, var(--primary-color), rgba(255, 94, 0, 0.7));
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-icon i {
    font-size: 3rem;
    color: var(--text-light);
}

.bonus-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bonus-content h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.bonus-content p {
    color: var(--text-dim);
    margin-bottom: 0;
    flex-grow: 1;
}

.bonus-content strong {
    color: var(--text-light);
    font-weight: 700;
}

/* Promotions Banner */
.promotions-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: linear-gradient(to right, var(--bg-card), var(--bg-dark));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
}

.banner-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.banner-content p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.banner-content strong {
    color: var(--text-light);
    font-weight: 700;
}

.banner-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-image:hover .banner-img {
    transform: scale(1.05);
}

/* Additional Promotions Content */
.promotions-additional {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.additional-content {
    margin-bottom: 2rem;
}

.additional-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.additional-content p:last-child {
    margin-bottom: 0;
}

.additional-content strong {
    color: var(--text-light);
    font-weight: 700;
}

.promotions-cta {
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .bonus-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .promotions-banner {
        grid-template-columns: 1fr;
    }

    .banner-image {
        height: 300px;
    }

    .promotions-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .bonus-cards {
        grid-template-columns: 1fr;
    }

    .bonus-highlights {
        padding: 2rem;
    }

    .banner-content {
        padding: 2rem;
    }

    .banner-content h3 {
        font-size: 1.4rem;
    }

    .promotions-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .bonus-highlights {
        padding: 1.5rem;
    }

    .bonus-icon {
        height: 80px;
    }

    .bonus-icon i {
        font-size: 2.5rem;
    }

    .bonus-content {
        padding: 1.25rem;
    }

    .bonus-content h3 {
        font-size: 1.1rem;
    }

    .banner-content {
        padding: 1.5rem;
    }

    .banner-content h3 {
        font-size: 1.2rem;
    }

    .btn-large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .promotions-section {
        padding: 2.5rem 0;
    }
}