/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--primary-color);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0 0.5rem;
}

.nav-menu li a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-menu li a i {
    margin-right: 0.5rem;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-button a {
    margin-left: 0.5rem;
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--bg-darker) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: var(--border-radius-md);
    font-weight: 700 !important;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
    box-shadow: inset 0 0 0 2px var(--primary-color);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-darker);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-tagline {
    color: var(--text-muted);
    margin-top: var(--spacing-sm);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-links-column {
    min-width: 160px;
}

.footer-links-column h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    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: 0.5rem;
}

.footer-links-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright,
.disclaimer {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-button:last-child {
    border-right: none;
}

.sticky-button i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.sticky-button.primary {
    background-color: var(--primary-color);
    color: var(--bg-darker);
}

.sticky-button:hover {
    background-color: rgba(255, 152, 0, 0.1);
    color: var(--primary-color);
}

.sticky-button.primary:hover {
    background-color: var(--primary-color);
    opacity: 0.9;
    color: var(--bg-darker);
}

/* Main Content Padding for Fixed Header */
main {
    padding-top: 70px;
    /* Adjust based on header height */
}

/* Media Queries for Header, Footer, and Sticky Buttons */
@media screen and (max-width: 1024px) {
    .nav-menu li {
        margin: 0 0.3rem;
    }

    .nav-menu li a {
        font-size: 0.9rem;
        padding: 0.5rem 0.6rem;
    }
}

@media screen and (max-width: 1150px) {
    .mobile-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 70px;
        /* Should match header height */
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .main-navigation.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        padding: var(--spacing-md) 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .nav-menu li a {
        padding: 1rem;
        display: flex;
        justify-content: center;
        font-size: 1rem;
    }

    .nav-button {
        margin-top: var(--spacing-md);
    }

    .nav-button a {
        margin: 0;
        display: inline-block;
    }
}

@media screen and (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}

@media screen and (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sticky-button span {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .footer-links-column {
        width: 100%;
    }

    .sticky-button i {
        font-size: 1rem;
    }

    .sticky-button span {
        font-size: 0.75rem;
    }
}

/* Base Styles & Theme */
:root {
    /* Dark Theme Colors */
    --primary-color: #ff9800;
    /* Gold/Orange accent color */
    --secondary-color: #1e88e5;
    /* Blue accent color */
    --bg-dark: #121212;
    /* Main background */
    --bg-darker: #0a0a0a;
    /* Darker elements */
    --bg-lighter: #1e1e1e;
    /* Lighter elements */
    --text-color: #ffffff;
    /* Main text */
    --text-muted: #b0b0b0;
    /* Secondary text */
    --border-color: #2c2c2c;
    /* Border color */
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    /* Animation */
    --transition-speed: 0.3s;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout Components */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    gap: 0.5rem;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-darker);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

/* Hero Section Styles */
.hero-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.hero-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 152, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all var(--transition-speed) ease;
}

.hero-image img {
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .hero-section .container {
        gap: var(--spacing-md);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        margin-bottom: var(--spacing-md);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        transform: none;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
    }

    .hero-section {
        padding: var(--spacing-lg) 0;
    }
}

/* Features Section */
.features-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    color: var(--primary-color);
    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: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.feature-text {
    padding: var(--spacing-md);
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.feature-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
}

.feature-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.feature-card {
    background: linear-gradient(145deg, var(--bg-lighter), var(--bg-dark));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 152, 0, 0.1);
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    transition: all var(--transition-speed) ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.feature-card:hover .feature-icon i {
    color: var(--bg-darker);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.feature-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Media Queries for Features Section */
@media screen and (max-width: 1024px) {
    .features-content {
        gap: var(--spacing-md);
    }

    .feature-cards {
        gap: var(--spacing-sm);
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .features-content {
        grid-template-columns: 1fr;
    }

    .feature-text {
        order: 1;
    }

    .feature-cards {
        order: 2;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 580px) {
    .feature-cards {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .feature-text p {
        font-size: 0.95rem;
    }
}

/* Services Section */
.services-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--spacing-lg);
    position: relative;
}

.services-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.services-image:hover img {
    transform: scale(1.05);
}

.services-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), #ff5722);
    color: var(--bg-darker);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.services-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-text {
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    margin-bottom: var(--spacing-md);
}

.services-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
    line-height: 1.7;
}

.services-text p:last-child {
    margin-bottom: 0;
}

.services-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.services-highlights {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.service-highlight-item {
    background: linear-gradient(145deg, var(--bg-lighter), var(--bg-dark));
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
    gap: 0.5rem;
}

.service-highlight-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.2);
}

.service-highlight-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.service-highlight-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
}

.services-cta {
    text-align: center;
}

/* Media Queries for Services Section */
@media screen and (max-width: 1024px) {
    .services-highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-layout {
        gap: var(--spacing-md);
    }
}

@media screen and (max-width: 768px) {
    .services-layout {
        grid-template-columns: 1fr;
    }

    .services-image {
        aspect-ratio: 16/9;
        max-height: 400px;
    }

    .services-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .services-image {
        aspect-ratio: 4/3;
    }

    .services-badge {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .services-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-highlight-item {
        padding: 0.75rem 0.5rem;
    }

    .service-highlight-item i {
        font-size: 1.2rem;
    }

    .service-highlight-item span {
        font-size: 0.75rem;
    }

    .services-text p {
        font-size: 0.95rem;
    }
}

/* Gambling World Section */
.gambling-world-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-lighter);
    position: relative;
    overflow: hidden;
}

.gambling-world-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.gambling-world-section::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gambling-world-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.gambling-world-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.gambling-box {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.7), rgba(18, 18, 18, 0.7));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gambling-box:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gambling-box-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(30, 136, 229, 0.1));
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    transition: all var(--transition-speed) ease;
}

.gambling-box:hover .gambling-box-icon {
    background: linear-gradient(135deg, var(--secondary-color), rgba(30, 136, 229, 0.5));
}

.gambling-box-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: all var(--transition-speed) ease;
}

.gambling-box:hover .gambling-box-icon i {
    color: white;
}

.gambling-box h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.gambling-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.gambling-world-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.gambling-content {
    background-color: rgba(18, 18, 18, 0.7);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
}

.gambling-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
    line-height: 1.7;
}

.gambling-content p:last-child {
    margin-bottom: 0;
}

.gambling-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.gambling-content a {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: underline;
    transition: all var(--transition-speed) ease;
}

.gambling-content a:hover {
    color: var(--primary-color);
}

.gambling-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.gambling-image {
    height: 100%;
    width: 100%;
}

.gambling-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gambling-image-container:hover img {
    transform: scale(1.05);
}

.gambling-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Media Queries for Gambling World Section */
@media screen and (max-width: 1200px) {
    .gambling-world-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .gambling-world-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .gambling-image-container {
        aspect-ratio: 16/9;
        max-height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .gambling-box {
        padding: var(--spacing-sm);
    }

    .gambling-box-icon {
        width: 60px;
        height: 60px;
    }

    .gambling-box-icon i {
        font-size: 1.5rem;
    }

    .gambling-box h3 {
        font-size: 1.1rem;
    }

    .gambling-box p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .gambling-world-boxes {
        grid-template-columns: 1fr;
    }

    .gambling-image-overlay {
        padding: var(--spacing-sm);
    }

    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .gambling-content p {
        font-size: 0.95rem;
    }
}

/* Security Section Styles */
.security-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.security-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Security Cards */
.security-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.security-card {
    background: linear-gradient(135deg, var(--bg-lighter), var(--bg-dark));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.security-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.security-card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(30, 136, 229, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.security-card-icon i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.security-card-content {
    flex: 1;
}

.security-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}

.security-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Security Content */
.security-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.security-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.security-image img {
    width: 100%;
    display: block;
    height: auto;
}

.security-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), #1565C0);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.security-badge i {
    color: white;
    font-size: 1.2rem;
}

.security-badge span {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.security-text {
    background-color: rgba(25, 25, 25, 0.7);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
}

.security-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
    line-height: 1.7;
}

.security-text p:last-child {
    margin-bottom: 0;
}

.security-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Security Action */
.security-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(30, 136, 229, 0.05));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.security-bulletpoints {
    display: flex;
    gap: var(--spacing-md);
}

.security-bulletpoint {
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-bulletpoint i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.security-bulletpoint span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Media Queries for Security Section */
@media screen and (max-width: 1200px) {
    .security-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .security-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .security-image {
        max-height: 400px;
        overflow: hidden;
    }

    .security-image img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .security-card {
        padding: var(--spacing-sm);
    }

    .security-card-icon {
        width: 40px;
        height: 40px;
    }

    .security-action {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .security-bulletpoints {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media screen and (max-width: 576px) {
    .security-cards {
        grid-template-columns: 1fr;
    }

    .security-badge {
        bottom: 10px;
        right: 10px;
        padding: 0.6rem 1rem;
    }

    .security-badge i {
        font-size: 1rem;
    }

    .security-badge span {
        font-size: 0.8rem;
    }

    .security-text p {
        font-size: 0.95rem;
    }
}

/* Promotions Section Styles */
.promotions-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-lighter);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.promotions-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.promotions-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
}

.promotions-intro p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.promotions-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.promotion-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.7), rgba(25, 25, 25, 0.7));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: all var(--transition-speed) ease;
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.promotion-card:hover::before {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
}

.promotion-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 152, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    transition: all var(--transition-speed) ease;
}

.promotion-card:hover .promotion-icon {
    background: linear-gradient(135deg, var(--primary-color), rgba(255, 152, 0, 0.5));
}

.promotion-icon i {
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all var(--transition-speed) ease;
}

.promotion-card:hover .promotion-icon i {
    color: var(--bg-darker);
}

.promotion-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.promotion-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    flex-grow: 1;
}

.promotion-card strong {
    color: var(--primary-color);
    font-weight: 700;
}

.btn-outline {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    color: var(--primary-color);
    font-weight: 700;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-darker);
}

.promotions-details {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.promotion-info {
    background-color: rgba(20, 20, 20, 0.7);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
}

.promotion-info p {
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
    line-height: 1.7;
}

.promotion-info p:last-child {
    margin-bottom: 0;
}

.promotion-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

.promotion-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.promotion-image:hover img {
    transform: scale(1.05);
}

.promotion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: var(--spacing-md);
    color: white;
    text-align: center;
}

.promotion-overlay-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.promotion-overlay-content p {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

/* Media Queries for Promotions Section */
@media screen and (max-width: 1024px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promotion-icon {
        width: 60px;
        height: 60px;
    }

    .promotion-icon i {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .promotions-details {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .promotion-image {
        max-height: 400px;
    }

    .promotions-intro p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .promotion-card {
        padding: var(--spacing-sm);
    }

    .promotion-overlay {
        padding: var(--spacing-sm);
    }

    .promotion-overlay-content h3 {
        font-size: 1.3rem;
    }

    .promotion-info p {
        font-size: 0.95rem;
    }
}