/* Header Styling */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
}

.logo a {
    display: flex;
    align-items: baseline;
    text-decoration: none;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-tagline {
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: 2px;
}

.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 var(--spacing-sm);
}

.nav-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.05);
}

.header-buttons {
    display: flex;
    margin-left: var(--spacing-md);
}

.btn-login {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--primary-color);
    margin-right: var(--spacing-sm);
}

.btn-login:hover {
    background-color: rgba(255, 140, 0, 0.1);
    color: var(--primary-color);
}

.btn-register-header {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

.btn-register-header:hover {
    background-color: var(--accent-color);
    color: var(--background-dark);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-xs);
}

/* Main Content Padding for Fixed Header */
main {
    padding-top: 80px;
    /* Adjust based on header height */
}

/* Media Queries for Header */
@media (max-width: 992px) {
    .nav-list {
        gap: var(--spacing-xs);
    }

    .nav-list a {
        font-size: 0.9rem;
        padding: var(--spacing-xs);
    }

    .header-buttons .btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 1150px) {
    .header-content {
        padding: var(--spacing-sm) 0;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        /* Adjust based on mobile header height */
        left: 0;
        width: 100%;
        background-color: var(--background-dark);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        padding: var(--spacing-md) 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .nav-list li {
        margin: var(--spacing-xs) 0;
        width: 100%;
        text-align: center;
    }

    .nav-list a {
        display: block;
        padding: var(--spacing-sm);
        width: 100%;
    }

    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Footer Styling */
.site-footer {
    background-color: var(--background-card);
    padding-top: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
    position: relative;
    padding-bottom: var(--spacing-xs);
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-right: var(--spacing-xs);
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.footer-contact p i {
    color: var(--primary-color);
    margin-right: var(--spacing-sm);
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: var(--spacing-lg) 0;
}

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-lg);
}

.footer-disclaimer p {
    color: var(--text-secondary);
    text-align: center;
    font-size: 0.85rem;
    margin: 0;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.footer-policy {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-policy li {
    margin-left: var(--spacing-md);
}

.footer-policy a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-policy a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Media Queries for Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .footer-logo {
        grid-column: span 2;
        text-align: center;
    }

    .footer-logo .logo-text {
        display: inline-block;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        grid-column: span 1;
    }

    .footer-info {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .footer-policy {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-policy li {
        margin: 0 var(--spacing-sm);
        margin-top: var(--spacing-xs);
    }
}

/* Sticky Buttons Styling */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-xs);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.btn-login-sticky {
    border-top-color: var(--secondary-color);
}

.btn-login-sticky:hover {
    background-color: rgba(74, 31, 184, 0.1);
    color: var(--secondary-color);
}

.btn-register-sticky {
    border-top-color: var(--primary-color);
}

.btn-register-sticky:hover {
    background-color: rgba(255, 140, 0, 0.1);
    color: var(--primary-color);
}

.btn-bonus-sticky {
    border-top-color: var(--accent-color);
}

.btn-bonus-sticky:hover {
    background-color: rgba(33, 230, 193, 0.1);
    color: var(--accent-color);
}

/* Adjust footer bottom padding to account for sticky buttons */
.site-footer {
    padding-bottom: 70px;
    /* Adjust based on sticky buttons height */
}

/* Media Queries for Sticky Buttons */
@media (max-width: 576px) {
    .sticky-btn {
        padding: var(--spacing-xs);
    }

    .sticky-btn i {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .sticky-btn span {
        font-size: 0.8rem;
    }
}

/* Base Theme and Reset */
:root {
    /* Dark Theme Colors */
    --primary-color: #ff8c00;
    /* Orange */
    --secondary-color: #4a1fb8;
    /* Purple */
    --accent-color: #21e6c1;
    /* Teal */
    --background-dark: #121212;
    /* Near Black */
    --background-card: #1e1e1e;
    /* Dark Gray */
    --text-primary: #ffffff;
    /* White */
    --text-secondary: #b3b3b3;
    /* Light Gray */
    --text-accent: #ff8c00;
    /* Orange */
    --border-color: #333333;
    /* Dark Gray */
    --success-color: #4caf50;
    /* Green */
    --danger-color: #f44336;
    /* Red */
    --warning-color: #ff9800;
    /* Amber */
    /* Typography */
    --heading-font: 'Prompt', sans-serif;
    --body-font: 'Sarabun', sans-serif;
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    /* Container Width */
    --container-width: 1280px;
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    /* Box Shadow */
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.2);
}

/* Global Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: 2rem;
    color: var(--text-accent);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-family: var(--heading-font);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-right: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.btn i {
    margin-right: var(--spacing-xs);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--background-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

/* Section Styling */
section {
    padding: var(--spacing-xxl) 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 1) 0%, rgba(30, 30, 30, 1) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cpath fill="%23ffffff" fill-opacity="0.05" 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"%3E%3C/path%3E%3C/svg%3E');
    opacity: 0.5;
    z-index: 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 60%;
}

.hero-content h1 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0 0 35%;
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--background-dark);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    transform: rotate(15deg);
    z-index: 2;
}

.hero-badge i {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.hero-badge span {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .hero-content {
        margin-bottom: var(--spacing-xl);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-badge {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
    }

    .hero-badge {
        width: 70px;
        height: 70px;
        font-size: 0.8rem;
    }

    .hero-badge i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        margin-right: 0;
    }

    .hero-badge {
        width: 60px;
        height: 60px;
        padding: var(--spacing-sm);
    }

    .hero-badge span {
        font-size: 0.7rem;
    }
}

/* About Section Styling */
.about-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, var(--background-dark) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.about-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-sm);
}

.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.about-text {
    flex: 0 0 60%;
}

.about-text p {
    margin-bottom: var(--spacing-md);
    text-align: justify;
    font-size: 1.05rem;
}

.about-text p a {
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.about-text p a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.about-text p strong {
    color: var(--text-accent);
    font-weight: 700;
}

.about-image {
    flex: 0 0 35%;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    transition: transform 0.5s ease;
}

.about-image:hover .feature-img {
    transform: scale(1.05);
}

.features-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background-color: rgba(0, 0, 0, 0.7);
}

.feature-item {
    background-color: rgba(var(--primary-color-rgb), 0.9);
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.3s ease;
}

.feature-item:hover {
    background-color: var(--primary-color);
}

.feature-item i {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--background-dark);
}

.feature-item span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--background-dark);
}

.about-contact {
    background-color: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary-color);
}

.about-contact h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.about-contact p {
    margin-bottom: var(--spacing-md);
}

.about-contact strong {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.btn-contact {
    background-color: var(--accent-color);
    color: var(--background-dark);
    font-weight: 700;
}

.btn-contact:hover {
    background-color: var(--text-primary);
    color: var(--background-dark);
    transform: translateY(-3px);
}

.btn-play {
    background-color: var(--primary-color);
    color: var(--background-dark);
    font-weight: 700;
}

.btn-play:hover {
    background-color: var(--secondary-color);
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* Add to :root for new color values used */
:root {
    /* Add RGB version of primary color for opacity control */
    --primary-color-rgb: 255, 140, 0;
}

/* Media Queries for About Section */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column-reverse;
    }

    .about-text,
    .about-image {
        flex: 0 0 100%;
        width: 100%;
    }

    .about-image {
        margin-bottom: var(--spacing-lg);
    }

    .feature-item i {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section h2::after {
        width: 60px;
    }

    .about-contact {
        padding: var(--spacing-lg);
    }

    .about-contact h3 {
        font-size: 1.3rem;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .about-section h2 {
        font-size: 1.5rem;
    }

    .features-overlay {
        position: relative;
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        padding: var(--spacing-xs);
    }

    .feature-item i {
        font-size: 1.1rem;
    }

    .feature-item span {
        font-size: 0.75rem;
    }

    .about-contact {
        padding: var(--spacing-md);
        border-left-width: 2px;
    }
}

/* Safe Gambling Section Styling */
.safe-gambling-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.safe-gambling-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"%3E%3Cpath fill="%23ffffff" fill-opacity="0.03" d="M1 0h2v2H1V0zm4 0h2v2H5V0zm4 0h2v2H9V0zm4 0h2v2h-2V0zm4 0h2v2h-2V0zM1 4h2v2H1V4zm4 0h2v2H5V4zm4 0h2v2H9V4zm4 0h2v2h-2V4zm4 0h2v2h-2V4zM1 8h2v2H1V8zm4 0h2v2H5V8zm4 0h2v2H9V8zm4 0h2v2h-2V8zm4 0h2v2h-2V8zM1 12h2v2H1v-2zm4 0h2v2H5v-2zm4 0h2v2H9v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2zM1 16h2v2H1v-2zm4 0h2v2H5v-2zm4 0h2v2H9v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2z"%3E%3C/path%3E%3C/svg%3E');
}

.safe-gambling-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
}

.safe-gambling-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.safe-gambling-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.safe-gambling-image {
    flex: 0 0 40%;
    position: relative;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.safe-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.safe-gambling-image:hover .safe-img {
    transform: scale(1.05);
}

.safety-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.safety-badge i {
    font-size: 1.2rem;
}

.safety-badge span {
    font-weight: 700;
    font-size: 0.9rem;
}

.safe-gambling-text {
    flex: 0 0 55%;
}

.safe-gambling-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.safe-gambling-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.safe-list {
    list-style: none;
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--accent-color);
}

.safe-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.safe-list li:last-child {
    margin-bottom: 0;
}

.safe-list li i {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-right: var(--spacing-md);
    margin-top: 0.2rem;
}

.safe-list li span {
    flex: 1;
    color: var(--text-secondary);
}

.safe-list li span strong {
    color: var(--primary-color);
}

.safety-cta {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.btn-safety {
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    padding: var(--spacing-md) var(--spacing-xl);
    color: var(--text-primary);
    font-weight: 700;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-safety:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
    color: white;
}

.btn-safety i {
    margin-right: var(--spacing-sm);
}

/* Media Queries for Safe Gambling Section */
@media (max-width: 992px) {
    .safe-gambling-content {
        flex-direction: column;
    }

    .safe-gambling-image,
    .safe-gambling-text {
        flex: 0 0 100%;
    }

    .safe-gambling-image {
        margin-bottom: var(--spacing-lg);
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .safe-gambling-section h2 {
        font-size: 1.8rem;
        width: 80%;
    }

    .safe-gambling-image {
        max-width: 100%;
    }

    .safety-badge {
        top: 10px;
        right: 10px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .safety-badge i {
        font-size: 1rem;
    }

    .safety-badge span {
        font-size: 0.8rem;
    }

    .safe-list {
        padding: var(--spacing-sm);
    }

    .safe-list li i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .safe-gambling-section h2 {
        font-size: 1.5rem;
        width: 100%;
    }

    .safe-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .safe-list li i {
        margin-bottom: var(--spacing-xs);
    }

    .btn-safety {
        padding: var(--spacing-sm) var(--spacing-lg);
        width: 100%;
    }
}

/* Promotions Section Styling */
.promotions-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-card);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(74, 31, 184, 0.1) 0%, rgba(18, 18, 18, 0) 50%);
    z-index: 0;
}

.promotions-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, rgba(18, 18, 18, 0) 70%);
    z-index: 0;
}

.promotions-section .container {
    position: relative;
    z-index: 1;
}

.promotions-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--text-accent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promotions-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.promotions-text {
    background-color: rgba(30, 30, 30, 0.5);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--box-shadow);
}

.promotions-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.promotions-text p:last-child {
    margin-bottom: 0;
}

.promotions-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.promotions-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.promo-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(18, 18, 18, 0.9) 100%);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--box-shadow);
    text-align: center;
    transform: translateY(0);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.promo-card:nth-child(1) {
    border-top-color: var(--primary-color);
}

.promo-card:nth-child(2) {
    border-top-color: var(--accent-color);
}

.promo-card:nth-child(3) {
    border-top-color: var(--secondary-color);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.promo-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-card:nth-child(1) .promo-icon {
    background: rgba(255, 140, 0, 0.15);
}

.promo-card:nth-child(2) .promo-icon {
    background: rgba(33, 230, 193, 0.15);
}

.promo-card:nth-child(3) .promo-icon {
    background: rgba(74, 31, 184, 0.15);
}

.promo-icon i {
    font-size: 1.8rem;
}

.promo-card:nth-child(1) .promo-icon i {
    color: var(--primary-color);
}

.promo-card:nth-child(2) .promo-icon i {
    color: var(--accent-color);
}

.promo-card:nth-child(3) .promo-icon i {
    color: var(--secondary-color);
}

.promo-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.promo-card:nth-child(1) h3 {
    color: var(--primary-color);
}

.promo-card:nth-child(2) h3 {
    color: var(--accent-color);
}

.promo-card:nth-child(3) h3 {
    color: var(--secondary-color);
}

.promo-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.promotions-extra {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.promotions-extra p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.promotions-extra p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.promotions-extra p:last-of-type {
    padding-bottom: var(--spacing-md);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.promo-cta {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.btn-promo {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    color: white;
}

.btn-promo i {
    margin-right: var(--spacing-sm);
    font-size: 1.1rem;
}

/* Media Queries for Promotions Section */
@media (max-width: 992px) {
    .promotions-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

    .promo-icon {
        width: 60px;
        height: 60px;
    }

    .promo-icon i {
        font-size: 1.5rem;
    }

    .promo-card h3 {
        font-size: 1.2rem;
    }

    .promo-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .promotions-section h2 {
        font-size: 1.8rem;
    }

    .promotions-cards {
        grid-template-columns: repeat(1, 1fr);
        gap: var(--spacing-lg);
    }

    .promo-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: var(--spacing-md);
    }

    .promo-icon {
        margin: 0 var(--spacing-md) 0 0;
        flex-shrink: 0;
    }

    .promotions-text,
    .promotions-extra {
        padding: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .promotions-section h2 {
        font-size: 1.5rem;
    }

    .promo-card {
        flex-direction: column;
        text-align: center;
    }

    .promo-icon {
        margin: 0 auto var(--spacing-sm);
    }

    .btn-promo {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* Slots Section Styling */
.slots-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.slots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"%3E%3Cpath fill="%23ffffff" fill-opacity="0.03" d="M14 16H9v-2h5V9.87a4 4 0 1 1 2 0V14h5v2h-5v15.95A10 10 0 0 0 23.66 27l-3.46-2 8.2-2.2-2.9 5a12 12 0 0 1-21 0l-2.89-5 8.2 2.2-3.47 2A10 10 0 0 0 14 31.95V16zm40 40h-5v-2h5v-4.13a4 4 0 1 1 2 0V54h5v2h-5v15.95A10 10 0 0 0 63.66 67l-3.47-2 8.2-2.2-2.88 5a12 12 0 0 1-21.02 0l-2.88-5 8.2 2.2-3.47 2A10 10 0 0 0 54 71.95V56zm-39 6a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm40-40a2 2 0 1 1 0-4 2 2 0 0 1 0 4zM15 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm40 40a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"%3E%3C/path%3E%3C/svg%3E');
    z-index: 0;
}

.slots-section .container {
    position: relative;
    z-index: 1;
}

.slots-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--text-accent);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.slots-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-sm);
}

.slots-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.slot-game {
    background-color: var(--background-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot-game:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.slot-game-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slot-game:hover .game-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: opacity 0.3s ease;
}

.slot-game:hover .game-overlay {
    opacity: 1;
}

.btn-play-now {
    background-color: var(--primary-color);
    color: var(--background-dark);
    font-weight: 700;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-play-now:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.btn-play-now i {
    margin-right: var(--spacing-xs);
}

.game-provider {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    z-index: 2;
}

.slot-game h3 {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xs);
    color: var(--text-primary);
    font-size: 1.2rem;
    text-align: center;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.rtp,
.jackpot {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.rtp i,
.jackpot i {
    margin-right: var(--spacing-xs);
    font-size: 0.9rem;
}

.rtp i {
    color: var(--accent-color);
}

.jackpot i {
    color: var(--primary-color);
}

.slots-info {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(18, 18, 18, 0.9));
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--accent-color);
}

.slots-info p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.slots-info p:last-child {
    margin-bottom: 0;
}

.slots-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

.slots-extra {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.slots-extra p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.slots-extra p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.slots-cta {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.btn-slots {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--background-dark);
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-slots:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.btn-slots i {
    margin-right: var(--spacing-sm);
    font-size: 1.1rem;
}

/* Media Queries for Slots Section */
@media (max-width: 992px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .slots-section h2 {
        font-size: 1.8rem;
    }

    .slots-section h2::after {
        width: 100px;
    }

    .slot-game h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .slots-section h2 {
        font-size: 1.5rem;
    }

    .slots-section h2::after {
        width: 80px;
    }

    .slots-grid {
        grid-template-columns: 1fr;
    }

    .slots-info,
    .slots-extra {
        padding: var(--spacing-md);
    }

    .btn-slots {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* Contact Section Styling */
.contact-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-card);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(33, 230, 193, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 31, 184, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--text-accent);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.contact-text {
    flex: 0 0 55%;
    background-color: rgba(18, 18, 18, 0.5);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.contact-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.contact-text p:last-child {
    margin-bottom: 0;
}

.contact-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-channels {
    flex: 0 0 40%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8), rgba(30, 30, 30, 0.8));
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border-top: 3px solid var(--accent-color);
}

.contact-channels h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.contact-channels h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--border-radius-sm);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-list li:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    flex: 0 0 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
}

.contact-icon i {
    font-size: 1.4rem;
    color: var(--text-primary);
}

.contact-info {
    flex: 1;
}

.contact-info h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-info p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-conclusion {
    background-color: rgba(18, 18, 18, 0.5);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    margin-top: var(--spacing-xl);
}

.contact-conclusion p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-conclusion p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-cta {
    margin-top: var(--spacing-xl);
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
}

.btn-contact-us {
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    color: var(--background-dark);
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 230, 193, 0.3);
}

.btn-contact-us:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 230, 193, 0.4);
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.btn-contact-us i,
.btn-register i {
    margin-right: var(--spacing-sm);
}

/* Media Queries for Contact Section */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-text,
    .contact-channels {
        flex: 0 0 100%;
    }

    .contact-text {
        margin-bottom: var(--spacing-lg);
    }

    .contact-channels h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-icon {
        flex: 0 0 40px;
        height: 40px;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }

    .contact-info h4 {
        font-size: 1rem;
    }

    .contact-cta {
        flex-direction: column;
    }

    .btn-contact-us,
    .btn-register {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-text,
    .contact-channels,
    .contact-conclusion {
        padding: var(--spacing-md);
    }

    .contact-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-icon {
        aspect-ratio: 1/1;
        margin-right: 0;
        margin-bottom: var(--spacing-sm);
    }
}