/* Base Theme Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4a, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #cccccc;
    font-weight: 400;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    color: #ffd700;
    font-size: 1.1rem;
    width: 20px;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

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

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #f59e0b);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        justify-content: center;
        padding: 12px 20px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 150px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
    
    .feature-item {
        padding: 10px 15px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
}

/* Header Styles */
.main-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    display: block;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-text {
    transform: scale(1.05);
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
}

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

.header-cta {
    flex-shrink: 0;
}

.cta-button {
    background: linear-gradient(45deg, #ffd700, #f59e0b);
    color: #000000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.cta-button i {
    font-size: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #ffd700;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 40px;
}

.mobile-logo {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    transform: scale(1.1);
    color: #ffed4a;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.3s ease forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-nav-link:hover {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    transform: translateX(10px);
}

.mobile-nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: #ffd700;
}

.mobile-cta-item {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.mobile-cta-button {
    background: linear-gradient(45deg, #ffd700, #f59e0b);
    color: #000000;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 18px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.mobile-cta-button i {
    font-size: 1.2rem;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-list {
        gap: 30px;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .header-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .mobile-menu-overlay {
        padding: 15px;
    }
    
    .mobile-menu-header {
        padding-bottom: 25px;
        margin-bottom: 30px;
    }
    
    .mobile-logo {
        font-size: 1.3rem;
    }
    
    .mobile-nav-list {
        gap: 15px;
    }
    
    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 12px 18px;
    }
    
    .mobile-cta-button {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.content-paragraphs {
    margin-bottom: 40px;
}

.content-paragraphs p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.content-paragraphs p:last-child {
    margin-bottom: 0;
}

.content-paragraphs strong {
    color: #ffd700;
    font-weight: 600;
}

.key-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

.content-image {
    position: relative;
}

.section-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.section-img:hover {
    transform: scale(1.02);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .section-content {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-paragraphs p {
        font-size: 1.05rem;
    }
    
    .key-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 80px 0;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .content-paragraphs {
        margin-bottom: 30px;
    }
    
    .content-paragraphs p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .key-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .feature-card {
        padding: 20px;
        text-align: center;
    }
    
    .feature-card i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-choose-container {
        padding: 0 15px;
    }
    
    .why-choose-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .content-paragraphs {
        margin-bottom: 25px;
    }
    
    .content-paragraphs p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-card i {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
}

/* Auto Deposit Withdraw Section */
.auto-deposit-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.auto-deposit-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.auto-deposit-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.auto-deposit-section .section-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.auto-deposit-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.auto-deposit-section .content-paragraphs {
    margin-bottom: 30px;
}

.auto-deposit-section .content-paragraphs p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.auto-deposit-section .content-paragraphs p:last-child {
    margin-bottom: 0;
}

.auto-deposit-section .content-paragraphs strong {
    color: #ffd700;
    font-weight: 600;
}

.feature-list {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.list-item:hover {
    transform: translateX(10px);
    color: #ffd700;
}

.list-item i {
    color: #ffd700;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    flex-shrink: 0;
}

.list-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
}

.list-item:hover span {
    color: #ffd700;
}

.closing-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
    text-align: justify;
    margin: 0;
    padding: 20px;
    background: rgba(255, 215, 0, 0.03);
    border-left: 4px solid #ffd700;
    border-radius: 0 8px 8px 0;
}

.closing-text strong {
    color: #ffd700;
    font-weight: 600;
}

.auto-deposit-section .content-image {
    position: relative;
}

.auto-deposit-section .section-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.auto-deposit-section .section-img:hover {
    transform: scale(1.02);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .auto-deposit-section .section-content {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }
    
    .auto-deposit-section .section-title {
        font-size: 2rem;
    }
    
    .auto-deposit-section .content-paragraphs p {
        font-size: 1.05rem;
    }
    
    .feature-list {
        padding: 25px;
    }
    
    .list-item {
        gap: 12px;
    }
    
    .list-item span {
        font-size: 0.95rem;
    }
    
    .closing-text {
        font-size: 1rem;
        padding: 18px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .auto-deposit-section {
        padding: 80px 0;
    }
    
    .auto-deposit-section .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .auto-deposit-section .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .auto-deposit-section .content-paragraphs {
        margin-bottom: 25px;
    }
    
    .auto-deposit-section .content-paragraphs p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .feature-list {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .list-item {
        gap: 10px;
        padding: 10px 0;
    }
    
    .list-item i {
        font-size: 1.1rem;
        width: 22px;
    }
    
    .list-item span {
        font-size: 0.9rem;
    }
    
    .closing-text {
        font-size: 0.95rem;
        padding: 15px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .auto-deposit-container {
        padding: 0 15px;
    }
    
    .auto-deposit-section {
        padding: 60px 0;
    }
    
    .auto-deposit-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .auto-deposit-section .content-paragraphs {
        margin-bottom: 20px;
    }
    
    .auto-deposit-section .content-paragraphs p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .feature-list {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .list-item {
        gap: 8px;
        padding: 8px 0;
    }
    
    .list-item i {
        font-size: 1rem;
        width: 20px;
    }
    
    .list-item span {
        font-size: 0.85rem;
    }
    
    .list-item:hover {
        transform: translateX(5px);
    }
    
    .closing-text {
        font-size: 0.9rem;
        padding: 12px;
        border-left-width: 3px;
    }
}

/* Game Providers Section */
.game-providers-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.game-providers-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.game-providers-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.game-providers-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.game-providers-section .section-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.game-providers-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.game-providers-section .content-paragraphs {
    margin-bottom: 35px;
}

.game-providers-section .content-paragraphs p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.game-providers-section .content-paragraphs p:last-child {
    margin-bottom: 0;
}

.game-providers-section .content-paragraphs strong {
    color: #ffd700;
    font-weight: 600;
}

.game-providers-section .content-paragraphs a {
    color: #ffd700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.game-providers-section .content-paragraphs a:hover {
    color: #ffed4a;
}

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

.provider-card {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.provider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.provider-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.provider-card:hover::before {
    opacity: 1;
}

.provider-card i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.provider-card:hover i {
    transform: scale(1.1);
}

.provider-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.2;
}

.provider-card p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.4;
    margin: 0;
}

.game-providers-section .content-image {
    position: relative;
    position: sticky;
    top: 20px;
}

.game-providers-section .section-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.game-providers-section .section-img:hover {
    transform: scale(1.02);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .game-providers-section .section-content {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .game-providers-section .section-title {
        font-size: 2rem;
    }
    
    .game-providers-section .content-paragraphs p {
        font-size: 1.05rem;
    }
    
    .provider-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .provider-card {
        padding: 20px;
    }
    
    .provider-card i {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .provider-card h3 {
        font-size: 1.2rem;
    }
    
    .provider-card p {
        font-size: 0.9rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .game-providers-section {
        padding: 80px 0;
    }
    
    .game-providers-section .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .game-providers-section .content-image {
        position: static;
        order: -1;
    }
    
    .game-providers-section .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .game-providers-section .content-paragraphs {
        margin-bottom: 30px;
    }
    
    .game-providers-section .content-paragraphs p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .provider-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .provider-card {
        padding: 18px;
    }
    
    .provider-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .provider-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .provider-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .game-providers-container {
        padding: 0 15px;
    }
    
    .game-providers-section {
        padding: 60px 0;
    }
    
    .game-providers-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .game-providers-section .content-paragraphs {
        margin-bottom: 25px;
    }
    
    .game-providers-section .content-paragraphs p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .provider-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .provider-card {
        padding: 15px;
    }
    
    .provider-card i {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .provider-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .provider-card p {
        font-size: 0.8rem;
    }
    
    .provider-card:hover {
        transform: translateY(-4px);
    }
}

/* BCR99th V3 Section */
.bcr99th-v3-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #252525 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bcr99th-v3-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -25%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite;
}

.bcr99th-v3-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.bcr99th-v3-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.bcr99th-v3-section .section-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.bcr99th-v3-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.bcr99th-v3-section .content-paragraphs {
    margin-bottom: 35px;
}

.bcr99th-v3-section .content-paragraphs p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.bcr99th-v3-section .content-paragraphs p:last-child {
    margin-bottom: 0;
}

.bcr99th-v3-section .content-paragraphs strong {
    color: #ffd700;
    font-weight: 600;
}

.bcr99th-v3-section .content-paragraphs a {
    color: #ffd700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.bcr99th-v3-section .content-paragraphs a:hover {
    color: #ffed4a;
}

.security-features {
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.security-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.security-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.security-item:hover {
    transform: translateX(10px);
    color: #ffd700;
}

.security-item i {
    color: #ffd700;
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.security-item:hover i {
    transform: scale(1.2);
}

.security-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
}

.security-item:hover span {
    color: #ffd700;
}

.additional-content {
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding-top: 25px;
}

.additional-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #e0e0e0;
    text-align: justify;
}

.additional-content p:last-child {
    margin-bottom: 0;
}

.additional-content strong {
    color: #ffd700;
    font-weight: 600;
}

.bcr99th-v3-section .content-image {
    position: relative;
    position: sticky;
    top: 20px;
}

.bcr99th-v3-section .section-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.bcr99th-v3-section .section-img:hover {
    transform: scale(1.02);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.1);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .bcr99th-v3-section .section-content {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }
    
    .bcr99th-v3-section .section-title {
        font-size: 2rem;
    }
    
    .bcr99th-v3-section .content-paragraphs p {
        font-size: 1.05rem;
    }
    
    .security-features {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .security-item {
        padding: 12px 0;
        gap: 12px;
    }
    
    .security-item i {
        font-size: 1.2rem;
        width: 28px;
    }
    
    .security-item span {
        font-size: 0.95rem;
    }
    
    .additional-content {
        padding-top: 20px;
    }
    
    .additional-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bcr99th-v3-section {
        padding: 80px 0;
    }
    
    .bcr99th-v3-section .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bcr99th-v3-section .content-image {
        position: static;
        order: -1;
    }
    
    .bcr99th-v3-section .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .bcr99th-v3-section .content-paragraphs {
        margin-bottom: 30px;
    }
    
    .bcr99th-v3-section .content-paragraphs p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .security-features {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .security-item {
        padding: 10px 0;
        gap: 10px;
    }
    
    .security-item i {
        font-size: 1.1rem;
        width: 25px;
    }
    
    .security-item span {
        font-size: 0.9rem;
    }
    
    .additional-content {
        padding-top: 18px;
    }
    
    .additional-content p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .bcr99th-v3-container {
        padding: 0 15px;
    }
    
    .bcr99th-v3-section {
        padding: 60px 0;
    }
    
    .bcr99th-v3-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .bcr99th-v3-section .content-paragraphs {
        margin-bottom: 25px;
    }
    
    .bcr99th-v3-section .content-paragraphs p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .security-features {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .security-item {
        padding: 8px 0;
        gap: 8px;
    }
    
    .security-item i {
        font-size: 1rem;
        width: 22px;
    }
    
    .security-item span {
        font-size: 0.85rem;
    }
    
    .security-item:hover {
        transform: translateX(5px);
    }
    
    .additional-content {
        padding-top: 15px;
    }
    
    .additional-content p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}

/* BCR99th Symbol Section */
.bcr99th-symbol-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bcr99th-symbol-section::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
}

.bcr99th-symbol-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.bcr99th-symbol-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.bcr99th-symbol-section .section-content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: start;
}

.bcr99th-symbol-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.bcr99th-symbol-section .content-paragraphs {
    margin-bottom: 35px;
}

.bcr99th-symbol-section .content-paragraphs p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.bcr99th-symbol-section .content-paragraphs p:last-child {
    margin-bottom: 0;
}

.bcr99th-symbol-section .content-paragraphs strong {
    color: #ffd700;
    font-weight: 600;
}

.bcr99th-symbol-section .content-paragraphs a {
    color: #ffd700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.bcr99th-symbol-section .content-paragraphs a:hover {
    color: #ffed4a;
}

.dealer-features {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.dealer-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.dealer-features .feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.dealer-features .feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dealer-features .feature-item:hover {
    transform: translateX(12px);
    color: #ffd700;
}

.dealer-features .feature-item i {
    color: #ffd700;
    font-size: 1.4rem;
    width: 35px;
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.dealer-features .feature-item:hover i {
    transform: scale(1.3) rotate(5deg);
}

.dealer-features .feature-item span {
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
}

.dealer-features .feature-item:hover span {
    color: #ffd700;
}

.vip-content {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.vip-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4a, #ffd700);
    border-radius: 15px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.vip-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f0f0f0;
    text-align: justify;
    margin: 0;
    position: relative;
    z-index: 1;
}

.vip-content strong {
    color: #ffd700;
    font-weight: 600;
}

.bcr99th-symbol-section .content-image {
    position: relative;
    position: sticky;
    top: 20px;
}

.bcr99th-symbol-section .section-img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 215, 0, 0.3);
}

.bcr99th-symbol-section .section-img:hover {
    transform: scale(1.02);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 35px 70px rgba(255, 215, 0, 0.15);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.live-indicator {
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.live-indicator i {
    font-size: 0.6rem;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .bcr99th-symbol-section .section-content {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }
    
    .bcr99th-symbol-section .section-title {
        font-size: 2rem;
    }
    
    .bcr99th-symbol-section .content-paragraphs p {
        font-size: 1.05rem;
    }
    
    .dealer-features {
        padding: 30px;
        margin-bottom: 25px;
    }
    
    .dealer-features .feature-item {
        padding: 15px 0;
        gap: 15px;
    }
    
    .dealer-features .feature-item i {
        font-size: 1.3rem;
        width: 32px;
    }
    
    .dealer-features .feature-item span {
        font-size: 1rem;
    }
    
    .vip-content {
        padding: 25px;
    }
    
    .vip-content p {
        font-size: 1rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bcr99th-symbol-section {
        padding: 80px 0;
    }
    
    .bcr99th-symbol-section .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bcr99th-symbol-section .content-image {
        position: static;
        order: -1;
    }
    
    .bcr99th-symbol-section .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .bcr99th-symbol-section .content-paragraphs {
        margin-bottom: 30px;
    }
    
    .bcr99th-symbol-section .content-paragraphs p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .dealer-features {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .dealer-features .feature-item {
        padding: 12px 0;
        gap: 12px;
    }
    
    .dealer-features .feature-item i {
        font-size: 1.2rem;
        width: 28px;
    }
    
    .dealer-features .feature-item span {
        font-size: 0.95rem;
    }
    
    .vip-content {
        padding: 20px;
    }
    
    .vip-content p {
        font-size: 0.95rem;
    }
    
    .image-overlay {
        top: 15px;
        right: 15px;
    }
    
    .live-indicator {
        padding: 6px 12px;
        font-size: 0.8rem;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .bcr99th-symbol-container {
        padding: 0 15px;
    }
    
    .bcr99th-symbol-section {
        padding: 60px 0;
    }
    
    .bcr99th-symbol-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .bcr99th-symbol-section .content-paragraphs {
        margin-bottom: 25px;
    }
    
    .bcr99th-symbol-section .content-paragraphs p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .dealer-features {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .dealer-features .feature-item {
        padding: 10px 0;
        gap: 10px;
    }
    
    .dealer-features .feature-item i {
        font-size: 1.1rem;
        width: 25px;
    }
    
    .dealer-features .feature-item span {
        font-size: 0.9rem;
    }
    
    .dealer-features .feature-item:hover {
        transform: translateX(8px);
    }
    
    .vip-content {
        padding: 18px;
    }
    
    .vip-content p {
        font-size: 0.9rem;
    }
    
    .image-overlay {
        top: 10px;
        right: 10px;
    }
    
    .live-indicator {
        padding: 5px 10px;
        font-size: 0.75rem;
        gap: 5px;
    }
    
    .live-indicator i {
        font-size: 0.5rem;
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.5) 50%, transparent 100%);
}

.main-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 25px;
    text-align: justify;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.contact-item i {
    color: #ffd700;
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    border-radius: 1px;
}

.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-radius: 4px;
}

.footer-link:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-link i {
    color: #ffd700;
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.footer-link:hover i {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-section {
    flex: 1;
}

.copyright-text {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copyright-text i {
    color: #ffd700;
    font-size: 0.8rem;
}

.footer-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.badge-item i {
    color: #ffd700;
    font-size: 0.9rem;
}

.badge-item span {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .footer-games {
        grid-column: 3;
        grid-row: 1;
    }
    
    .footer-info {
        grid-column: 2 / 4;
        grid-row: 2;
    }
    
    .footer-info .footer-link-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 20px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo-text {
        font-size: 1.8rem;
    }
    
    .footer-description {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-title {
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-link-list {
        align-items: center;
        text-align: center;
    }
    
    .footer-link {
        justify-content: center;
        padding: 10px 20px;
        background: rgba(255, 215, 0, 0.05);
        border-radius: 8px;
        margin: 0 auto;
        max-width: 250px;
    }
    
    .footer-info .footer-link-list {
        display: flex;
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .copyright-text {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .main-footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .footer-logo-text {
        font-size: 1.6rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }
    
    .footer-link {
        font-size: 0.9rem;
        padding: 8px 15px;
        max-width: 100%;
    }
    
    .footer-link:hover {
        transform: translateX(0);
        transform: translateY(-2px);
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .copyright-text {
        font-size: 0.85rem;
    }
    
    .footer-badges {
        gap: 10px;
    }
    
    .badge-item {
        padding: 6px 12px;
    }
    
    .badge-item span {
        font-size: 0.8rem;
    }
    
    .badge-item i {
        font-size: 0.85rem;
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0;
    z-index: 998;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sticky-btn:hover::before {
    opacity: 1;
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.sticky-btn span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    color: #ffd700;
}

.sticky-btn:hover i {
    transform: scale(1.1);
}

/* Individual button styling */
.sticky-btn-login {
    background: rgba(20, 20, 20, 0.9);
    border-right: 1px solid rgba(255, 215, 0, 0.2);
}

.sticky-btn-login:hover {
    background: rgba(30, 30, 30, 0.95);
}

.sticky-btn-login i {
    color: #4fc3f7;
}

.sticky-btn-register {
    background: rgba(20, 20, 20, 0.9);
    border-right: 1px solid rgba(255, 215, 0, 0.2);
}

.sticky-btn-register:hover {
    background: rgba(30, 30, 30, 0.95);
}

.sticky-btn-register i {
    color: #66bb6a;
}

.sticky-btn-credit {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 152, 0, 0.2) 100%);
    position: relative;
}

.sticky-btn-credit::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ff9800, #ffd700);
    border-radius: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderPulse 3s linear infinite;
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

.sticky-btn-credit:hover::after {
    opacity: 0.8;
}

.sticky-btn-credit i {
    color: #ffd700;
    animation: giftPulse 2s ease-in-out infinite;
}

@keyframes giftPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.sticky-btn-credit span {
    color: #ffd700;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.4) 0%, rgba(255, 152, 0, 0.4) 100%);
    color: #ffffff;
}

.sticky-btn-credit:hover span {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 0;
    }
    
    .sticky-btn {
        padding: 10px 6px;
        min-height: 55px;
        font-size: 0.8rem;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }
    
    .sticky-btn span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 8px 4px;
        min-height: 50px;
        font-size: 0.75rem;
    }
    
    .sticky-btn i {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .sticky-btn span {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .sticky-btn:hover {
        transform: translateY(-1px);
    }
}

@media (max-width: 360px) {
    .sticky-btn {
        padding: 6px 2px;
        min-height: 45px;
    }
    
    .sticky-btn i {
        font-size: 0.9rem;
    }
    
    .sticky-btn span {
        font-size: 0.65rem;
    }
}

/* Ensure content doesn't get hidden behind sticky buttons */
body {
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 55px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 50px;
    }
}

@media (max-width: 360px) {
    body {
        padding-bottom: 45px;
    }
}

/* Login Section Styles */
.login-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 20px;
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: rotateBackground 30s linear infinite;
}

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

.login-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.login-box {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 50px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.login-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 20px;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.login-content {
    position: relative;
    z-index: 1;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    display: none;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

.error-message.show {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message i {
    color: #dc3545;
    font-size: 1.1rem;
}

.error-message span {
    color: #dc3545;
    font-size: 0.95rem;
    font-weight: 500;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #ffd700;
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Sarabun', sans-serif;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input:invalid {
    border-color: #dc3545;
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #cccccc;
    cursor: pointer;
    padding: 5px;
    font-size: 1rem;
    transition: color 0.3s ease;
    z-index: 2;
}

.password-toggle:hover {
    color: #ffd700;
}

.field-error {
    font-size: 0.85rem;
    color: #dc3545;
    margin-top: 5px;
    display: none;
    align-items: center;
    gap: 5px;
}

.field-error.show {
    display: flex;
}

.field-error::before {
    content: '⚠';
    font-size: 0.8rem;
}

.login-btn {
    background: linear-gradient(45deg, #ffd700, #f59e0b);
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn.loading {
    pointer-events: none;
}

.login-btn.loading .btn-text {
    opacity: 0;
}

.login-btn.loading .loading-spinner {
    opacity: 1;
}

.loading-spinner {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading-spinner i {
    animation: spin 1s linear infinite;
    color: #000000;
    font-size: 1.1rem;
}

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

.register-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.register-text {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.register-btn {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-btn:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .login-section {
        padding: 60px 15px 15px;
    }
    
    .login-box {
        padding: 35px 30px;
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .login-subtitle {
        font-size: 0.95rem;
    }
    
    .form-input {
        padding: 14px 14px 14px 42px;
    }
    
    .login-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 11px 22px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 50px 10px 10px;
    }
    
    .login-box {
        padding: 25px 20px;
        margin: 0 5px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .login-form {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .form-input {
        padding: 12px 12px 12px 38px;
        font-size: 0.95rem;
    }
    
    .input-icon {
        font-size: 0.9rem;
        left: 12px;
    }
    
    .password-toggle {
        right: 12px;
        font-size: 0.9rem;
    }
    
    .login-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .register-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .error-message {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .error-message span {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .login-box {
        padding: 20px 15px;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .login-title {
        font-size: 1.4rem;
    }
    
    .form-input {
        padding: 10px 10px 10px 35px;
    }
    
    .input-icon {
        left: 10px;
    }
    
    .password-toggle {
        right: 10px;
    }
}

/* Register Section Styles */
.register-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 20px;
    position: relative;
    overflow: hidden;
}

.register-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: rotateRegisterBackground 30s linear infinite;
}

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

.register-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.register-box {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 50px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.register-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 20px;
}

.register-logo {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.register-logo .logo-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.register-logo .logo-image:hover {
    transform: scale(1.05);
}

.register-content {
    position: relative;
    z-index: 1;
}

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.register-section .error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    display: none;
    align-items: center;
    gap: 10px;
    animation: slideDownRegister 0.3s ease;
}

.register-section .error-message.show {
    display: flex;
}

@keyframes slideDownRegister {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-section .error-message i {
    color: #dc3545;
    font-size: 1.1rem;
}

.register-section .error-message span {
    color: #dc3545;
    font-size: 0.95rem;
    font-weight: 500;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.register-section .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.register-section .form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 5px;
}

.register-section .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.register-section .input-icon {
    position: absolute;
    left: 15px;
    color: #ffd700;
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
}

.register-section .form-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Sarabun', sans-serif;
}

.register-section .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.register-section .form-input:focus {
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.register-section .form-input:invalid {
    border-color: #dc3545;
}

.register-section .field-error {
    font-size: 0.85rem;
    color: #dc3545;
    margin-top: 5px;
    display: none;
    align-items: center;
    gap: 5px;
}

.register-section .field-error.show {
    display: flex;
}

.register-section .field-error::before {
    content: '⚠';
    font-size: 0.8rem;
}

.register-btn {
    background: linear-gradient(45deg, #ffd700, #f59e0b);
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.register-btn:active {
    transform: translateY(0);
}

.register-btn.loading {
    pointer-events: none;
}

.register-btn.loading .btn-text {
    opacity: 0;
}

.register-btn.loading .loading-spinner {
    opacity: 1;
}

.register-section .loading-spinner {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.register-section .loading-spinner i {
    animation: spinRegister 1s linear infinite;
    color: #000000;
    font-size: 1.1rem;
}

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

.login-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.login-text {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.login-btn {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-btn:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .register-section {
        padding: 60px 15px 15px;
    }
    
    .register-box {
        padding: 35px 30px;
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .register-logo .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .register-title {
        font-size: 1.8rem;
    }
    
    .register-subtitle {
        font-size: 0.95rem;
    }
    
    .register-section .form-input {
        padding: 14px 14px 14px 42px;
    }
    
    .register-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 11px 22px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 50px 10px 10px;
    }
    
    .register-box {
        padding: 25px 20px;
        margin: 0 5px;
    }
    
    .register-logo .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .register-title {
        font-size: 1.6rem;
    }
    
    .register-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .register-form {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .register-section .form-input {
        padding: 12px 12px 12px 38px;
        font-size: 0.95rem;
    }
    
    .register-section .input-icon {
        font-size: 0.9rem;
        left: 12px;
    }
    
    .register-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .login-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .register-section .error-message {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .register-section .error-message span {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .register-box {
        padding: 20px 15px;
    }
    
    .register-logo .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .register-title {
        font-size: 1.4rem;
    }
    
    .register-section .form-input {
        padding: 10px 10px 10px 35px;
    }
    
    .register-section .input-icon {
        left: 10px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: heroRotate 20s linear infinite;
}

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

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta-btn {
    background: linear-gradient(45deg, #ffd700, #f59e0b);
    color: #000000;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-cta-btn:hover::before {
    left: 100%;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.hero-cta-btn i {
    font-size: 1.2rem;
}

/* Promotion Sections */
.promotion-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.promotion-section-alt {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.promotion-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.promotion-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.promotion-content {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.promotion-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 20px;
}

.promotion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.promotion-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    flex: 1;
    min-width: 300px;
}

.promotion-badge {
    background: linear-gradient(45deg, #ffd700, #f59e0b);
    color: #000000;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.promotion-list {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.promotion-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promotion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.promotion-item:hover {
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.promotion-item:hover::before {
    opacity: 1;
}

.promotion-item i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.promotion-item:hover i {
    transform: scale(1.2);
}

.promotion-item span {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
}

.promotion-cta-btn {
    background: linear-gradient(45deg, #ffd700, #f59e0b);
    color: #000000;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 35px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    justify-content: center;
    max-width: 400px;
    width: 100%;
}

.promotion-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.promotion-cta-btn i {
    font-size: 1.1rem;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta-btn {
        font-size: 1.2rem;
        padding: 18px 35px;
    }
    
    .promotion-content {
        padding: 40px;
    }
    
    .promotion-title {
        font-size: 1.8rem;
    }
    
    .promotion-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .promotion-title {
        min-width: auto;
    }
    
    .promotion-badge {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .hero-cta-btn {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
    
    .promotion-section {
        padding: 60px 0;
    }
    
    .promotion-content {
        padding: 30px;
        border-radius: 15px;
    }
    
    .promotion-header {
        margin-bottom: 30px;
        gap: 15px;
        text-align: center;
        align-items: center;
    }
    
    .promotion-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .promotion-badge {
        align-self: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .promotion-list {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .promotion-item {
        padding: 15px;
        gap: 12px;
    }
    
    .promotion-item:hover {
        transform: translateX(5px);
    }
    
    .promotion-item span {
        font-size: 1rem;
    }
    
    .promotion-cta-btn {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-container,
    .promotion-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .hero-cta-btn {
        font-size: 1rem;
        padding: 14px 25px;
        gap: 8px;
    }
    
    .promotion-section {
        padding: 50px 0;
    }
    
    .promotion-content {
        padding: 25px 20px;
    }
    
    .promotion-header {
        margin-bottom: 25px;
        gap: 12px;
    }
    
    .promotion-title {
        font-size: 1.4rem;
    }
    
    .promotion-badge {
        padding: 10px 18px;
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .promotion-list {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .promotion-item {
        padding: 12px;
        gap: 10px;
    }
    
    .promotion-item i {
        font-size: 1.1rem;
    }
    
    .promotion-item span {
        font-size: 0.95rem;
    }
    
    .promotion-cta-btn {
        font-size: 1rem;
        padding: 14px 25px;
        gap: 8px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-cta-btn {
        font-size: 0.95rem;
        padding: 12px 22px;
    }
    
    .promotion-content {
        padding: 20px 15px;
    }
    
    .promotion-title {
        font-size: 1.3rem;
    }
    
    .promotion-badge {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .promotion-item {
        padding: 10px;
    }
    
    .promotion-item span {
        font-size: 0.9rem;
    }
    
    .promotion-cta-btn {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
}