/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(7, 10, 23, 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);
    padding: var(--spacing-sm) 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex: 0 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--primary-color);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-md);
}

.nav-list li a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-list li a:hover,
.nav-list li a:focus {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-darker);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    flex: 1 1 300px;
}

.footer-logo .logo-text {
    margin-bottom: var(--spacing-md);
    display: inline-block;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    flex: 2 1 600px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
}

.footer-links-column {
    flex: 1 1 160px;
}

.footer-links-column h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-links-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-links-column ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: var(--spacing-md);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.responsible-gaming {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.responsible-gaming p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.responsible-gaming i {
    color: var(--accent-yellow);
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.sticky-button {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.sticky-button:nth-child(1) {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.sticky-button:nth-child(2) {
    background-color: var(--secondary-dark);
    color: var(--text-light);
}

.sticky-button:nth-child(3) {
    background-color: var(--accent-green);
    color: var(--text-light);
}

.sticky-button:hover {
    opacity: 0.9;
    color: var(--text-light);
}

.sticky-button i {
    font-size: 1.25rem;
}

.sticky-button span {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Media Queries for Header, Footer and Sticky Buttons */
@media screen and (max-width: 1200px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-darker);
        padding: var(--spacing-md);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li a {
        display: block;
        padding: var(--spacing-sm) var(--spacing-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media screen and (max-width: 992px) {
    .header-actions {
        gap: var(--spacing-xs);
    }

    .btn-sm {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .footer-content {
        gap: var(--spacing-lg);
    }
}

@media screen and (max-width: 768px) {
    .header-actions .btn:not(.mobile-menu-toggle) {
        display: none;
    }

    .footer-links-column {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sticky-button span {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 576px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .sticky-button {
        padding: var(--spacing-sm) var(--spacing-xs);
    }

    .sticky-button i {
        font-size: 1.1rem;
    }

    .sticky-button span {
        font-size: 0.75rem;
    }
}

/* Base Theme Styles */
:root {
    /* Primary Colors */
    --primary-color: #ff5e14;
    --primary-dark: #e04500;
    --primary-light: #ff7b3e;
    /* Secondary Colors */
    --secondary-color: #4a00e0;
    --secondary-dark: #3b00b3;
    --secondary-light: #6929ff;
    /* Dark Theme Colors */
    --bg-dark: #0f1226;
    --bg-darker: #070a17;
    --bg-card: #1a1f36;
    /* Text Colors */
    --text-light: #ffffff;
    --text-muted: #b0b7c3;
    --text-dark: #252a41;
    /* Accent Colors */
    --accent-green: #00e676;
    --accent-red: #ff3d71;
    --accent-yellow: #ffaa00;
    /* Fonts */
    --heading-font: 'Prompt', sans-serif;
    --body-font: 'Sarabun', sans-serif;
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    /* Layout */
    --container-width: 1280px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    background-image: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: var(--primary-light);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--spacing-lg);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 94, 20, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 20, 0.4);
    color: var(--text-light);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--secondary-color), var(--secondary-light));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(74, 0, 224, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, var(--secondary-dark), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 0, 224, 0.4);
    color: var(--text-light);
}

/* Hero Section Styles */
.hero-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(7, 10, 23, 0.9), rgba(15, 18, 38, 0.8));
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/oxybet147 (6).webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.hero-content {
    flex: 1;
    max-width: 60%;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 40%;
}

.main-hero-image {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 94, 20, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
    animation: float 6s infinite ease-in-out;
    opacity: 0.7;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    color: var(--accent-yellow);
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    color: var(--accent-green);
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 15%;
    left: 15%;
    color: var(--secondary-light);
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero-image {
        order: 1;
        margin-bottom: var(--spacing-lg);
    }

    .hero-cta {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: var(--spacing-lg) 0;
    }

    .floating-element {
        font-size: 1.5rem;
    }
}

/* Section 2 - Introduction Section Styles */
.intro-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.intro-text {
    background-color: rgba(26, 31, 54, 0.5);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.intro-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.7;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-text strong {
    color: var(--primary-light);
    font-weight: 700;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-top: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-card:nth-child(1) {
    border-color: var(--primary-color);
}

.feature-card:nth-child(2) {
    border-color: var(--secondary-color);
}

.feature-card:nth-child(3) {
    border-color: var(--accent-green);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(15, 18, 38, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.feature-card:nth-child(1) .feature-icon {
    color: var(--primary-color);
}

.feature-card:nth-child(2) .feature-icon {
    color: var(--secondary-light);
}

.feature-card:nth-child(3) .feature-icon {
    color: var(--accent-green);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    flex-grow: 1;
}

.intro-conclusion {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(74, 0, 224, 0.1), rgba(255, 94, 20, 0.1));
    border-radius: var(--border-radius);
}

.intro-conclusion p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.btn-accent {
    background: linear-gradient(45deg, var(--accent-green), #4CAF50);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

.btn-accent:hover {
    background: linear-gradient(45deg, #00c853, var(--accent-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.4);
    color: var(--text-light);
}

.floating-graphics {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.graphic {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    color: var(--text-light);
}

.graphic-1 {
    top: 15%;
    left: 5%;
    animation: floatGraphic 8s infinite ease-in-out;
}

.graphic-2 {
    bottom: 20%;
    right: 5%;
    animation: floatGraphic 12s infinite ease-in-out;
    animation-delay: 2s;
}

.graphic-3 {
    top: 60%;
    left: 90%;
    animation: floatGraphic 10s infinite ease-in-out;
    animation-delay: 4s;
}

@keyframes floatGraphic {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-15px, 15px) rotate(5deg);
    }

    50% {
        transform: translate(0, 30px) rotate(0deg);
    }

    75% {
        transform: translate(15px, 15px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Media Queries for Introduction Section */
@media screen and (max-width: 992px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .intro-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .intro-features {
        grid-template-columns: 1fr;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .feature-card {
        margin-bottom: var(--spacing-md);
    }

    .intro-conclusion p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 576px) {
    .intro-section {
        padding: var(--spacing-lg) 0;
    }

    .section-header {
        margin-bottom: var(--spacing-lg);
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .graphic {
        font-size: 2rem;
    }
}

/* Section 3 - Features Section Styles */
.features-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto var(--spacing-xl);
}

.features-intro p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.features-intro p:last-child {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.2rem;
}

.features-list-container {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.features-image {
    flex: 0 0 40%;
    position: relative;
}

.features-img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(74, 0, 224, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.features-img:hover {
    transform: rotate(0);
}

.image-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-yellow));
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.image-badge i {
    color: var(--text-light);
}

.features-list {
    flex: 0 0 55%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
    background-color: rgba(26, 31, 54, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: rgba(26, 31, 54, 0.8);
}

.feature-item .feature-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background: rgba(74, 0, 224, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.25rem;
}

.feature-item:nth-child(2n) .feature-icon {
    background: rgba(255, 94, 20, 0.15);
    color: var(--secondary-light);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.additional-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.additional-feature-box {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, rgba(7, 10, 23, 0.9), rgba(26, 31, 54, 0.8));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.additional-feature-box:hover {
    transform: translateY(-5px);
}

.additional-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
}

.additional-feature-box:nth-child(2) .additional-icon {
    background: linear-gradient(45deg, var(--secondary-dark), var(--secondary-color));
}

.additional-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.additional-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.features-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Media Queries for Features Section */
@media screen and (max-width: 992px) {
    .features-list-container {
        flex-direction: column;
    }

    .features-image {
        flex: 0 0 100%;
        margin-bottom: var(--spacing-lg);
    }

    .features-img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .features-list {
        flex: 0 0 100%;
    }

    .additional-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media screen and (max-width: 768px) {
    .features-intro p {
        font-size: 1rem;
    }

    .features-intro p:last-child {
        font-size: 1.1rem;
    }

    .feature-item {
        padding: var(--spacing-sm);
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .additional-feature-box {
        padding: var(--spacing-md);
    }

    .additional-icon {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
        font-size: 1.25rem;
    }

    .additional-content h3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .features-intro p:last-child {
        font-size: 1rem;
    }

    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .features-img {
        max-width: 100%;
    }

    .image-badge {
        right: 10px;
        top: 10px;
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }

    .additional-feature-box {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
}

/* Section 4 - Promotions Section Styles */
.promotions-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
    overflow: hidden;
}

.promotions-section .section-header {
    margin-bottom: var(--spacing-lg);
}

.promotions-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto var(--spacing-xl);
    padding: var(--spacing-md);
    background-color: rgba(26, 31, 54, 0.5);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-yellow);
    border-right: 4px solid var(--accent-yellow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.promotions-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.promotions-intro strong {
    color: var(--primary-light);
}

.promotions-container {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.promotions-list {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.promotion-card {
    background: linear-gradient(135deg, rgba(26, 31, 54, 0.8), rgba(7, 10, 23, 0.9));
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.promotion-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-light);
    background-color: rgba(74, 0, 224, 0.2);
}

.promotion-card:nth-child(1) .promotion-icon {
    background-color: rgba(255, 94, 20, 0.2);
    color: var(--primary-color);
}

.promotion-card:nth-child(2) .promotion-icon {
    background-color: rgba(255, 170, 0, 0.2);
    color: var(--accent-yellow);
}

.promotion-card:nth-child(3) .promotion-icon {
    background-color: rgba(0, 230, 118, 0.2);
    color: var(--accent-green);
}

.promotion-card:nth-child(4) .promotion-icon {
    background-color: rgba(74, 0, 224, 0.2);
    color: var(--secondary-light);
}

.promotion-card:nth-child(5) .promotion-icon {
    background-color: rgba(255, 61, 113, 0.2);
    color: var(--accent-red);
}

.promotion-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.promotion-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.promotions-banner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-lg);
}

.promotions-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--spacing-lg);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    width: 100%;
}

.banner-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-yellow);
}

.banner-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.8);
}

.promotions-footer {
    background-color: rgba(26, 31, 54, 0.5);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.promotions-footer p {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    color: var(--text-muted);
}

.promotions-footer p:last-child {
    margin-bottom: 0;
}

/* Background Animation Elements */
.promo-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.promo-element {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.05;
    color: var(--text-light);
    animation: floatPromo 10s infinite ease-in-out;
}

.pe-1 {
    top: 15%;
    left: 7%;
    font-size: 2rem;
    animation-duration: 12s;
}

.pe-2 {
    top: 60%;
    left: 10%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.pe-3 {
    top: 25%;
    right: 8%;
    font-size: 2.5rem;
    animation-delay: 1s;
    animation-duration: 10s;
}

.pe-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 3s;
    animation-duration: 14s;
}

.pe-5 {
    bottom: 40%;
    left: 15%;
    font-size: 2rem;
    animation-delay: 4s;
    animation-duration: 13s;
}

@keyframes floatPromo {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-10px, 15px) rotate(5deg);
    }

    50% {
        transform: translate(10px, 30px) rotate(0deg);
    }

    75% {
        transform: translate(15px, 15px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Media Queries for Promotions Section */
@media screen and (max-width: 1200px) {
    .promotions-list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 992px) {
    .promotions-container {
        flex-direction: column;
    }

    .promotions-banner {
        padding: var(--spacing-xl);
    }

    .promotions-intro p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .promotion-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .promotion-icon {
        margin-bottom: var(--spacing-sm);
    }

    .banner-content h3 {
        font-size: 1.5rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .banner-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .promotions-section {
        padding: var(--spacing-lg) 0;
    }

    .banner-content {
        padding: var(--spacing-md);
    }

    .promotions-footer {
        padding: var(--spacing-md);
    }

    .promotions-footer p {
        font-size: 0.9rem;
    }

    .promo-element {
        display: none;
    }
}

/* Section 5 - Security Section Styles */
.security-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color), var(--secondary-color));
}

.security-container {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
}

.security-content {
    flex: 3;
    order: 1;
}

.security-visual {
    flex: 2;
    order: 2;
    position: sticky;
    top: 100px;
}

.security-intro {
    padding: var(--spacing-lg);
    background-color: rgba(26, 31, 54, 0.5);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.security-intro p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.security-intro p:last-child {
    margin-bottom: 0;
}

.security-intro strong {
    color: var(--primary-light);
    font-weight: 700;
}

.transaction-info {
    padding: var(--spacing-lg);
    background-color: rgba(7, 10, 23, 0.5);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.transaction-info h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.transaction-info h3 strong {
    color: var(--primary-light);
}

.transaction-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transaction-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    background-color: rgba(26, 31, 54, 0.3);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.transaction-list li:hover {
    transform: translateX(5px);
    background-color: rgba(26, 31, 54, 0.5);
}

.transaction-list li:last-child {
    margin-bottom: 0;
}

.transaction-list li i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.transaction-list li:nth-child(2) i {
    color: var(--accent-green);
}

.transaction-list li:nth-child(3) i {
    color: var(--secondary-light);
}

.transaction-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.transaction-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.transaction-text p strong {
    color: var(--primary-light);
}

.security-footer {
    padding: var(--spacing-lg);
    background-color: rgba(26, 31, 54, 0.5);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-right: 4px solid var(--secondary-color);
}

.security-footer p {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.security-footer p:last-child {
    margin-bottom: 0;
}

.security-footer strong {
    color: var(--primary-light);
    font-weight: 700;
}

/* Security Visual Elements */
.security-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(7, 10, 23, 0.9));
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(74, 0, 224, 0.3);
    overflow: hidden;
    position: relative;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.security-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.security-card-header i {
    font-size: 2rem;
    color: var(--secondary-light);
}

.security-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--text-light);
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    background-color: rgba(26, 31, 54, 0.5);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.security-feature:hover {
    transform: translateX(5px);
}

.security-feature i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.security-feature span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.security-action {
    text-align: center;
    position: relative;
    z-index: 1;
}

.security-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    position: relative;
}

.secure-icon {
    position: absolute;
    z-index: 2;
    font-size: 2.5rem;
    color: var(--text-light);
}

.shield-animation {
    position: relative;
    width: 150px;
    height: 180px;
}

.shield-outer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0.3;
    border-radius: 75px 75px 10px 10px;
    animation: pulse 3s infinite ease-in-out;
}

.shield-inner {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 60px 60px 5px 5px;
    opacity: 0.5;
}

.shield-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 95px 95px 30px 30px;
    background: radial-gradient(ellipse at center, rgba(74, 0, 224, 0.4) 0%, rgba(74, 0, 224, 0) 70%);
    animation: glow 3s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes glow {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 0.4;
    }
}

/* Media Queries for Security Section */
@media screen and (max-width: 992px) {
    .security-container {
        flex-direction: column;
    }

    .security-content {
        order: 2;
    }

    .security-visual {
        order: 1;
        margin-bottom: var(--spacing-lg);
        position: static;
    }

    .security-card {
        max-width: 500px;
        margin: 0 auto var(--spacing-lg);
    }

    .transaction-info h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .security-intro p {
        font-size: 1rem;
    }

    .transaction-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .transaction-list li i {
        margin-bottom: var(--spacing-sm);
    }

    .security-footer p {
        font-size: 0.95rem;
    }

    .security-card-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .shield-animation {
        width: 120px;
        height: 150px;
    }
}

@media screen and (max-width: 576px) {
    .security-section {
        padding: var(--spacing-lg) 0;
    }

    .security-intro,
    .transaction-info,
    .security-footer {
        padding: var(--spacing-md);
    }

    .transaction-info h3 {
        font-size: 1.1rem;
    }

    .transaction-text h4 {
        font-size: 1rem;
    }

    .security-feature {
        padding: var(--spacing-xs);
    }

    .security-illustration {
        height: 200px;
    }
}

/* Section 6 - Game Reviews Section Styles */
.game-reviews-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
    overflow: hidden;
}

.game-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20.83l2.83-2.83 1.41 1.41L1.41 22.24H0v-1.41zM0 3.07l2.83-2.83 1.41 1.41L1.41 4.48H0V3.07zm20 0l2.83-2.83 1.41 1.41L21.41 4.48H20V3.07zm0 17.76l2.83-2.83 1.41 1.41-2.83 2.83H20v-1.41zm0 17.76l2.83-2.83 1.41 1.41-2.83 2.83H20v-1.41zM12.41 6.48l2.83-2.83 1.41 1.41-2.83 2.83H12.4V6.48zm0 17.76l2.83-2.83 1.41 1.41-2.83 2.83H12.4v-1.41zm0 17.76l2.83-2.83 1.41 1.41-2.83 2.83H12.4v-1.41zM4.83 6.48l2.83-2.83 1.41 1.41-2.83 2.83H4.81V6.48zm0 17.76l2.83-2.83 1.41 1.41-2.83 2.83H4.81v-1.41zm0 17.76l2.83-2.83 1.41 1.41-2.83 2.83H4.81v-1.41zm27.98-35.52l2.83-2.83 1.41 1.41-2.83 2.83h-1.42V6.48zm0 17.76l2.83-2.83 1.41 1.41-2.83 2.83h-1.42v-1.41zm0 17.76l2.83-2.83 1.41 1.41-2.83 2.83h-1.42v-1.41zm8.58-35.52l2.83-2.83 1.41 1.41-2.83 2.83h-1.42V6.48zm0 17.76l2.83-2.83 1.41 1.41-2.83 2.83h-1.42v-1.41zm0 17.76l2.83-2.83 1.41 1.41-2.83 2.83h-1.42v-1.41zm-4.9-17.76l2.83-2.83 1.41 1.41-2.83 2.83h-1.42v-1.41zM12.41 0h1.41v1.41h-1.41V0zm0 17.76h1.41v1.41h-1.41v-1.41zm0 17.76h1.41v1.41h-1.41v-1.41zm-8.58 0h1.41v1.41H3.83v-1.41zm0-17.76h1.41v1.41H3.83v-1.41zm0-17.76h1.41v1.41H3.83V0zM30.24 0h1.41v1.41h-1.41V0zm0 17.76h1.41v1.41h-1.41v-1.41zm0 17.76h1.41v1.41h-1.41v-1.41zm-8.58 0h1.41v1.41h-1.41v-1.41zm0-17.76h1.41v1.41h-1.41v-1.41zm0-17.76h1.41v1.41h-1.41V0z'/%3E%3C/g%3E%3C/svg%3E");
}

.game-reviews-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    background-color: rgba(26, 31, 54, 0.5);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.game-reviews-intro p {
    font-size: 1.05rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
    line-height: 1.7;
}

.game-reviews-intro p:last-child {
    margin-bottom: 0;
}

.game-reviews-intro strong {
    color: var(--primary-light);
    font-weight: 700;
}

.popular-games {
    margin-bottom: var(--spacing-xl);
}

.popular-games h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-xs);
}

.popular-games h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

.game-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.game-card {
    background: linear-gradient(135deg, rgba(26, 31, 54, 0.9), rgba(7, 10, 23, 0.95));
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    transform: translateY(20px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.game-card:hover .play-btn {
    transform: translateY(0);
}

.play-btn:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: var(--text-light);
}

.game-info {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-info h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.game-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.game-rating {
    color: var(--accent-yellow);
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.tips-section {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: center;
}

.tips-content {
    flex: 3;
}

.tips-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: rgba(26, 31, 54, 0.5);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tips-list li:hover {
    transform: translateX(10px);
    background-color: rgba(26, 31, 54, 0.7);
}

.tips-list li:last-child {
    margin-bottom: 0;
}

.tip-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background-color: rgba(74, 0, 224, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--secondary-light);
}

.tips-list li:nth-child(even) .tip-icon {
    background-color: rgba(255, 94, 20, 0.1);
    color: var(--primary-light);
}

.tip-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.tip-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.tip-text p strong {
    color: var(--primary-light);
    word-break: break-all;
}

.tips-image {
    flex: 2;
}

.tips-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(74, 0, 224, 0.3);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.tips-image img:hover {
    transform: rotate(0);
}

.final-cta {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(7, 10, 23, 0.8), rgba(26, 31, 54, 0.7));
    border-radius: var(--border-radius);
    margin-top: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.final-cta p:last-of-type {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
}

.final-cta strong {
    color: var(--primary-light);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Game Background Elements */
.game-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.game-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.05;
    color: var(--text-light);
    animation: floatGame 15s infinite ease-in-out;
}

.ge-1 {
    top: 10%;
    left: 5%;
    animation-duration: 17s;
}

.ge-2 {
    top: 40%;
    right: 8%;
    animation-delay: 2s;
    animation-duration: 13s;
}

.ge-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.ge-4 {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.ge-5 {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 18s;
}

@keyframes floatGame {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-20px, 20px) rotate(5deg);
    }

    50% {
        transform: translate(10px, 40px) rotate(0deg);
    }

    75% {
        transform: translate(20px, 20px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Media Queries for Game Reviews Section */
@media screen and (max-width: 1200px) {
    .game-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .tips-section {
        flex-direction: column-reverse;
    }

    .tips-image {
        margin-bottom: var(--spacing-lg);
    }

    .tips-image img {
        max-width: 70%;
        margin: 0 auto;
        display: block;
    }

    .game-reviews-intro p {
        font-size: 1rem;
    }

    .popular-games h3,
    .tips-content h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .game-cards {
        grid-template-columns: 1fr;
    }

    .game-info h4 {
        font-size: 1.1rem;
    }

    .final-cta {
        padding: var(--spacing-lg);
    }

    .final-cta p {
        font-size: 1rem;
    }

    .final-cta p:last-of-type {
        font-size: 1.1rem;
    }

    .tips-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .tip-icon {
        margin-bottom: var(--spacing-xs);
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 576px) {
    .game-reviews-section {
        padding: var(--spacing-lg) 0;
    }

    .game-reviews-intro {
        padding: var(--spacing-md);
    }

    .game-image {
        height: 180px;
    }

    .tip-text h4 {
        font-size: 1rem;
    }

    .tips-image img {
        max-width: 100%;
    }

    .game-element {
        display: none;
    }
}