/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: var(--primary-color);
}

.main-navigation {
    margin-left: auto;
    margin-right: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 25px;
}

.nav-menu li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px auto;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-color-card);
    z-index: 999;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
}

.mobile-nav-menu li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-menu li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-buttons .btn {
    width: 100%;
    text-align: center;
}

/* Active state for menu toggle */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-color-secondary);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-tagline {
    color: var(--text-color-muted);
    margin-top: 15px;
    font-size: 1rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 160px;
}

.footer-column h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-color-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: var(--text-color-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-disclaimer {
    color: var(--text-color-muted);
    font-size: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 900;
    padding: 0 15px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    flex: 1;
    max-width: 200px;
}

.login-btn {
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: white;
}

.register-btn {
    background: linear-gradient(135deg, var(--primary-color), #9b59b6);
    color: white;
}

.bonus-btn {
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    color: white;
}

.sticky-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: white;
}

/* Animation for sticky buttons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.register-btn {
    animation: pulse 2s infinite;
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-buttons {
        display: none;
    }

    .header-content {
        padding: 10px 0;
    }

    .sticky-buttons {
        padding: 0 10px;
    }

    .sticky-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.8rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        width: 100%;
    }

    .footer-column {
        min-width: 140px;
    }

    .sticky-btn span {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .sticky-buttons {
        bottom: 10px;
        gap: 5px;
    }

    .sticky-btn {
        padding: 10px;
        max-width: 120px;
    }

    .sticky-btn i {
        font-size: 0.9rem;
    }

    .sticky-btn span {
        font-size: 0.8rem;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .sticky-btn {
        max-width: 100px;
    }
}

/* Adjust main content spacing to accommodate fixed header */
body {
    padding-top: 70px;
    /* Adjust based on header height */
}

main {
    min-height: calc(100vh - 70px - 320px);
    /* Adjust based on header and footer heights */
}

/* Remove top padding from hero section since we already have body padding */
.hero-section {
    padding-top: 30px;
}

/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
}

/* Add overlay for mobile menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Base Styles and Reset */
:root {
    /* Dark Mode Theme Colors */
    --primary-color: #8e44ad;
    /* Purple */
    --secondary-color: #2ecc71;
    /* Green */
    --accent-color: #f39c12;
    /* Orange */
    --text-color: #ffffff;
    /* White */
    --text-color-muted: #b3b3b3;
    /* Light Gray */
    --bg-color-primary: #121212;
    /* Very Dark Gray */
    --bg-color-secondary: #1e1e1e;
    /* Dark Gray */
    --bg-color-card: #252525;
    /* Medium Dark Gray */
    --border-color: #333333;
    /* Dark Border Color */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--bg-color-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    gap: 8px;
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #9b59b6);
    color: white;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9b59b6, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.6);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #27ae60);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #27ae60, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
    color: white;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(to bottom, #1a0033, var(--bg-color-primary));
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    background: linear-gradient(to right, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-color-muted);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image .main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.hero-image .main-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    animation: float 6s infinite ease-in-out;
}

.slot-icon {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.card-icon {
    bottom: 30%;
    right: 15%;
    width: 50px;
    height: 50px;
    animation-delay: 2s;
}

.coin-icon {
    bottom: 10%;
    left: 20%;
    width: 40px;
    height: 40px;
    animation-delay: 1s;
}

.floating-element i {
    font-size: 1.5rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-section {
        padding: 60px 0 40px;
    }
}

/* Features Section Styles */
.features-section {
    background-color: var(--bg-color-secondary);
    position: relative;
    overflow: hidden;
}

.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='%239C92AC' 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;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.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;
}

.features-content {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.features-text {
    flex: 1.5;
}

.features-text p {
    margin-bottom: 1.2rem;
    color: var(--text-color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.features-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.features-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: var(--bg-color-card);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Add to existing styles */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: rgba(45, 45, 45, 0.9);
}

.feature-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    /* Maintain hover effect */
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-color-muted);
    line-height: 1.5;
}

.features-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    color: white;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #e67e22, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
    color: white;
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
    .features-content {
        flex-direction: column;
    }

    .features-cards {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .features-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        padding: 20px 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 20px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .features-cards {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .feature-card {
        max-width: 280px;
        margin: 0 auto;
    }

    .features-content {
        gap: 30px;
    }

    .features-text p {
        font-size: 1rem;
    }
}

/* Features Detail Section Styles */
.features-detail-section {
    background: linear-gradient(to bottom, var(--bg-color-secondary), var(--bg-color-primary));
    position: relative;
    overflow: hidden;
}

.features-detail-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.3) 0%, rgba(142, 68, 173, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.features-detail-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.3) 0%, rgba(46, 204, 113, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.features-detail-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.features-image {
    flex: 1;
    position: relative;
}

.detail-image {
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.features-stats {
    display: flex;
    justify-content: space-between;
    background: rgba(25, 25, 25, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
}

.stat-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color-muted);
}

.features-detail-text {
    flex: 1.2;
}

.features-detail-text p {
    margin-bottom: 1.2rem;
    color: var(--text-color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.features-detail-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 80px;
    margin-bottom: 50px;
}

.highlight-card {
    background-color: var(--bg-color-card);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 22px;
    color: white;
}

.highlight-content {
    flex-grow: 1;
}

.highlight-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.highlight-content p {
    font-size: 0.9rem;
    color: var(--text-color-muted);
    line-height: 1.5;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

/* Animated gradient border */
.section-cta .btn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color), var(--primary-color));
    background-size: 400% 400%;
    border-radius: 53px;
    z-index: -1;
    animation: gradient-border 3s ease infinite;
}

@keyframes gradient-border {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
    .features-detail-content {
        flex-direction: column;
    }

    .features-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 60px;
    }

    .feature-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-stats {
        padding: 15px;
    }

    .stat-item i {
        font-size: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .features-detail-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .feature-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .features-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
        align-items: center;
    }

    .stat-item i {
        margin-bottom: 0;
    }

    .highlight-card {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Promotions Section Styles */
.promotions-section {
    background-color: var(--bg-color-primary);
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.promo-card {
    background: linear-gradient(145deg, var(--bg-color-card), rgba(45, 45, 45, 0.8));
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(142, 68, 173, 0.3);
}

.promo-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    color: white;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(243, 156, 18, 0.3);
}

.promo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.promo-card:hover .promo-icon {
    transform: scale(1.1) rotate(10deg);
}

.promo-icon i {
    font-size: 28px;
    color: white;
}

.promo-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.promo-card p {
    font-size: 0.95rem;
    color: var(--text-color-muted);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 20px;
}

.promo-btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), #9b59b6);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(142, 68, 173, 0.3);
    text-decoration: none;
    margin-top: auto;
}

.promo-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #9b59b6, var(--primary-color));
    box-shadow: 0 6px 15px rgba(142, 68, 173, 0.5);
    color: white;
}

.promotions-content {
    position: relative;
    z-index: 2;
}

.promo-details {
    display: flex;
    gap: 40px;
    align-items: center;
}

.promo-text {
    flex: 1.5;
}

.promo-text p {
    margin-bottom: 1.2rem;
    color: var(--text-color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.promo-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.promo-list {
    background-color: rgba(45, 45, 45, 0.5);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-color);
}

.promo-list h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.promo-list ul {
    list-style: none;
    padding: 0;
}

.promo-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.promo-list li:last-child {
    margin-bottom: 0;
}

.promo-list li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.promo-list li span {
    flex: 1;
    color: var(--text-color-muted);
    line-height: 1.5;
}

.promo-list li strong {
    color: var(--text-color);
}

.promo-image-wrapper {
    flex: 1;
    position: relative;
}

.promo-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.main-promo-image {
    display: block;
    width: 100%;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.promo-image:hover .main-promo-image {
    transform: scale(1.05);
}

.promo-badges {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.flash-badge {
    background: linear-gradient(135deg, var(--primary-color), rgba(142, 68, 173, 0.8));
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: flash 2s infinite;
}

.flash-badge:nth-child(2) {
    animation-delay: 0.7s;
    background: linear-gradient(135deg, var(--accent-color), rgba(243, 156, 18, 0.8));
}

.flash-badge:nth-child(3) {
    animation-delay: 1.4s;
    background: linear-gradient(135deg, var(--secondary-color), rgba(46, 204, 113, 0.8));
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
    .promo-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-details {
        flex-direction: column-reverse;
    }

    .promo-image-wrapper {
        margin-bottom: 40px;
        max-width: 500px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .promo-card {
        padding: 25px 15px;
    }

    .promo-icon {
        width: 60px;
        height: 60px;
    }

    .promo-icon i {
        font-size: 24px;
    }

    .promo-card h3 {
        font-size: 1.2rem;
    }

    .promo-text p {
        font-size: 1rem;
    }

    .promo-list {
        padding: 20px;
    }

    .flash-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .promo-cards {
        grid-template-columns: 1fr;
    }

    .promo-card {
        max-width: 300px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .promo-badges {
        bottom: 10px;
    }

    .flash-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

/* Access Section Styles */
.access-section {
    background-color: var(--bg-color-secondary);
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.access-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, rgba(46, 204, 113, 0) 70%);
    border-radius: 50%;
}

.access-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.15) 0%, rgba(142, 68, 173, 0) 70%);
    border-radius: 50%;
}

.access-content {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.access-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.device-mockups {
    display: flex;
    position: relative;
    height: 400px;
    margin-bottom: 30px;
}

.device-mockup {
    position: absolute;
    transition: all 0.5s ease;
}

.device-mockup.mobile {
    width: 180px;
    height: 360px;
    left: 0;
    z-index: 1;
    transform: perspective(1000px) rotateY(15deg) translateX(30px);
}

.device-mockup.desktop {
    width: 400px;
    height: 260px;
    right: 0;
    top: 50px;
    z-index: 0;
    transform: perspective(1000px) rotateY(-10deg) translateX(-30px);
}

.device-frame {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: var(--bg-color-card);
    padding: 10px;
}

.device-mockup.mobile .device-frame {
    border-radius: 25px;
}

.device-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.device-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.device-frame:hover .device-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.overlay-content span {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.access-buttons {
    display: flex;
    gap: 15px;
}

.access-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.access-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.access-btn i {
    font-size: 1.2rem;
}

.access-text {
    flex: 1.3;
}

.access-text p {
    margin-bottom: 1.2rem;
    color: var(--text-color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.access-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.access-methods {
    margin: 30px 0;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.method-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.method-item:last-child {
    margin-bottom: 0;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 24px;
    color: white;
}

.method-content {
    flex: 1;
}

.method-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.method-content p {
    margin-bottom: 0;
    font-size: 1rem;
}

.access-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.link-box {
    flex: 1;
    background: linear-gradient(145deg, var(--bg-color-card), rgba(45, 45, 45, 0.7));
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.link-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-color);
}

.link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-icon i {
    font-size: 24px;
    color: white;
}

.link-text {
    flex: 1;
    text-align: left;
}

.link-text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.main-link {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
}

.main-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
    transition: width 0.3s ease;
}

.main-link:hover {
    color: var(--accent-color);
}

.main-link:hover::after {
    width: 100%;
}

/* Device animation on hover */
.device-mockups:hover .device-mockup.mobile {
    transform: perspective(1000px) rotateY(5deg) translateX(0);
}

.device-mockups:hover .device-mockup.desktop {
    transform: perspective(1000px) rotateY(-5deg) translateX(0);
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
    .access-content {
        flex-direction: column-reverse;
    }

    .device-mockups {
        margin: 30px auto;
        width: 90%;
        max-width: 500px;
    }

    .device-mockup.mobile {
        left: 50%;
        transform: perspective(1000px) rotateY(15deg) translateX(-140px);
    }

    .device-mockup.desktop {
        right: 50%;
        transform: perspective(1000px) rotateY(-10deg) translateX(50px);
    }

    .device-mockups:hover .device-mockup.mobile {
        transform: perspective(1000px) rotateY(5deg) translateX(-130px);
    }

    .device-mockups:hover .device-mockup.desktop {
        transform: perspective(1000px) rotateY(-5deg) translateX(40px);
    }
}

@media (max-width: 768px) {
    .device-mockups {
        height: 300px;
    }

    .device-mockup.mobile {
        width: 130px;
        height: 260px;
        transform: perspective(1000px) rotateY(15deg) translateX(-100px);
    }

    .device-mockup.desktop {
        width: 300px;
        height: 190px;
        transform: perspective(1000px) rotateY(-10deg) translateX(40px);
    }

    .device-mockups:hover .device-mockup.mobile {
        transform: perspective(1000px) rotateY(5deg) translateX(-90px);
    }

    .device-mockups:hover .device-mockup.desktop {
        transform: perspective(1000px) rotateY(-5deg) translateX(30px);
    }

    .access-links {
        flex-direction: column;
    }

    .link-box {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .device-mockups {
        height: 400px;
        flex-direction: column;
        align-items: center;
    }

    .device-mockup.mobile {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        transform: none !important;
    }

    .device-mockup.desktop {
        position: relative;
        top: 0;
        right: 0;
        transform: none !important;
    }

    .access-buttons {
        flex-direction: column;
        width: 100%;
    }

    .access-btn {
        width: 100%;
    }

    .method-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .method-content h3 {
        text-align: center;
    }
}

/* Games Section Styles */
.games-section {
    background: linear-gradient(to bottom, var(--bg-color-primary), var(--bg-color-secondary));
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%239C92AC' fill-opacity='0.03'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.games-content {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.games-info {
    flex: 1.2;
    padding-right: 20px;
}

.games-info p {
    margin-bottom: 1.2rem;
    color: var(--text-color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.games-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

.games-info a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 700;
    transition: all 0.3s ease;
}

.games-info a:hover {
    color: var(--secondary-color);
}

.games-features {
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.games-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.games-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 12px;
}

.games-features li:last-child {
    margin-bottom: 0;
}

.games-features li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.games-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.game-category {
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-header h3 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--text-color);
}

.game-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.game-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background-color: var(--bg-color-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    border-color: rgba(142, 68, 173, 0.3);
}

.game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 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: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.game-card:hover .play-btn {
    transform: scale(1);
}

.play-btn:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 0 20px rgba(142, 68, 173, 0.6);
    color: white;
}

.game-title {
    padding: 15px;
    text-align: center;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.1rem;
}

.section-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Float animation for game categories */
@keyframes floatCategory {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.game-category:nth-child(1) {
    animation: floatCategory 4s ease-in-out 0s infinite;
}

.game-category:nth-child(2) {
    animation: floatCategory 4s ease-in-out 1.3s infinite;
}

.game-category:nth-child(3) {
    animation: floatCategory 4s ease-in-out 2.6s infinite;
}

/* Glow effect on hover */
.game-category:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(142, 68, 173, 0.3);
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
    .games-content {
        flex-direction: column;
    }

    .games-info {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .games-gallery {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .game-category {
        padding: 15px;
    }

    .category-header h3 {
        font-size: 1.2rem;
    }

    .game-title {
        font-size: 1rem;
        padding: 12px 10px;
    }

    .play-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .game-cards {
        grid-template-columns: 1fr;
    }

    .game-card {
        max-width: 300px;
        margin: 0 auto;
    }

    .games-features li {
        align-items: flex-start;
    }

    .games-features li i {
        margin-top: 5px;
    }
}