/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.site-name {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.site-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.menu li a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu li a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.05);
}

.menu li a i {
    margin-right: 5px;
    font-size: 1rem;
}

.menu li.menu-button {
    margin-left: 10px;
}

.nav-button {
    background-color: var(--primary-color);
    color: var(--text-light) !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #ff7043 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Header Styles */
@media (max-width: 1060px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        position: fixed;
        top: 69px;
        /* Header height */
        left: 0;
        width: 100%;
        height: calc(100vh - 69px);
        flex-direction: column;
        background-color: var(--bg-dark);
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .menu.active {
        transform: translateX(0);
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        padding: 15px;
        border-bottom: 1px solid var(--border-color);
    }

    .menu li.menu-button {
        margin-left: 0;
        margin-top: 20px;
    }

    .menu li.menu-button a {
        display: flex;
        justify-content: center;
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .site-name {
        font-size: 1.5rem;
    }

    .site-tagline {
        font-size: 0.7rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    padding-right: 20px;
}

.footer-site-name {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-section h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Footer Styles */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        text-align: center;
        padding-right: 0;
    }

    .footer-tagline {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-section h4 {
        margin-bottom: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-site-name {
        font-size: 1.5rem;
    }
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    border-top: 1px solid var(--border-color);
}

.sticky-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    color: var(--text-light);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.sticky-button i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.sticky-button span {
    font-size: 0.9rem;
    font-weight: 500;
}

.sticky-button.login {
    background-color: var(--primary-color);
}

.sticky-button.register {
    background-color: var(--secondary-color);
}

.sticky-button.freecredit {
    background-color: #9c27b0;
}

.sticky-button:hover {
    filter: brightness(1.1);
    color: white;
}

/* Add padding to the body to prevent content from being hidden behind sticky buttons */
body {
    padding-bottom: 70px;
}

/* Responsive Sticky Button Styles */
@media (max-width: 480px) {
    .sticky-button {
        padding: 12px 5px;
    }

    .sticky-button i {
        font-size: 1rem;
    }

    .sticky-button span {
        font-size: 0.8rem;
    }

    body {
        padding-bottom: 60px;
    }
}

/* Hero Section CSS */

/* Base Styles & Theme */
:root {
    /* Dark Mode Theme Colors */
    --primary-color: #ff5722;
    /* Orange primary accent */
    --secondary-color: #4caf50;
    /* Green secondary accent */
    --bg-dark: #121212;
    /* Main dark background */
    --bg-card: #1e1e1e;
    /* Card/section background */
    --text-light: #ffffff;
    /* Primary text */
    --text-muted: #b3b3b3;
    /* Secondary/muted text */
    --border-color: #333333;
    /* Border color */
    --gradient-start: #2b2b2b;
    /* Gradient start color */
    --gradient-end: #1a1a1a;
    /* Gradient end color */
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-light);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-decoration: none;
    pointer-events: auto;
}

.cta-button:hover {
    background-color: #ff7043;
    /* Lighter shade of primary */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: var(--text-light);
}

.cta-button.secondary {
    background-color: var(--secondary-color);
}

.cta-button.secondary:hover {
    background-color: #66bb6a;
    /* Lighter shade of secondary */
}

.cta-button i {
    margin-right: 8px;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 80px 0;
    padding-top: 150px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column-reverse;
    }

    .hero-text {
        padding-right: 0;
        margin-top: 40px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0;
        padding-top: 100px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
        padding-top: 100px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.about-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0) 70%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-light);
    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: var(--primary-color);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 30px;
    color: var(--text-light);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-footer {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    border: 1px solid var(--border-color);
    text-align: center;
}

.about-footer p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-footer p:last-of-type {
    margin-bottom: 30px;
}

.about-footer strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-footer .cta-button {
    margin: 0 auto;
    display: inline-flex;
}

/* Responsive Styles for About Section */
@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-footer {
        padding: 30px 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-text p,
    .about-footer p {
        font-size: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }
}

/* Games Section Styles */
.games-section {
    padding: 100px 0;
    background-color: var(--gradient-start);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.games-section .container {
    position: relative;
    z-index: 2;
}

.games-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="3" cy="3" r="1.5" fill="rgba(255, 255, 255, 0.05)"/></svg>');
    opacity: 0.5;
    z-index: -1;
}

.games-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.games-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.games-intro p:last-child {
    margin-bottom: 0;
}

.games-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.game-card {
    position: relative;
    background-color: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-card:hover img {
    opacity: 0.4;
}

.game-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    margin: 30px auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.game-icon i {
    font-size: 36px;
    color: var(--text-light);
}

.game-content {
    position: relative;
    z-index: 2;
    padding: 0 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-card h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.game-card p {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.game-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    align-self: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.game-button:hover {
    background-color: #ff7043;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

.game-button i {
    margin-right: 8px;
}

.games-additional-info {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    border: 1px solid var(--border-color);
}

.games-additional-info p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.games-additional-info p:last-child {
    margin-bottom: 0;
}

.games-additional-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

.games-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-button.large {
    padding: 15px 40px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    display: inline-flex;
    pointer-events: auto;
}

/* Game-specific styles */
.game-card.slots .game-icon {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}

.game-card.baccarat .game-icon {
    background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.game-card.sports .game-icon {
    background: linear-gradient(135deg, #2196f3, #03a9f4);
}

/* Responsive Styles for Games Section */
@media (max-width: 991px) {
    .games-section {
        padding: 80px 0;
    }

    .games-showcase {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .game-card {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .games-section {
        padding: 60px 0;
    }

    .game-card {
        min-height: 320px;
    }

    .game-icon {
        width: 70px;
        height: 70px;
        margin: 25px auto 15px;
    }

    .game-icon i {
        font-size: 30px;
    }

    .game-card h3 {
        font-size: 1.4rem;
    }

    .games-additional-info {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .games-section {
        padding: 40px 0;
    }

    .games-showcase {
        grid-template-columns: 1fr;
    }

    .game-card {
        min-height: 300px;
    }

    .game-content {
        padding: 0 20px 20px;
    }

    .game-card h3 {
        font-size: 1.3rem;
    }

    .game-card p {
        font-size: 0.95rem;
    }

    .games-additional-info {
        padding: 25px 20px;
    }

    .games-intro p,
    .games-additional-info p {
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Security Section Styles */
.security-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.1) 0%, rgba(255, 87, 34, 0) 70%);
    z-index: 0;
}

.security-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0) 70%);
    z-index: 0;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.security-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.security-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.5s ease;
}

.security-image:hover img {
    transform: scale(1.05);
}

.security-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.security-badge i {
    font-size: 18px;
}

.security-details {
    display: flex;
    flex-direction: column;
}

.security-details p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.security-details p a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.security-details p a:hover {
    color: var(--secondary-color);
}

.security-details strong {
    color: var(--primary-color);
    font-weight: 700;
}

.security-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.security-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background-color: var(--bg-card);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-features li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.security-features li i {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    margin-right: 15px;
    min-width: 24px;
}

.security-features li span {
    color: var(--text-light);
    font-size: 1rem;
}

.security-additional {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
}

.security-additional p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.security-additional p:last-child {
    margin-bottom: 0;
}

.security-additional strong {
    color: var(--primary-color);
    font-weight: 700;
}

.security-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Responsive Styles for Security Section */
@media (max-width: 991px) {
    .security-section {
        padding: 80px 0;
    }

    .security-content {
        grid-template-columns: 1fr;
    }

    .security-image {
        max-height: 400px;
    }
}

@media (max-width: 767px) {
    .security-section {
        padding: 60px 0;
    }

    .security-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .security-badge i {
        font-size: 16px;
    }

    .security-features li {
        padding: 12px 15px;
    }

    .security-features li i {
        font-size: 18px;
    }

    .security-features li span {
        font-size: 0.95rem;
    }

    .security-additional {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .security-section {
        padding: 40px 0;
    }

    .security-image {
        max-height: 300px;
    }

    .security-details p,
    .security-additional p {
        font-size: 1rem;
    }

    .security-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .security-badge i {
        font-size: 14px;
    }

    .security-features li {
        padding: 10px 15px;
    }

    .security-additional {
        padding: 25px 20px;
    }
}

/* Promotions Section Styles */
.promotions-section {
    padding: 100px 0;
    background-color: var(--gradient-start);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M0 20 L40 20 M20 0 L20 40" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.promotions-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.promotions-intro p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.promotions-intro p:last-child {
    margin-bottom: 0;
}

.promotions-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.promotions-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.promo-card {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.promo-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.promo-icon::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.promo-icon i {
    font-size: 30px;
    color: var(--text-light);
}

.promo-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.promo-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.promo-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Specific styles for each promo card */
.promo-card.welcome::before {
    background: linear-gradient(90deg, #ff9800, #ff5722);
}

.promo-card.cashback::before {
    background: linear-gradient(90deg, #4caf50, #8bc34a);
}

.promo-card.referral::before {
    background: linear-gradient(90deg, #2196f3, #03a9f4);
}

.promo-card.birthday::before {
    background: linear-gradient(90deg, #9c27b0, #e91e63);
}

.promotions-footer {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.promotions-footer p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.promotions-footer p:last-child {
    margin-bottom: 0;
}

.promotions-footer strong {
    color: var(--primary-color);
    font-weight: 700;
}

.promotions-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Glowing CTA button */
.cta-button.glow {
    position: relative;
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 15px rgba(255, 87, 34, 0.5);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 87, 34, 0.8);
    }

    100% {
        box-shadow: 0 0 15px rgba(255, 87, 34, 0.5);
    }
}

/* Responsive Styles for Promotions Section */
@media (max-width: 991px) {
    .promotions-section {
        padding: 80px 0;
    }

    .promotions-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .promo-card {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .promotions-section {
        padding: 60px 0;
    }

    .promotions-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .promo-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .promo-icon i {
        font-size: 24px;
    }

    .promotions-footer {
        padding: 30px;
    }

    .promo-content h3 {
        font-size: 1.2rem;
    }

    .promo-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 580px) {
    .promotions-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .promotions-section {
        padding: 40px 0;
    }

    .promotions-intro p,
    .promotions-footer p {
        font-size: 1rem;
    }

    .promo-card {
        padding: 20px;
    }

    .promotions-footer {
        padding: 25px 20px;
    }
}

/* Support Section Styles */
.support-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0) 70%);
    z-index: 0;
}

.support-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.support-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.support-text p:last-child {
    margin-bottom: 0;
}

.support-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.support-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.support-image:hover img {
    transform: scale(1.05);
}

.support-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2196f3, #03a9f4);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.support-badge i {
    font-size: 18px;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.feature-item {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    font-size: 40px;
    color: #2196f3;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.feature-item strong {
    color: var(--primary-color);
    font-weight: 700;
}

.support-additional {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
}

.support-additional p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.support-additional p:last-child {
    margin-bottom: 0;
}

.support-additional strong {
    color: var(--primary-color);
    font-weight: 700;
}

.support-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Responsive Styles for Support Section */
@media (max-width: 991px) {
    .support-section {
        padding: 80px 0;
    }

    .support-content {
        grid-template-columns: 1fr;
    }

    .support-image {
        max-height: 400px;
        order: -1;
    }

    .support-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .support-section {
        padding: 60px 0;
    }

    .support-badge {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .support-badge i {
        font-size: 16px;
    }

    .feature-item {
        padding: 25px;
    }

    .feature-item i {
        font-size: 30px;
    }

    .feature-item h3 {
        font-size: 1.2rem;
    }

    .support-additional {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .support-section {
        padding: 40px 0;
    }

    .support-image {
        max-height: 300px;
    }

    .support-text p,
    .support-additional p {
        font-size: 1rem;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item i {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }

    .support-additional {
        padding: 25px 20px;
    }
}

.games-cta a {
    position: relative;
    z-index: 3;
    display: inline-block;
}