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

body {
    font-family: 'Sarabun', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d2d5f 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    min-width: 140px;
    justify-content: center;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d17a1a 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Hero Section Styles */
.hero-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 30%, #2d2d5f 60%, #1a1a3e 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #b8b8d4;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.feature-item i {
    font-size: 1.2rem;
    color: #ff6b35;
    min-width: 20px;
}

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

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

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 107, 53, 0.3);
}

.hero-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.hero-badge i {
    font-size: 0.8rem;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-wrap: wrap;
    }
    
    .btn {
        font-size: 15px;
        padding: 10px 20px;
        min-width: 120px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px;
        justify-content: center;
    }
    
    .hero-badge {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-section {
        padding: 30px 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .feature-item {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d2d5f 100%);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.logo-link i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-name {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 1rem;
    color: #ff6b35;
}

.nav-link:hover i {
    color: #f7931e;
}

.cta-item .cta-button {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    font-weight: 700;
}

.cta-item .cta-button:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d17a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-item .cta-button i {
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: linear-gradient(90deg, #e55a2b 0%, #d17a1a 100%);
}

.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 Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, #1a1a3e 0%, #0f0f23 50%, #2d2d5f 100%);
    border-left: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-site-name {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-close {
    width: 35px;
    height: 35px;
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    color: #ff6b35;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    color: #f7931e;
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 20px 0;
}

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

.mobile-nav-item {
    position: relative;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #ff6b35;
    transform: translateX(5px);
}

.mobile-nav-link i {
    font-size: 1.2rem;
    color: #ff6b35;
    min-width: 20px;
}

.mobile-nav-link:hover i {
    color: #f7931e;
    transform: scale(1.1);
}

.mobile-cta-item {
    margin-top: 20px;
    padding: 0 20px;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d17a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-cta-button i {
    color: white;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .cta-item .cta-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .site-name {
        font-size: 1.3rem;
    }
    
    .logo-link i {
        font-size: 1.6rem;
    }
    
    .mobile-menu {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
        height: 55px;
    }
    
    .site-name {
        font-size: 1.1rem;
    }
    
    .logo-link i {
        font-size: 1.4rem;
    }
    
    .mobile-menu {
        width: 260px;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-site-name {
        font-size: 1rem;
    }
    
    .mobile-menu-close {
        width: 30px;
        height: 30px;
    }
    
    .mobile-nav-link {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .mobile-cta-item {
        padding: 0 15px;
    }
    
    .mobile-cta-button {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* Add top padding to body to account for fixed header */
body {
    padding-top: 70px;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 55px;
    }
}

/* Baccarat Guide Section Styles */
.baccarat-guide-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #1a1a3e 0%, #0f0f23 50%, #1a1a3e 100%);
    position: relative;
    overflow: hidden;
}

.baccarat-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.baccarat-guide-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.guide-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guide-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
}

.guide-image {
    position: relative;
}

.guide-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

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

.guide-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.guide-overlay i {
    font-size: 1rem;
}

.features-list {
    margin-bottom: 80px;
}

.features-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.95rem;
    color: #b8b8d4;
    line-height: 1.6;
}

.game-varieties {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.varieties-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
}

.varieties-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .baccarat-guide-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .guide-content {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .guide-paragraph {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .game-varieties {
        padding: 30px;
        margin-bottom: 60px;
    }
    
    .varieties-title {
        font-size: 1.6rem;
    }
    
    .varieties-desc {
        font-size: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .baccarat-guide-section {
        padding: 40px 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .guide-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .guide-paragraph {
        font-size: 0.95rem;
        text-indent: 1.5em;
    }
    
    .guide-overlay {
        bottom: 15px;
        left: 15px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .features-list {
        margin-bottom: 50px;
    }
    
    .features-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-desc {
        font-size: 0.9rem;
    }
    
    .game-varieties {
        padding: 25px 20px;
    }
    
    .varieties-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .varieties-desc {
        font-size: 0.95rem;
        text-indent: 1.5em;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .baccarat-guide-section {
        padding: 30px 10px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .guide-paragraph {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .guide-overlay {
        bottom: 10px;
        left: 10px;
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .features-title {
        font-size: 1.3rem;
    }
    
    .feature-card {
        padding: 18px 12px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-desc {
        font-size: 0.85rem;
    }
    
    .game-varieties {
        padding: 20px 15px;
    }
    
    .varieties-title {
        font-size: 1.2rem;
    }
    
    .varieties-desc {
        font-size: 0.9rem;
    }
}

/* Baccarat 168 Section Styles */
.baccarat-168-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 30%, #2d2d5f 60%, #1a1a3e 100%);
    position: relative;
    overflow: hidden;
}

.baccarat-168-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.baccarat-168-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 80px;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.content-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.highlight-content p {
    font-size: 1rem;
    color: #b8b8d4;
    margin: 0;
}

.image-section {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

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

.image-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-highlight {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.feature-visual {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-highlight:hover .feature-visual {
    transform: scale(1.1) rotate(5deg);
}

.feature-visual i {
    font-size: 2rem;
    color: white;
}

.feature-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
}

.vip-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700 0%, #ff6b35 50%, #667eea 100%);
}

.vip-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-title::before {
    content: '\f521';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ffd700;
}

.vip-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 25px;
}

.vip-link {
    color: #ff6b35;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.vip-link:hover {
    color: #f7931e;
}

.vip-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

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

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

.vip-feature i {
    color: #ffd700;
    font-size: 1.1rem;
    min-width: 16px;
}

.vip-feature span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.promotion-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.promotion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.promotion-header i {
    font-size: 1.8rem;
    color: #ff6b35;
}

.promotion-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.promotion-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 30px;
}

.promotion-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.promo-type {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.promo-type:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.promo-type i {
    color: #ff6b35;
    font-size: 1.1rem;
    min-width: 16px;
}

.promo-type span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .baccarat-168-section {
        padding: 60px 20px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .content-paragraph {
        font-size: 1rem;
    }
    
    .highlight-box {
        padding: 20px;
        gap: 15px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
    }
    
    .highlight-icon i {
        font-size: 1.3rem;
    }
    
    .feature-highlight {
        grid-template-columns: 70px 1fr;
        gap: 25px;
        padding: 30px;
    }
    
    .feature-visual {
        width: 70px;
        height: 70px;
    }
    
    .feature-visual i {
        font-size: 1.8rem;
    }
    
    .vip-section, .promotion-section {
        padding: 30px;
    }
    
    .vip-features, .promotion-types {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .baccarat-168-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .content-paragraph {
        font-size: 0.95rem;
        text-indent: 1.5em;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .feature-highlight {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .feature-text {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .vip-section, .promotion-section {
        padding: 25px 20px;
    }
    
    .vip-title {
        font-size: 1.4rem;
        justify-content: center;
    }
    
    .promotion-header {
        justify-content: center;
    }
    
    .promotion-title {
        font-size: 1.4rem;
    }
    
    .vip-features, .promotion-types {
        grid-template-columns: 1fr;
    }
    
    .vip-description, .promotion-text {
        font-size: 1rem;
        text-indent: 1.5em;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .baccarat-168-section {
        padding: 30px 10px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .content-paragraph {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .highlight-box {
        padding: 15px;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
    }
    
    .highlight-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-highlight {
        padding: 20px 15px;
    }
    
    .feature-visual {
        width: 60px;
        height: 60px;
    }
    
    .feature-visual i {
        font-size: 1.5rem;
    }
    
    .feature-heading {
        font-size: 1.3rem;
    }
    
    .vip-section, .promotion-section {
        padding: 20px 15px;
    }
    
    .vip-title, .promotion-title {
        font-size: 1.2rem;
    }
    
    .vip-description, .promotion-text {
        font-size: 0.9rem;
    }
    
    .vip-feature, .promo-type {
        padding: 12px 15px;
    }
}

/* Top Baccarat Sites Section Styles */
.top-baccarat-sites-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #2d2d5f 0%, #1a1a3e 30%, #0f0f23 70%, #1a1a3e 100%);
    position: relative;
    overflow: hidden;
}

.top-baccarat-sites-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.top-baccarat-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
}

.rating-showcase {
    display: flex;
    justify-content: center;
}

.rating-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    animation: pulse 3s infinite;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.rating-stars i {
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-score {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.rating-label {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.brands-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.brand-highlight {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.brand-highlight.acash::before {
    background: linear-gradient(90deg, #ffd700 0%, #ff6b35 100%);
}

.brand-highlight.fun88::before {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.brand-highlight.bclub::before {
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
}

.brand-highlight:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.brand-highlight:hover::before {
    transform: scaleX(1);
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.acash .brand-logo {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
}

.fun88 .brand-logo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bclub .brand-logo {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.brand-highlight:hover .brand-logo {
    transform: scale(1.1) rotate(10deg);
}

.brand-logo i {
    font-size: 1.5rem;
    color: white;
}

.brand-name {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.brand-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
}

.rating-stars-small {
    display: flex;
    gap: 3px;
}

.rating-stars-small i {
    font-size: 0.9rem;
    color: #ffd700;
}

.brand-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
}

.brand-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 25px;
}

.brand-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.brand-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.brand-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.brand-feature i {
    font-size: 1rem;
    color: #ff6b35;
}

.brand-feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.security-features {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

.features-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.features-header i {
    font-size: 2rem;
    color: #667eea;
}

.features-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.security-item {
    display: flex;
    gap: 20px;
    align-items: start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.security-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.security-item:hover .security-icon {
    transform: scale(1.1);
}

.security-icon i {
    font-size: 1.2rem;
    color: white;
}

.security-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.security-text {
    font-size: 0.95rem;
    color: #b8b8d4;
    line-height: 1.6;
    margin: 0;
}

.conclusion-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.conclusion-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.conclusion-image {
    position: relative;
}

.conclusion-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.conclusion-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.conclusion-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 10px;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d17a1a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .top-baccarat-sites-section {
        padding: 60px 20px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .brands-showcase {
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .brand-highlight {
        padding: 30px;
    }
    
    .security-features {
        padding: 40px 30px;
        margin-bottom: 60px;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .conclusion-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .top-baccarat-sites-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .intro-paragraph {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .rating-card {
        padding: 25px 20px;
    }
    
    .rating-score {
        font-size: 2rem;
    }
    
    .brand-highlight {
        padding: 25px 20px;
    }
    
    .brand-header {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .brand-logo {
        width: 50px;
        height: 50px;
    }
    
    .brand-logo i {
        font-size: 1.2rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-description {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .brand-features {
        justify-content: center;
    }
    
    .security-features {
        padding: 30px 20px;
    }
    
    .features-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .features-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .security-item {
        padding: 20px;
        gap: 15px;
    }
    
    .security-icon {
        width: 45px;
        height: 45px;
    }
    
    .security-heading {
        font-size: 1rem;
    }
    
    .conclusion-section {
        padding: 30px 20px;
    }
    
    .conclusion-paragraph {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .top-baccarat-sites-section {
        padding: 30px 10px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .intro-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .rating-card {
        padding: 20px 15px;
    }
    
    .rating-stars i {
        font-size: 1.2rem;
    }
    
    .rating-score {
        font-size: 1.8rem;
    }
    
    .brand-highlight {
        padding: 20px 15px;
    }
    
    .brand-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .brand-features {
        flex-direction: column;
        align-items: center;
    }
    
    .security-features {
        padding: 25px 15px;
    }
    
    .features-title {
        font-size: 1.3rem;
    }
    
    .security-item {
        flex-direction: column;
        text-align: center;
        padding: 18px 12px;
    }
    
    .conclusion-section {
        padding: 25px 15px;
    }
    
    .conclusion-paragraph {
        font-size: 0.95rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Baccarat 888 Section Styles */
.baccarat-888-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 25%, #2d2d5f 50%, #1a1a3e 75%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.baccarat-888-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 70%, rgba(102, 126, 234, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.baccarat-888-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-visual {
    position: relative;
}

.intro-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

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

.intro-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.intro-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 30px;
}

.fairness-guarantee {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.guarantee-item {
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-3px);
}

.guarantee-item i {
    font-size: 1.3rem;
    color: #667eea;
    min-width: 20px;
}

.guarantee-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.promotions-showcase {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.promotions-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
}

.promo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.promo-header i {
    font-size: 2rem;
    color: #ff6b35;
}

.promo-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.promo-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 40px;
}

.promo-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.promo-highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.promo-highlight:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.promo-highlight:hover .promo-icon {
    transform: scale(1.1) rotate(10deg);
}

.promo-icon i {
    font-size: 1.5rem;
    color: white;
}

.promo-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.promo-detail {
    font-size: 0.95rem;
    color: #b8b8d4;
    margin: 0;
}

.website-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.features-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.features-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
}

.login-link {
    color: #ff6b35;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #f7931e;
}

.tech-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.tech-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 30px;
}

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

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

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tech-item i {
    font-size: 1.3rem;
    color: #667eea;
    min-width: 20px;
}

.tech-name {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.tech-desc {
    font-size: 0.85rem;
    color: #b8b8d4;
    margin: 0;
}

.brand-variants {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

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

.variants-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.variants-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.variant-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.variant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.variant-card.standard::before {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.variant-card.vip::before {
    background: linear-gradient(90deg, #ffd700 0%, #ff6b35 100%);
}

.variant-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.variant-card:hover::before {
    transform: scaleX(1);
}

.variant-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.variant-header i {
    font-size: 1.8rem;
}

.variant-card.standard i {
    color: #667eea;
}

.variant-card.vip i {
    color: #ffd700;
}

.variant-name {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.variant-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #b8b8d4;
    margin-bottom: 20px;
}

.variant-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-feature {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.management-section {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.management-text {
    font-size: 1.05rem;
    color: #b8b8d4;
    font-style: italic;
    margin: 0;
}

.certification-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(102, 126, 234, 0.08) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
}

.cert-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.cert-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.cert-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 30px;
}

.register-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 10px;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.register-button:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d17a1a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.cert-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 107, 53, 0.3);
}

.stat-number {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .baccarat-888-section {
        padding: 60px 20px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .promotions-showcase {
        padding: 40px 30px;
        margin-bottom: 60px;
    }
    
    .promo-highlights {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .website-features {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .variants-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cert-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cert-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .baccarat-888-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .intro-paragraph {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .fairness-guarantee {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .promotions-showcase {
        padding: 30px 20px;
    }
    
    .promo-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .promo-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .promo-description {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .promo-highlight {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .features-heading, .tech-heading {
        font-size: 1.4rem;
    }
    
    .features-description, .tech-description {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .brand-variants {
        padding: 30px 20px;
    }
    
    .variants-title {
        font-size: 1.5rem;
    }
    
    .variant-card {
        padding: 25px 20px;
    }
    
    .certification-section {
        padding: 40px 20px;
    }
    
    .cert-heading {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .cert-description {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .register-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cert-stats {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .baccarat-888-section {
        padding: 30px 10px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .intro-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .guarantee-item {
        padding: 15px;
        gap: 10px;
    }
    
    .promotions-showcase {
        padding: 25px 15px;
    }
    
    .promo-title {
        font-size: 1.3rem;
    }
    
    .promo-highlight {
        padding: 20px 15px;
    }
    
    .promo-icon {
        width: 50px;
        height: 50px;
    }
    
    .promo-icon i {
        font-size: 1.2rem;
    }
    
    .features-heading, .tech-heading {
        font-size: 1.2rem;
    }
    
    .features-description, .tech-description {
        font-size: 0.95rem;
    }
    
    .tech-item {
        padding: 15px 12px;
    }
    
    .brand-variants {
        padding: 25px 15px;
    }
    
    .variants-title {
        font-size: 1.3rem;
    }
    
    .variant-card {
        padding: 20px 15px;
    }
    
    .variant-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .certification-section {
        padding: 30px 15px;
    }
    
    .cert-heading {
        font-size: 1.3rem;
    }
    
    .cert-description {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
}

/* No Minimum Wallet Section Styles */
.no-minimum-wallet-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #1a1a3e 0%, #0f0f23 25%, #2d2d5f 50%, #0f0f23 75%, #1a1a3e 100%);
    position: relative;
    overflow: hidden;
}

.no-minimum-wallet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.no-minimum-wallet-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
}

.intro-visual {
    position: relative;
}

.intro-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

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

.intro-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    animation: pulse 3s infinite;
}

.wallet-systems {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

.wallet-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.wallet-header i {
    font-size: 2rem;
    color: #667eea;
}

.wallet-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.wallet-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 40px;
}

.wallet-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.wallet-type {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wallet-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.wallet-type:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.wallet-type:hover::before {
    transform: scaleX(1);
}

.truemoney::before {
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
}

.airpay::before {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.shopee::before {
    background: linear-gradient(90deg, #f7931e 0%, #ff6b35 100%);
}

.crypto::before {
    background: linear-gradient(90deg, #ffd700 0%, #ff6b35 100%);
}

.wallet-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.wallet-type:hover .wallet-icon {
    transform: scale(1.1) rotate(10deg);
}

.truemoney {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.airpay {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.shopee {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.crypto {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
}

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

.wallet-name {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.wallet-desc {
    font-size: 0.95rem;
    color: #b8b8d4;
    margin: 0;
}

.payment-features {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 80px;
}

.payment-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.payment-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.payment-method:hover .payment-icon {
    transform: scale(1.1);
}

.payment-icon i {
    font-size: 1.2rem;
    color: white;
}

.payment-name {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.payment-detail {
    font-size: 0.9rem;
    color: #b8b8d4;
    margin: 0;
}

.minimum-betting {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(102, 126, 234, 0.08) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

.minimum-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.minimum-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.minimum-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 30px;
}

.minimum-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 1.2rem;
    color: #ff6b35;
    min-width: 20px;
}

.benefit-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.minimum-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.registration-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

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

.reg-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.reg-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 40px;
}

.register-link {
    color: #ff6b35;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link:hover {
    color: #f7931e;
}

.reg-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reg-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.reg-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.reg-feature i {
    font-size: 1.5rem;
    color: #667eea;
    min-width: 24px;
}

.reg-feature-text {
    font-size: 1rem;
    color: #b8b8d4;
}

.reg-feature-text strong {
    color: #ffffff;
}

.popular-platforms {
    margin-bottom: 80px;
}

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

.platforms-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #ff6b35 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.platform-card:hover::before {
    transform: scaleX(1);
}

.platform-name {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.platform-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #b8b8d4;
    margin: 0;
}

.promotion-system {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
    text-align: center;
}

.promo-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.promo-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
    margin: 0;
}

.promotion-link {
    color: #667eea;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.promotion-link:hover {
    color: #764ba2;
}

.technology-investment {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
}

.tech-investment-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.tech-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.tech-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8d4;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 10px;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d17a1a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

.tech-benefit {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.tech-benefit:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.tech-benefit i {
    font-size: 1.5rem;
    color: #667eea;
    min-width: 24px;
}

.benefit-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.benefit-desc {
    font-size: 0.9rem;
    color: #b8b8d4;
    margin: 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .no-minimum-wallet-section {
        padding: 60px 20px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .wallet-systems {
        padding: 40px 30px;
        margin-bottom: 60px;
    }
    
    .wallet-types {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .payment-features {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .minimum-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .minimum-stats {
        grid-template-columns: repeat(3, 1fr);
        flex-direction: row;
        gap: 15px;
    }
    
    .registration-info {
        padding: 40px 30px;
        margin-bottom: 60px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .promotion-system {
        padding: 40px 30px;
        margin-bottom: 60px;
    }
    
    .tech-investment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .no-minimum-wallet-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .intro-paragraph {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .wallet-systems {
        padding: 30px 20px;
    }
    
    .wallet-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .wallet-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .wallet-description {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .wallet-types {
        grid-template-columns: 1fr;
    }
    
    .wallet-icon {
        width: 60px;
        height: 60px;
    }
    
    .wallet-icon i {
        font-size: 1.5rem;
    }
    
    .payment-heading {
        font-size: 1.4rem;
    }
    
    .payment-description {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .minimum-betting {
        padding: 40px 20px;
    }
    
    .minimum-heading {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .minimum-description {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .minimum-stats {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .registration-info {
        padding: 30px 20px;
    }
    
    .reg-title {
        font-size: 1.5rem;
    }
    
    .reg-description {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .reg-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .platforms-title {
        font-size: 1.5rem;
    }
    
    .promotion-system {
        padding: 30px 20px;
    }
    
    .promo-heading {
        font-size: 1.5rem;
    }
    
    .promo-description {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .technology-investment {
        padding: 30px 20px;
    }
    
    .tech-heading {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .tech-description {
        font-size: 1rem;
        text-indent: 1.5em;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .tech-benefit {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .no-minimum-wallet-section {
        padding: 30px 10px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .intro-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .wallet-systems {
        padding: 25px 15px;
    }
    
    .wallet-title {
        font-size: 1.3rem;
    }
    
    .wallet-type {
        padding: 25px 20px;
    }
    
    .wallet-icon {
        width: 50px;
        height: 50px;
    }
    
    .wallet-icon i {
        font-size: 1.3rem;
    }
    
    .minimum-betting {
        padding: 30px 15px;
    }
    
    .minimum-heading {
        font-size: 1.3rem;
    }
    
    .minimum-description {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .registration-info {
        padding: 25px 15px;
    }
    
    .reg-title {
        font-size: 1.3rem;
    }
    
    .reg-description {
        font-size: 0.95rem;
    }
    
    .reg-feature {
        padding: 18px 12px;
    }
    
    .platform-card {
        padding: 25px 20px;
    }
    
    .platform-name {
        font-size: 1.2rem;
    }
    
    .promotion-system {
        padding: 25px 15px;
    }
    
    .promo-heading {
        font-size: 1.3rem;
    }
    
    .promo-description {
        font-size: 0.95rem;
    }
    
    .technology-investment {
        padding: 25px 15px;
    }
    
    .tech-heading {
        font-size: 1.3rem;
    }
    
    .tech-description {
        font-size: 0.95rem;
    }
    
    .tech-benefit {
        padding: 18px 12px;
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a3e 30%, #2d2d5f 60%, #1a1a3e 90%, #0f0f23 100%);
    border-top: 3px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 20px 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-site-name {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #b8b8d4;
    margin-bottom: 20px;
}

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

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

.contact-item i {
    font-size: 1rem;
    color: #ff6b35;
    min-width: 16px;
}

.footer-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 1px;
}

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

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

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

.footer-link i {
    font-size: 0.9rem;
    color: #ff6b35;
    min-width: 16px;
    transition: all 0.3s ease;
}

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

.cta-description {
    font-size: 1rem;
    color: #b8b8d4;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    margin-bottom: 25px;
}

.footer-cta-button:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d17a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 8px 15px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

.security-badge i {
    font-size: 0.9rem;
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    background: rgba(15, 15, 35, 0.5);
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.copyright {
    text-align: left;
}

.copyright p {
    font-size: 0.9rem;
    color: #b8b8d4;
    margin: 0;
    font-weight: 600;
}

.footer-disclaimer {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #888saa;
    text-align: center;
    margin: 0;
    font-style: italic;
}

.age-verification {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.age-badge i {
    font-size: 0.9rem;
    color: white;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 35px;
        padding: 50px 20px 35px;
    }
    
    .footer-logo i {
        font-size: 2rem;
    }
    
    .footer-site-name {
        font-size: 1.4rem;
    }
    
    .footer-heading {
        font-size: 1.2rem;
    }
    
    .footer-cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        padding: 25px 20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 15px 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-link {
        justify-content: center;
        max-width: 200px;
        width: 100%;
    }
    
    .footer-cta-button {
        width: 100%;
        max-width: 250px;
    }
    
    .security-badges {
        align-items: center;
    }
    
    .security-badge {
        justify-content: center;
        max-width: 200px;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom {
        padding: 20px 15px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .footer-content {
        padding: 30px 10px 25px;
        gap: 25px;
    }
    
    .footer-logo i {
        font-size: 1.8rem;
    }
    
    .footer-site-name {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .footer-cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .security-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding: 18px 10px;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
    
    .disclaimer-text {
        font-size: 0.8rem;
    }
    
    .age-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Sticky Buttons Styles */
.sticky-buttons-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 35, 0.9) 70%, rgba(15, 15, 35, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    padding: 0 0 env(safe-area-inset-bottom);
}

.sticky-buttons {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 12px 20px;
}

.sticky-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    border: 2px solid transparent;
}

.sticky-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

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

.login-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.login-button::before {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

.register-button {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    color: white;
    border-color: rgba(247, 147, 30, 0.3);
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
}

.register-button::before {
    background: linear-gradient(135deg, #e0851a 0%, #e55a2b 100%);
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
    border-color: rgba(247, 147, 30, 0.5);
}

.credit-button {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: glow-pulse 3s ease-in-out infinite;
}

.credit-button::before {
    background: linear-gradient(135deg, #e55a2b 0%, #e0851a 100%);
}

.credit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.5);
    animation: none;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 107, 53, 0.3);
    }
}

.sticky-button i {
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

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

.button-text {
    font-family: 'Prompt', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.sticky-button:hover .button-text {
    transform: translateY(-1px);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .sticky-buttons {
        padding: 10px 15px;
    }
    
    .sticky-button {
        padding: 10px 6px;
        min-height: 55px;
        font-size: 0.8rem;
    }
    
    .sticky-button i {
        font-size: 1.1rem;
    }
    
    .button-text {
        font-size: 0.8rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .sticky-button {
        padding: 8px 4px;
        min-height: 50px;
        font-size: 0.75rem;
        border-radius: 8px;
        gap: 4px;
    }
    
    .sticky-button i {
        font-size: 1rem;
    }
    
    .button-text {
        font-size: 0.75rem;
        line-height: 1.1;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .sticky-buttons-container {
        border-top: 1px solid rgba(255, 107, 53, 0.3);
    }
    
    .sticky-buttons {
        padding: 6px 8px;
        gap: 6px;
    }
    
    .sticky-button {
        padding: 6px 3px;
        min-height: 45px;
        font-size: 0.7rem;
        border-radius: 6px;
        gap: 3px;
    }
    
    .sticky-button i {
        font-size: 0.9rem;
    }
    
    .button-text {
        font-size: 0.7rem;
        line-height: 1;
    }
}

/* Very Small Mobile Styles */
@media (max-width: 360px) {
    .sticky-buttons {
        padding: 5px 6px;
    }
    
    .sticky-button {
        padding: 5px 2px;
        min-height: 42px;
        font-size: 0.65rem;
    }
    
    .sticky-button i {
        font-size: 0.85rem;
    }
    
    .button-text {
        font-size: 0.65rem;
    }
}

/* Ensure sticky buttons don't interfere with content */
body {
    padding-bottom: 80px;
}

@media (max-width: 1024px) {
    body {
        padding-bottom: 75px;
    }
}

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

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

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

/* Login Section Styles */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 30%, #2d2d5f 60%, #1a1a3e 90%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(247, 147, 30, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.login-container {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
}

.login-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
    border-radius: 25px 25px 0 0;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.error-message {
    display: none;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(220, 53, 69, 0.1) 100%);
    border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    color: #ff6b6b;
    font-size: 0.9rem;
    animation: shake 0.5s ease-in-out;
}

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

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

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

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

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.form-label i {
    font-size: 1rem;
    color: #ff6b35;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

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

.form-input.error {
    border-color: rgba(220, 53, 69, 0.6);
    background: rgba(220, 53, 69, 0.05);
}

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

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 2;
}

.password-toggle:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.password-toggle i {
    font-size: 1rem;
}

.input-error {
    font-size: 0.85rem;
    color: #dc3545;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.input-error.show {
    opacity: 1;
    transform: translateY(0);
}

.login-button {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    margin-top: 10px;
}

.login-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #e55a2b 0%, #d17a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.login-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.login-button.loading .button-text,
.login-button.loading i {
    opacity: 0;
}

.loading-spinner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.form-divider {
    position: relative;
    text-align: center;
    margin: 10px 0;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.divider-text {
    background: rgba(15, 15, 35, 0.9);
    color: rgba(255, 255, 255, 0.6);
    padding: 0 15px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.register-button {
    width: 100%;
    padding: 12px 20px;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    color: #667eea;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.register-button:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
    color: #764ba2;
}

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

.login-footer {
    margin-top: 30px;
    text-align: center;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.4;
}

.security-info i {
    font-size: 1rem;
    color: #667eea;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .login-section {
        padding: 30px 15px;
    }
    
    .login-card {
        padding: 35px 30px;
    }
    
    .login-logo {
        width: 70px;
        height: 70px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .login-section {
        padding: 20px 10px;
        min-height: calc(100vh - 60px);
    }
    
    .login-container {
        max-width: 100%;
        width: 100%;
    }
    
    .login-card {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .logo-container {
        margin-bottom: 35px;
    }
    
    .login-logo {
        width: 65px;
        height: 65px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .password-toggle {
        right: 12px;
    }
    
    .login-button {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .register-button {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .login-section {
        padding: 15px 8px;
        min-height: calc(100vh - 55px);
    }
    
    .login-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .logo-container {
        margin-bottom: 30px;
    }
    
    .login-logo {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .login-title {
        font-size: 1.4rem;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
    
    .form-input {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .password-toggle {
        right: 10px;
    }
    
    .login-button {
        padding: 10px 12px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .register-button {
        padding: 8px 12px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .security-info {
        font-size: 0.8rem;
    }
    
    .error-message {
        padding: 12px;
        font-size: 0.85rem;
    }
}

/* Very Small Mobile Styles */
@media (max-width: 360px) {
    .login-card {
        padding: 20px 15px;
    }
    
    .login-logo {
        width: 55px;
        height: 55px;
    }
    
    .login-title {
        font-size: 1.2rem;
    }
    
    .form-input {
        padding: 8px 10px;
    }
    
    .login-button {
        padding: 8px 10px;
    }
    
    .register-button {
        padding: 6px 10px;
    }
}

/* Register Section Styles */
.register-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 30%, #2d2d5f 60%, #1a1a3e 90%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(247, 147, 30, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.register-container {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.register-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #ff6b35 50%, #f7931e 100%);
    border-radius: 25px 25px 0 0;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.register-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #ff6b35 50%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.error-message {
    display: none;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(220, 53, 69, 0.1) 100%);
    border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    color: #ff6b6b;
    font-size: 0.9rem;
    animation: shake 0.5s ease-in-out;
}

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

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

.success-message {
    display: none;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(40, 167, 69, 0.1) 100%);
    border: 1px solid rgba(40, 167, 69, 0.4);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    color: #28a745;
    font-size: 0.9rem;
}

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

.success-message i {
    font-size: 1.1rem;
    color: #28a745;
    flex-shrink: 0;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

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

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

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.form-label i {
    font-size: 1rem;
    color: #667eea;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

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

.form-input.error {
    border-color: rgba(220, 53, 69, 0.6);
    background: rgba(220, 53, 69, 0.05);
}

.form-input.success {
    border-color: rgba(40, 167, 69, 0.6);
    background: rgba(40, 167, 69, 0.05);
}

.input-error {
    font-size: 0.85rem;
    color: #dc3545;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.input-error.show {
    opacity: 1;
    transform: translateY(0);
}

.input-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    padding: 8px 12px;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.input-hint i {
    font-size: 0.8rem;
    color: #667eea;
    flex-shrink: 0;
}

.register-button {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin-top: 15px;
}

.register-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.register-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.register-button.loading .button-text,
.register-button.loading i {
    opacity: 0;
}

.loading-spinner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.form-divider {
    position: relative;
    text-align: center;
    margin: 15px 0 10px;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.divider-text {
    background: rgba(15, 15, 35, 0.9);
    color: rgba(255, 255, 255, 0.6);
    padding: 0 15px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.login-button {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 12px;
    color: #ff6b35;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.login-button:hover {
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
    color: #f7931e;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.login-button:hover::before {
    opacity: 1;
}

.login-button i {
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

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

.register-footer {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.security-info,
.terms-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: center;
    justify-content: center;
}

.security-info i,
.terms-info i {
    font-size: 0.9rem;
    color: #667eea;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .register-section {
        padding: 30px 15px;
    }
    
    .register-card {
        padding: 35px 30px;
    }
    
    .register-logo {
        width: 70px;
        height: 70px;
    }
    
    .register-title {
        font-size: 1.8rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .register-section {
        padding: 20px 10px;
        min-height: calc(100vh - 60px);
    }
    
    .register-container {
        max-width: 100%;
        width: 100%;
    }
    
    .register-card {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .logo-container {
        margin-bottom: 35px;
    }
    
    .register-logo {
        width: 65px;
        height: 65px;
    }
    
    .register-title {
        font-size: 1.6rem;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .register-button {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .login-button {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .security-info,
    .terms-info {
        font-size: 0.75rem;
        text-align: left;
        justify-content: flex-start;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .register-section {
        padding: 15px 8px;
        min-height: calc(100vh - 55px);
    }
    
    .register-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .logo-container {
        margin-bottom: 30px;
    }
    
    .register-logo {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .register-title {
        font-size: 1.4rem;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
    
    .form-input {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .input-hint {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    
    .register-button {
        padding: 10px 12px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .login-button {
        padding: 8px 12px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .security-info,
    .terms-info {
        font-size: 0.7rem;
    }
    
    .error-message,
    .success-message {
        padding: 12px;
        font-size: 0.85rem;
    }
}

/* Very Small Mobile Styles */
@media (max-width: 360px) {
    .register-card {
        padding: 20px 15px;
    }
    
    .register-logo {
        width: 55px;
        height: 55px;
    }
    
    .register-title {
        font-size: 1.2rem;
    }
    
    .form-input {
        padding: 8px 10px;
    }
    
    .register-button {
        padding: 8px 10px;
    }
    
    .login-button {
        padding: 6px 10px;
    }
    
    .security-info,
    .terms-info {
        font-size: 0.65rem;
    }
}

/* Hero Section Styles */
.hero-section {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 30%, #2d2d5f 60%, #1a1a3e 90%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(247, 147, 30, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 30%, #667eea 70%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-align: center;
    max-width: 1000px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 800px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.highlight-item i {
    font-size: 2rem;
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.highlight-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.highlight-item span {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 300px;
}

.hero-cta-button::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-button:hover::before {
    left: 100%;
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d17a1a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.hero-cta-button i {
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* Promotion Section Styles */
.promotion-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.promotion-section:nth-child(even) {
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f23 50%, #2d2d5f 100%);
}

.promotion-section:nth-child(odd) {
    background: linear-gradient(135deg, #0f0f23 0%, #2d2d5f 50%, #1a1a3e 100%);
}

.promotion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

.promotion-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.promotion-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.promotion-icon.wallet {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.promotion-icon.bonus {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.3);
}

.promotion-icon.cashback {
    background: linear-gradient(135deg, #ff6b35 0%, #667eea 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.promotion-header:hover .promotion-icon {
    transform: scale(1.1) rotate(10deg);
}

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

.promotion-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    text-align: center;
    max-width: 900px;
}

.promotion-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.promotion-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 25px 25px 0 0;
}

#free-credit-promotion .promotion-content::before {
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
}

#wallet-promotion .promotion-content::before {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

#daily-bonus-promotion .promotion-content::before {
    background: linear-gradient(90deg, #f7931e 0%, #ff6b35 100%);
}

#cashback-promotion .promotion-content::before {
    background: linear-gradient(90deg, #ff6b35 0%, #667eea 100%);
}

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

.promotion-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.promotion-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(255, 107, 53, 0.3);
}

.promotion-item i {
    font-size: 1.2rem;
    color: #28a745;
    min-width: 18px;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

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

.promotion-item span {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #b8b8d4;
    flex: 1;
}

.promotion-cta {
    text-align: center;
    margin-top: 40px;
}

.promotion-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.promotion-button.wallet {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.promotion-button.bonus {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100());
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.3);
}

.promotion-button.cashback {
    background: linear-gradient(135deg, #ff6b35 0%, #667eea 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.promotion-button::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;
}

.promotion-button:hover::before {
    left: 100%;
}

.promotion-button:hover {
    transform: translateY(-3px);
}

.promotion-button:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.promotion-button.wallet:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.promotion-button.bonus:hover {
    background: linear-gradient(135deg, #e0851a 0%, #e55a2b 100%);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
}

.promotion-button.cashback:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #5a6fd8 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.promotion-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.promotion-button:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-section {
        padding: 80px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-highlights {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
    }
    
    .hero-cta-button {
        padding: 18px 35px;
        font-size: 1.2rem;
        min-width: 280px;
    }
    
    .promotion-section {
        padding: 60px 20px;
    }
    
    .promotion-title {
        font-size: 2rem;
    }
    
    .promotion-content {
        padding: 40px 30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .highlight-item {
        padding: 20px 15px;
    }
    
    .highlight-item i {
        font-size: 1.5rem;
    }
    
    .highlight-item span {
        font-size: 1rem;
    }
    
    .hero-cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        min-width: 250px;
    }
    
    .promotion-section {
        padding: 50px 15px;
    }
    
    .promotion-header {
        margin-bottom: 40px;
        gap: 20px;
    }
    
    .promotion-icon {
        width: 70px;
        height: 70px;
    }
    
    .promotion-icon i {
        font-size: 1.8rem;
    }
    
    .promotion-title {
        font-size: 1.6rem;
    }
    
    .promotion-content {
        padding: 30px 25px;
    }
    
    .promotion-item {
        padding: 18px 15px;
        gap: 12px;
    }
    
    .promotion-item span {
        font-size: 1rem;
    }
    
    .promotion-button {
        padding: 15px 25px;
        font-size: 1rem;
        min-width: 220px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-section {
        padding: 50px 10px 40px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-item {
        padding: 18px 12px;
    }
    
    .highlight-item i {
        font-size: 1.3rem;
    }
    
    .highlight-item span {
        font-size: 0.95rem;
    }
    
    .hero-cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 220px;
    }
    
    .promotion-section {
        padding: 40px 10px;
    }
    
    .promotion-icon {
        width: 60px;
        height: 60px;
    }
    
    .promotion-icon i {
        font-size: 1.5rem;
    }
    
    .promotion-title {
        font-size: 1.4rem;
    }
    
    .promotion-content {
        padding: 25px 20px;
    }
    
    .promotion-item {
        padding: 15px 12px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .promotion-item i {
        margin-top: 0;
    }
    
    .promotion-item span {
        font-size: 0.95rem;
    }
    
    .promotion-button {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-width: 200px;
    }
}

/* Very Small Mobile Styles */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
        min-width: 200px;
    }
    
    .promotion-title {
        font-size: 1.2rem;
    }
    
    .promotion-content {
        padding: 20px 15px;
    }
    
    .promotion-item {
        padding: 12px 10px;
    }
    
    .promotion-item span {
        font-size: 0.9rem;
    }
    
    .promotion-button {
        padding: 10px 18px;
        font-size: 0.9rem;
        min-width: 180px;
    }
}