/* Base Styles and Theme */
:root {
    /* Color Variables */
    --primary-color: #ff6b00;
    --secondary-color: #3498db;
    --accent-color: #f1c40f;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, #ff6b00, #ff9500);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition-normal: all 0.3s ease;
}

/* Reset and Base Elements */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    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-primary);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: 'Prompt', sans-serif;
    text-align: center;
    border: none;
    box-shadow: var(--shadow-sm);
    gap: 8px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.btn-primary:hover {
    opacity: 0.9;
    color: var(--text-primary);
}

.btn-secondary {
    background-color: rgba(52, 152, 219, 0.2);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-primary);
}

/* Hero Section Styles */
.hero-section {
    background-color: var(--darker-bg);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), 
                      url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233498db' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 640px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-content strong {
    color: var(--primary-color);
}

.hero-content em {
    font-style: normal;
    color: var(--text-primary);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 2rem;
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.hero-image .main-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 107, 0, 0.3);
    transition: var(--transition-normal);
}

.hero-image .main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    right: -20px;
    bottom: 30px;
    background-color: rgba(10, 10, 10, 0.9);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-left: 3px solid var(--primary-color);
    max-width: 250px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
    background-color: rgba(255, 107, 0, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature span {
    font-weight: 600;
    color: var(--text-secondary);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-features {
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
        max-width: 100%;
    }

    .hero-features {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

/* Header Styles */
.site-header {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list li {
    margin: 0 5px;
}

.nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    border-radius: var(--radius-sm);
}

.nav-list a:hover {
    color: var(--text-primary);
    background-color: rgba(52, 152, 219, 0.1);
}

.btn-free-credit {
    background: linear-gradient(135deg, var(--primary-color), #ff9500);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn-free-credit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background-color: transparent !important;
    opacity: 0.9;
}

.mobile-controls {
    display: none;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: var(--transition-normal);
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* Mobile Credit Modal */
.mobile-credit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.modal-header h3 {
    margin: 0;
    color: white;
    font-size: 1.3rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.close-modal:hover {
    transform: scale(1.1);
}

.modal-body {
    padding: 30px 20px;
    text-align: center;
}

.modal-body p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.btn-modal-credit {
    background: linear-gradient(135deg, var(--primary-color), #ff9500);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
    font-size: 1.1rem;
}

.btn-modal-credit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
    opacity: 0.9;
}

/* Media queries for responsive header */
@media (max-width: 992px) {
    .nav-list a {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .btn-free-credit {
        padding: 8px 15px !important;
    }
}

@media (max-width: 875px) {
    .mobile-controls {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--card-bg);
        z-index: 1001;
        transition: left 0.3s ease;
        border-right: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        padding-top: 70px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-list li {
        width: 100%;
        margin: 0;
    }
    
    .nav-list a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    
    .desktop-only {
        display: none;
    }
}

/* Features Section Styles */
.features-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.4;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: var(--border-color);
    margin: 0 15px;
}

.divider span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--text-primary);
}

.divider i {
    font-size: 1rem;
}

.features-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.features-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.features-intro strong {
    color: var(--primary-color);
}

.features-intro em {
    font-style: normal;
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    padding: 25px;
    background-color: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-content {
    padding: 25px;
    flex: 1;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1rem;
}

.feature-content ul {
    padding-left: 20px;
    color: var(--text-secondary);
}

.feature-content li {
    margin-bottom: 8px;
}

.trust-section {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.trust-content {
    flex: 1;
    padding: 40px;
}

.trust-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.trust-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.trust-content .btn {
    margin-top: 20px;
}

.trust-image {
    flex: 1;
    position: relative;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.trust-image:hover .feature-image {
    transform: scale(1.05);
}

.trust-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(10, 10, 10, 0.9);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    border-left: 3px solid var(--primary-color);
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.trust-badge span {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .features-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-section {
        flex-direction: column;
    }
    
    .trust-content, .trust-image {
        width: 100%;
    }
    
    .trust-image {
        min-height: 300px;
        order: -1;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-card {
        flex-direction: column;
    }
    
    .feature-icon {
        width: 100%;
        padding: 20px;
    }
    
    .trust-content {
        padding: 30px 20px;
    }
    
    .trust-image {
        min-height: 250px;
    }
}

/* Access Section Styles */
.access-section {
    background-color: var(--darker-bg);
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%233498db' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.access-section .container {
    position: relative;
    z-index: 1;
}

.access-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.access-info {
    flex: 1;
}

.access-info p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.access-info strong {
    color: var(--primary-color);
}

.login-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 25px;
    margin: 30px 0;
    box-shadow: var(--shadow-md);
}

.login-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
}

.login-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(255, 107, 0, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.login-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.login-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-login, .btn-register {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-login {
    background-color: rgba(52, 152, 219, 0.2);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-login:hover {
    background-color: var(--secondary-color);
    color: var(--text-primary);
}

.btn-register {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.btn-register:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.login-contact {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.login-contact strong {
    color: var(--secondary-color);
}

.access-image-container {
    flex: 1;
    position: relative;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid rgba(52, 152, 219, 0.2);
}

.access-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.access-image-container:hover .access-image {
    transform: scale(1.05);
}

.security-features {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.security-badge i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.security-badge span {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
}

.security-info {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.security-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.security-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.security-info p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.device-compatibility {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-color);
}

.device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.device i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.device span {
    font-weight: 600;
    color: var(--text-secondary);
}

.access-benefits {
    background-color: rgba(255, 107, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 30px 0;
    border-left: 3px solid var(--primary-color);
}

.access-benefits h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.access-benefits ul {
    list-style: none;
    padding: 0;
}

.access-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-benefits i {
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Media Queries */
@media (max-width: 992px) {
    .access-section {
        padding: 60px 0;
    }
    
    .security-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .access-content {
        flex-direction: column-reverse;
    }
    
    .access-info, .access-image-container {
        width: 100%;
    }
    
    .login-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .access-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .security-info {
        padding: 25px 20px;
    }
    
    .device-compatibility {
        flex-direction: column;
        gap: 20px;
    }
}

/* Auto System Section Styles */
.auto-system-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
    position: relative;
}

.auto-system-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.auto-system-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.auto-system-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.auto-system-intro strong {
    color: var(--primary-color);
}

.auto-system-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.system-image-container {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 107, 0, 0.2);
}

.system-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.system-image-container:hover .system-image {
    transform: scale(1.05);
}

.system-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(10, 10, 10, 0.9);
    padding: 15px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
    border-left: 3px solid var(--primary-color);
}

.badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.badge-icon i {
    color: var(--text-primary);
    font-size: 1.2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text span {
    font-weight: 700;
    color: var(--text-primary);
}

.badge-text .badge-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.system-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-text p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.promotion-list {
    list-style: none;
    padding: 0;
}

.promotion-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promotion-list i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.payment-methods {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 60px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.payment-methods h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.payment-methods p {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.payment-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
    background-color: rgba(52, 152, 219, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.payment-icon:hover i {
    transform: scale(1.1);
    color: var(--text-primary);
    background-color: var(--secondary-color);
}

.payment-icon span {
    font-weight: 600;
    color: var(--text-secondary);
}

.games-info {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.games-text {
    flex: 3;
}

.games-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.games-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.games-text p a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: var(--transition-normal);
}

.games-text p a:hover {
    color: var(--primary-color);
}

.app-info {
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 25px 0;
    border-left: 3px solid var(--secondary-color);
}

.app-info h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.app-info p {
    margin-bottom: 20px;
}

.btn-app {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-app:hover {
    background-color: #2980b9;
    color: var(--text-primary);
    transform: translateY(-2px);
}

.cet-info {
    padding: 10px 15px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    border-left: 2px solid var(--primary-color);
}

.games-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: fit-content;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.game-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

.game-icon i {
    color: var(--text-primary);
    font-size: 1.5rem;
}

.game-card h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-primary);
}

.cta-section {
    background: linear-gradient(145deg, rgba(255, 107, 0, 0.1), rgba(52, 152, 219, 0.1));
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-section p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Add Font Awesome fa-cards custom class since it doesn't exist in Font Awesome */
.fa-cards:before {
    content: "\f0a3"; /* Using the spade symbol as a replacement */
}

/* Fix for fa-slot-machine which doesn't exist in Font Awesome */
.fa-slot-machine:before {
    content: "\f3b5"; /* Using the alternate option */
}

/* Media Queries */
@media (max-width: 992px) {
    .auto-system-section {
        padding: 60px 0;
    }
    
    .auto-system-grid {
        flex-direction: column;
    }
    
    .system-image-container, .system-features {
        width: 100%;
    }
    
    .payment-icons {
        gap: 20px;
    }
    
    .games-info {
        flex-direction: column;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        padding: 20px;
    }
    
    .feature-icon {
        margin-bottom: 15px;
    }
    
    .payment-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .auto-system-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .system-badge {
        left: 10px;
        bottom: 10px;
        padding: 10px;
    }
    
    .payment-methods {
        padding: 30px 20px;
    }
    
    .payment-icons {
        gap: 15px;
    }
    
    .payment-icon i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
}

/* Trust Section Styles */
.trust-section-wrapper {
    background-color: var(--darker-bg);
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.trust-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='84' height='48' viewBox='0 0 84 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h12v6H0V0zm28 8h12v6H28V8zm14-8h12v6H42V0zm14 0h12v6H56V0zm0 8h12v6H56V8zM42 8h12v6H42V8zm0 16h12v6H42v-6zm14-8h12v6H56v-6zm14 0h12v6H70v-6zm0-16h12v6H70V0zM28 32h12v6H28v-6zM14 16h12v6H14v-6zM0 24h12v6H0v-6zm0 8h12v6H0v-6zm14 0h12v6H14v-6zm14 8h12v6H28v-6zm-14 0h12v6H14v-6zm28 0h12v6H42v-6zm14-8h12v6H56v-6zm0-8h12v6H56v-6zm14 8h12v6H70v-6zm0 8h12v6H70v-6zM14 24h12v6H14v-6zm14-8h12v6H28v-6zM14 8h12v6H14V8zM0 8h12v6H0V8z' fill='%233498db' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.trust-section-wrapper .container {
    position: relative;
    z-index: 1;
}

.trust-content {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.trust-info {
    flex: 3;
}

.trust-info > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.trust-info strong {
    color: var(--primary-color);
}

.trust-qa {
    margin-bottom: 30px;
}

.qa-item {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.qa-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.qa-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: rgba(255, 107, 0, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.qa-question i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.qa-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.qa-answer {
    padding: 20px;
}

.qa-answer p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-secondary);
}

.security-features-box {
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 30px;
    border-left: 3px solid var(--secondary-color);
}

.security-features-box h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.security-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.security-list i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.security-list span {
    flex: 1;
    color: var(--text-secondary);
}

.important-note {
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 25px;
    border-left: 3px solid var(--primary-color);
}

.important-note h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.important-note strong {
    color: var(--primary-color);
}

.important-note p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-secondary);
}

.trust-visual {
    flex: 2;
    position: relative;
}

.trust-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    border: 3px solid rgba(255, 107, 0, 0.2);
    transition: transform 0.5s ease;
}

.trust-image:hover {
    transform: scale(1.03);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--card-bg);
    padding: 15px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.trust-badge-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.trust-badge-item .badge-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-item .badge-icon i {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.trust-badge-item .badge-text {
    flex: 1;
}

.trust-badge-item .badge-text h4 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: var(--text-primary);
}

.trust-badge-item .badge-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.additional-security-info {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.additional-security-info p {
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.additional-security-info strong {
    color: var(--primary-color);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Media Queries */
@media (max-width: 992px) {
    .trust-section-wrapper {
        padding: 60px 0;
    }
    
    .trust-content {
        flex-direction: column;
    }
    
    .trust-info, .trust-visual {
        width: 100%;
    }
    
    .additional-security-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-container .btn {
        width: 100%;
    }
    
    .trust-badges {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .trust-section-wrapper {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .qa-question {
        padding: 15px;
    }
    
    .qa-question h3 {
        font-size: 1.1rem;
    }
    
    .qa-answer {
        padding: 15px;
    }
    
    .security-features-box, 
    .important-note {
        padding: 20px 15px;
    }
    
    .additional-security-info {
        padding: 25px 15px;
    }
}

/* VIP Section Styles */
.vip-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f1c40f' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.vip-section .container {
    position: relative;
    z-index: 1;
}

.vip-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.vip-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.vip-intro strong {
    color: var(--accent-color);
}

.vip-container {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.vip-benefits {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vip-benefit-item {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 25px;
    display: flex;
    gap: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.vip-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #f1c40f, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.benefit-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

.benefit-content strong {
    color: var(--accent-color);
}

.vip-image-container {
    flex: 2;
    position: relative;
    height: 100%;
}

.vip-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(241, 196, 15, 0.3);
    transition: transform 0.5s ease;
}

.vip-image:hover {
    transform: scale(1.03);
}

.vip-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(145deg, #f1c40f, #e67e22);
    color: var(--text-primary);
    padding: 8px 15px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.vip-badge i {
    font-size: 1rem;
}

.vip-withdrawal {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 50px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.vip-withdrawal:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.withdrawal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
}

.withdrawal-header i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.withdrawal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.withdrawal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.withdrawal-features li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.withdrawal-features i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.withdrawal-features span {
    flex: 1;
    color: var(--text-secondary);
}

.vip-extra-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.perk-item {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.perk-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.perk-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #f1c40f, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.perk-icon i {
    color: var(--text-primary);
    font-size: 1.5rem;
}

.perk-content {
    flex: 1;
}

.perk-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.perk-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

.perk-content strong {
    color: var(--accent-color);
}

.vip-upgrade {
    background: linear-gradient(145deg, rgba(241, 196, 15, 0.1), rgba(230, 126, 34, 0.1));
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.vip-upgrade h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.vip-upgrade p {
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.vip-upgrade strong {
    color: var(--accent-color);
}

.upgrade-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-vip {
    background: linear-gradient(145deg, #f1c40f, #e67e22);
    color: var(--text-primary);
    padding: 12px 25px;
    border-radius: var(--radius-md);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.btn-vip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--text-primary);
    opacity: 0.9;
}

.btn-contact {
    background-color: rgba(241, 196, 15, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 12px 25px;
    border-radius: var(--radius-md);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.btn-contact:hover {
    background-color: var(--accent-color);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Custom fa-vip icon since it doesn't exist in Font Awesome */
.fa-vip:before {
    content: "\f521"; /* Using crown icon as substitute */
}

/* Media Queries */
@media (max-width: 992px) {
    .vip-section {
        padding: 60px 0;
    }
    
    .vip-container {
        flex-direction: column-reverse;
    }
    
    .vip-benefits, .vip-image-container {
        width: 100%;
    }
    
    .vip-extra-perks {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .withdrawal-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vip-extra-perks {
        grid-template-columns: 1fr;
    }
    
    .withdrawal-header {
        flex-direction: column;
        text-align: center;
    }
    
    .upgrade-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .upgrade-buttons .btn-vip,
    .upgrade-buttons .btn-contact {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .vip-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .vip-badge {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .vip-benefit-item {
        flex-direction: column;
        padding: 20px;
    }
    
    .benefit-icon {
        margin-bottom: 15px;
    }
    
    .vip-withdrawal {
        padding: 20px;
    }
    
    .perk-item {
        padding: 20px;
    }
    
    .vip-upgrade {
        padding: 30px 20px;
    }
    
    .vip-upgrade h3 {
        font-size: 1.5rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links-column {
    flex: 1;
    min-width: 160px;
}

.footer-links-column h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column li {
    margin-bottom: 10px;
}

.footer-links-column a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-links-column a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.responsible-gaming {
    display: flex;
    gap: 20px;
}

.responsible-gaming span {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.responsible-gaming i {
    color: var(--primary-color);
}

/* Media Queries */
@media (max-width: 992px) {
    .site-footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        flex: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .footer-links {
        flex: 100%;
        justify-content: space-between;
    }
    
    .footer-links-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links-column {
        text-align: center;
    }
    
    .footer-links-column h4 {
        font-size: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .responsible-gaming {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links-column {
        min-width: 100%;
    }
    
    .responsible-gaming {
        flex-direction: column;
        gap: 10px;
    }
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-top: 1px solid var(--border-color);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    text-align: center;
    transition: var(--transition-normal);
    color: var(--text-primary);
    border-right: 1px solid var(--border-color);
}

.sticky-btn:last-child {
    border-right: none;
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.sticky-btn span {
    font-size: 0.9rem;
    font-weight: 600;
}

.login-btn {
    background-color: rgba(52, 152, 219, 0.2);
}

.login-btn:hover {
    background-color: rgba(52, 152, 219, 0.4);
    color: var(--text-primary);
}

.login-btn i {
    color: var(--secondary-color);
}

.register-btn {
    background-color: rgba(255, 107, 0, 0.2);
}

.register-btn:hover {
    background-color: rgba(255, 107, 0, 0.4);
    color: var(--text-primary);
}

.register-btn i {
    color: var(--primary-color);
}

.credit-btn {
    background-color: rgba(241, 196, 15, 0.2);
}

.credit-btn:hover {
    background-color: rgba(241, 196, 15, 0.4);
    color: var(--text-primary);
}

.credit-btn i {
    color: var(--accent-color);
}

/* Add padding to the bottom of the body to accommodate sticky buttons */
body {
    padding-bottom: 60px; /* Adjust based on the height of your sticky buttons */
}

/* Media Queries */
@media (max-width: 576px) {
    .sticky-btn span {
        font-size: 0.8rem;
    }
    
    .sticky-btn i {
        font-size: 1rem;
    }
}