/* Base Styles & Theme */
:root {
    /* Color Variables */
    --primary-color: #ff6b00;
    --primary-hover: #ff8533;
    --secondary-color: #6b02ff;
    --secondary-hover: #8533ff;
    --background-dark: #121212;
    --background-card: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, #ff6b00, #ff3300);
    --gradient-secondary: linear-gradient(135deg, #6b02ff, #9900ff);
    --shadow-primary: 0 4px 20px rgba(255, 107, 0, 0.3);
    --shadow-card: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-dark);
    overflow-x: hidden;
}

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

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);
}

h1 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

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

.img-fluid {
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 107, 0, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(107, 2, 255, 0.4);
    color: white;
}

/* Section Styles */
section {
    padding: 80px 0;
}

/* Hero Section Styles */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #0a0a0a;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 107, 0, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(107, 2, 255, 0.1) 0%, transparent 30%);
}

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

.hero-content {
    flex: 1;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-description em {
    font-style: normal;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.4;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 70px 0;
    }
}

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

    h1 {
        font-size: 2rem;
    }

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

    .btn {
        width: 100%;
    }
}

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

    .hero-section {
        padding: 60px 0;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
}

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

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    margin-right: 5px;
}

.logo-highlight {
    color: var(--primary-color);
}

/* Navigation Styles */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

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

.nav-menu li {
    margin: 0 15px;
}

.nav-menu li:last-child {
    margin-right: 0;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    padding: 8px 5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* CTA Button in Nav */
.nav-cta {
    margin-left: 10px;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 8px;
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
    color: white;
}

.nav-cta::after {
    display: none;
}

.nav-cta i {
    margin-right: 6px;
}

/* Mobile Controls */
.mobile-controls {
    display: none;
    align-items: center;
}

.mobile-cta,
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.mobile-cta {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Hamburger Menu */
.menu-toggle {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    width: 30px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger::before {
    transform: translateY(-10px);
}

.hamburger::after {
    transform: translateY(10px);
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
}

/* Mobile Modal */
.mobile-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--background-card);
    border-radius: 15px;
    max-width: 90%;
    width: 350px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.mobile-modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

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

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 20px;
}

.modal-body p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.modal-cta {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (min-width: 992px) {
    body {
        padding-top: 80px;
        /* Adjust to your header height */
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 70px;
        /* Adjust to your mobile header height */
    }

    .site-header {
        padding: 10px 0;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--background-card);
        z-index: 1000;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding: 80px 0 30px;
        overflow-y: auto;
    }

    .main-navigation.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 15px 25px;
        font-size: 1.1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        background-color: rgba(255, 107, 0, 0.1);
    }

    .cta-desktop {
        display: none;
    }

    .mobile-controls {
        display: flex;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.3rem;
    }

    .mobile-cta,
    .menu-toggle {
        margin-left: 10px;
    }

    .modal-content {
        width: 320px;
    }
}

.why-choose-section {
    background-color: var(--background-card);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(107, 2, 255, 0.1) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
}

.why-choose-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    border-radius: 50%;
}

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

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.why-choose-content {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.why-choose-text {
    flex: 1;
}

.why-choose-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.why-choose-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.feature-list {
    list-style: none;
    margin: 20px 0 30px;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.cta-button {
    margin-top: 30px;
}

.why-choose-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 107, 0, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

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

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Media Queries */
@media (max-width: 992px) {
    .why-choose-content {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .why-choose-cards {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .why-choose-cards {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.6rem;
    }

    .why-choose-text p {
        font-size: 1rem;
    }

    .feature-list li {
        padding: 8px 0;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }
}

/* Deposit-Withdraw Section Styles */
.deposit-withdraw-section {
    background-color: var(--background-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.deposit-withdraw-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.7;
}

.deposit-withdraw-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 2, 255, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.7;
}

.deposit-withdraw-content-new {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
    background: rgba(30, 30, 30, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.deposit-withdraw-text-new {
    flex: 1.2;
}

.deposit-withdraw-text-new p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.deposit-withdraw-text-new strong {
    color: var(--primary-color);
    font-weight: 700;
}

.deposit-withdraw-text-new .feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.deposit-withdraw-text-new .feature-list i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.payment-methods-new {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    justify-content: flex-start;
}

.payment-methods-new .method-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.payment-methods-new .method-icon:hover {
    background-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.payment-methods-new .method-icon i {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.deposit-withdraw-visuals-new {
    flex: 0.8;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.deposit-withdraw-image-new {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.deposit-withdraw-image-new .img-fluid {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.time-badge-new {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.25);
    z-index: 2;
    animation: pulse-badge 2s infinite ease-in-out;
    text-align: center;
    color: white;
}

.time-counter-new {
    font-family: 'Prompt', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.time-text-new {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 5px;
}

.time-badge-new span {
    font-size: 0.8rem;
    margin-top: 8px;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes pulse-badge {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(255, 107, 0, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
    }
}

/* Original styles for deposit-withdraw section - to be removed or commented out */
/*
deposit-withdraw-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b00' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

deposit-withdraw-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

deposit-withdraw-image {
    flex: 1;
    position: relative;
}

time-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    animation: pulse-badge 2s infinite ease-in-out;
}

time-counter {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: white;
}

time-text {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

deposit-withdraw-text {
    flex: 1;
}

deposit-withdraw-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

deposit-withdraw-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

payment-features li {
    margin-bottom: 10px;
}

payment-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

payment-methods {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

method-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

method-icon:hover {
    background-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-5px);
}

method-icon i {
    font-size: 1.8rem;
    color: var(--text-primary);
}
*/

/* Additional styles for payment methods - these should still apply if class names are same or updated */
.fa-cc-visa {
    color: #0157a2 !important;
}

.fa-cc-mastercard {
    color: #eb2230 !important;
}

.fa-mobile-alt {
    color: #00b0e9 !important;
}

.fa-university {
    color: #ffc107 !important;
}

.fa-wallet {
    color: #4caf50 !important;
}

/* Media Queries */
@media (max-width: 992px) {
    .deposit-withdraw-content-new {
        flex-direction: column-reverse;
        padding: 30px;
    }

    .deposit-withdraw-visuals-new {
        margin-bottom: 30px;
    }

    .deposit-withdraw-image-new {
        max-width: 320px;
    }

    .time-badge-new {
        width: 130px;
    }

    .time-counter-new {
        font-size: 3rem;
    }

    .time-text-new {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .deposit-withdraw-content-new {
        padding: 25px;
    }

    .payment-methods-new {
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-methods-new .method-icon {
        width: 50px;
        height: 50px;
    }

    .payment-methods-new .method-icon i {
        font-size: 1.6rem;
    }

    .deposit-withdraw-image-new {
        max-width: 280px;
    }

    .time-badge-new {
        width: 110px;
    }

    .time-counter-new {
        font-size: 2.5rem;
    }

    .time-text-new {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .deposit-withdraw-content-new {
        padding: 20px;
        gap: 30px;
    }

    .deposit-withdraw-text-new .feature-list i {
        font-size: 1rem;
    }

    .payment-methods-new .method-icon {
        width: 45px;
        height: 45px;
    }

    .payment-methods-new .method-icon i {
        font-size: 1.4rem;
    }

    .time-badge-new {
        width: 100px;
        border-width: 3px;
    }

    .time-counter-new {
        font-size: 2.2rem;
    }

    .time-text-new {
        font-size: 0.8rem;
    }

    .time-badge-new span {
        font-size: 0.7rem;
    }
}

/* Slot Games Section Styles */
.slot-games-section {
    background-color: var(--background-card);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.slot-games-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M81.28 88H68.413l19.298 19.298L81.28 88zm2.107 0h13.226L90 107.838 83.387 88zm15.334 0h12.866l-19.298 19.298L98.72 88zm-32.927-2.207L73.586 78h32.827l.5.5 7.294 7.293L115.414 87l-24.707 24.707-.707.707L64.586 87l1.207-1.207zm2.62.207L74 80.414 79.586 86H68.414zm16 0L90 80.414 95.586 86H84.414zm16 0L106 80.414 111.586 86h-11.172zm-8-6h11.173L98 85.586 92.414 80zM82 85.586L87.586 80H76.414L82 85.586zM17.414 0L.707 16.707 0 17.414V0h17.414zM4.28 0L0 12.838V0h4.28zm10.306 0L2.288 12.298 6.388 0h8.198zM180 17.414L162.586 0H180v17.414zM165.414 0l12.298 12.298L173.612 0h-8.198zM180 12.838L175.72 0H180v12.838zM0 163h16.413l.5.5 7.294 7.293L25.414 172l-8 8H0v-17zm0 10h6.613l-2.334 7H0v-7zm14.586 7l7-7H8.72l-2.333 7h8.2zM0 165.414L5.586 171H0v-5.586zM10.414 171L16 165.414 21.586 171H10.414zm-8-6h11.172L8 170.586 2.414 165zM180 163h-16.413l-7.794 7.793-1.207 1.207 8 8H180v-17zm-14.586 17l-7-7h12.865l2.333 7h-8.2zM180 173h-6.613l2.334 7H180v-7zm-21.586-2l5.586-5.586 5.586 5.586h-11.172zM180 165.414L174.414 171H180v-5.586zm-8 5.172l5.586-5.586h-11.172l5.586 5.586zM152.933 25.653l1.414 1.414-33.94 33.942-1.416-1.416 33.943-33.94zm1.414 127.28l-1.414 1.414-33.942-33.94 1.416-1.414 33.94 33.94zm-127.28 1.414l-1.414-1.414 33.94-33.942 1.416 1.416-33.943 33.94zm-1.414-127.28l1.414-1.414 33.942 33.94-1.416 1.414-33.94-33.94zM0 85c2.21 0 4 1.79 4 4s-1.79 4-4 4v-8zm180 0c-2.21 0-4 1.79-4 4s1.79 4 4 4v-8zM94 0c0 2.21-1.79 4-4 4s-4-1.79-4-4h8zm0 180c0-2.21-1.79-4-4-4s-4 1.79-4 4h8z' fill='%23ff6b00' fill-opacity='0.07' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.slot-games-content {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.slot-games-text {
    flex: 1;
}

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

.slot-games-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.slot-features li {
    margin-bottom: 10px;
}

.slot-features i {
    color: #FFD700;
    margin-right: 10px;
}

.slot-games-showcase {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.slot-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.jackpot-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ffd700, #ff9900);
    color: black;
    padding: 5px 40px;
    transform: rotate(45deg);
    box-shadow: 0 5px 10px rgba(255, 215, 0, 0.3);
    z-index: 2;
}

.jackpot-label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.jackpot-amount {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.jackpot-amount::before {
    content: '฿';
    font-size: 0.9rem;
    margin-right: 2px;
}

.game-providers {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.provider-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.provider-logo {
    flex: 1;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #262626, #1a1a1a);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.provider-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 107, 0, 0.2);
}

.provider-logo span {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.slot-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.stat-item {
    flex: 1;
    background: linear-gradient(145deg, #262626, #1a1a1a);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.stat-icon i {
    font-size: 1.4rem;
    color: white;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-value span {
    font-size: 1rem;
    opacity: 0.7;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Media Queries */
@media (max-width: 992px) {
    .slot-games-content {
        flex-direction: column;
    }

    .slot-games-showcase {
        order: -1;
    }

    .slot-stats {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .provider-row {
        flex-wrap: wrap;
    }

    .provider-logo {
        min-width: 80px;
    }

    .slot-stats {
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: calc(50% - 10px);
    }

    .jackpot-badge {
        top: 15px;
        right: -25px;
        padding: 3px 30px;
    }

    .jackpot-label {
        font-size: 0.7rem;
    }

    .jackpot-amount {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .stat-item {
        min-width: 100%;
        margin-bottom: 10px;
    }

    .provider-logo {
        height: 40px;
    }

    .provider-logo span {
        font-size: 0.85rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-icon i {
        font-size: 1.2rem;
    }

    .stat-value {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* All-in-One Section Styles */
.all-in-one-section {
    background-color: var(--background-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.all-in-one-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(107, 2, 255, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.07) 0%, transparent 50%);
    z-index: 0;
}

.all-in-one-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.all-in-one-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.all-in-one-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.gaming-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.game-category {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.game-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    z-index: 1;
}

.game-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 0, 0.3);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 15px rgba(255, 107, 0, 0.3);
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

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

.game-category p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.game-category p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.game-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.game-feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.game-feature-list i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.game-category-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.game-category-btn i {
    margin-right: 8px;
}

.game-category-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
    color: white;
}

.one-account-feature {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.featured-image {
    flex: 1;
    position: relative;
}

.featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 15px;
    pointer-events: none;
}

.featured-content {
    flex: 1;
}

.featured-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
}

.featured-content h3::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

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

.featured-content p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.featured-content a {
    color: var(--primary-color);
    font-weight: 700;
}

.featured-content a:hover {
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Media Queries */
@media (max-width: 1100px) {
    .gaming-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .one-account-feature {
        flex-direction: column;
        padding: 30px;
    }

    .featured-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .gaming-categories {
        grid-template-columns: 1fr;
    }

    .game-category {
        padding: 25px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: 1.6rem;
    }

    .featured-content h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .all-in-one-intro p {
        font-size: 1rem;
    }

    .game-category h3 {
        font-size: 1.3rem;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .category-icon i {
        font-size: 1.4rem;
    }

    .one-account-feature {
        padding: 20px;
    }
}

.trust-security-section {
    background-color: var(--background-card);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.trust-security-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(107, 2, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 107, 0, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.trust-security-content {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.trust-security-image {
    flex: 1;
    position: relative;
}

.security-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
}

.security-badge i {
    font-size: 1.5rem;
}

.trust-security-text {
    flex: 1;
}

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

.trust-security-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.security-features {
    margin: 25px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.security-features li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
}

.security-features li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.security-features i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    min-width: 24px;
    margin-top: 3px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.badge-item {
    flex: 1;
    min-width: calc(50% - 10px);
    background: linear-gradient(145deg, #262626, #1a1a1a);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.badge-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.badge-item span {
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
}

/* Certificate animation */
.badge-item:first-child i {
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Headset animation */
.badge-item:nth-child(2) i {
    animation: pulse-headset 2s ease-in-out infinite;
}

@keyframes pulse-headset {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Lock animation */
.badge-item:nth-child(3) i {
    position: relative;
    animation: secure 3s ease-in-out infinite;
}

@keyframes secure {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Money bill animation */
.badge-item:nth-child(4) i {
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
    0% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(-5px);
    }
}

.cta-button {
    margin-top: 30px;
}

/* Media Queries */
@media (max-width: 992px) {
    .trust-security-content {
        flex-direction: column;
    }

    .security-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
    }

    .security-badge i {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .trust-badges {
        gap: 15px;
    }

    .badge-item {
        padding: 12px;
    }

    .badge-item i {
        font-size: 1.7rem;
        margin-bottom: 8px;
    }

    .badge-item span {
        font-size: 0.9rem;
    }

    .security-features li {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
}

@media (max-width: 576px) {
    .trust-badges {
        flex-direction: column;
    }

    .badge-item {
        min-width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 15px;
    }

    .badge-item i {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 15px;
    }

    .security-badge {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .security-badge i {
        font-size: 1.1rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #0c0c0c;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(255, 107, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(107, 2, 255, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    grid-column: span 1;
}

.footer-logo-img {
    max-width: 180px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links,
.footer-contact,
.footer-info {
    grid-column: span 1;
}

.footer-links h4,
.footer-contact h4,
.footer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.footer-links ul,
.footer-contact ul,
.footer-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a,
.footer-info a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    padding: 2px 0;
}

.footer-links a:hover,
.footer-info a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
    min-width: 20px;
    margin-top: 4px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
    color: white;
}

.social-icons a:nth-child(1):hover {
    background: #06c755;
}

.social-icons a:nth-child(2):hover {
    background: #1877f2;
}

.social-icons a:nth-child(3):hover {
    background: #ff0000;
}

.social-icons a:nth-child(4):hover {
    background: #1da1f2;
}

.footer-disclaimer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.footer-payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-payment-methods i {
    font-size: 2rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-payment-methods i:hover {
    transform: translateY(-3px);
}

.fa-cc-visa:hover {
    color: #0157a2;
}

.fa-cc-mastercard:hover {
    color: #eb2230;
}

.fa-money-bill-wave:hover {
    color: #388e3c;
}

.fa-university:hover {
    color: #ffc107;
}

.fa-wallet:hover {
    color: #ff6b00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 5px 0;
}

/* Media Queries */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-logo {
        grid-column: span 2;
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto 15px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-logo-img {
        max-width: 160px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        grid-column: span 1;
    }

    .footer-links h4,
    .footer-contact h4,
    .footer-info h4 {
        font-size: 1rem;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-payment-methods {
        flex-wrap: wrap;
    }

    .footer-payment-methods i {
        font-size: 1.8rem;
    }
}

/* Sticky Bottom Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 100;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: white;
    text-decoration: none;
    border-top: 3px solid transparent;
}

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

.sticky-btn span {
    font-size: 0.85rem;
    white-space: nowrap;
}

.login-btn {
    background-color: #2c2c2c;
    border-top-color: #4a4a4a;
}

.login-btn:hover {
    background-color: #3a3a3a;
    color: white;
}

.register-btn {
    background: var(--gradient-primary);
    border-top-color: #ff8533;
}

.register-btn:hover {
    background: linear-gradient(135deg, #ff8533, #ff4d00);
    color: white;
}

.bonus-btn {
    background: var(--gradient-secondary);
    border-top-color: #8533ff;
}

.bonus-btn:hover {
    background: linear-gradient(135deg, #8533ff, #7700ff);
    color: white;
}

/* Media Queries */
@media (min-width: 768px) {
    .sticky-btn {
        padding: 15px 10px;
    }

    .sticky-btn i {
        font-size: 1.5rem;
    }

    .sticky-btn span {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 10px 5px;
    }

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

    .sticky-btn span {
        font-size: 0.75rem;
    }
}

#all-in-one > div > div.one-account-feature > div.featured-content > div > a.btn.btn-primary {
    color: #fff;
}