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

body {
    font-family: 'Sarabun', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* Button Base Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: none;
    min-width: 160px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border: 2px solid #FFD700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 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 25% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(120, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

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

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

.feature-item i {
    font-size: 1.5rem;
    color: #FFD700;
}

.feature-item span {
    font-weight: 600;
    color: #ffffff;
}

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

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.hero-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(10px);
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.overlay-content h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

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

.stat-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.stat-content h4 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 4px;
}

.stat-content p {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 16px;
    }
    
    .btn {
        min-width: 140px;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .hero-overlay {
        top: 10px;
        right: 10px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .btn {
        min-width: 120px;
        padding: 10px 20px;
        font-size: 14px;
        gap: 6px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon i {
        font-size: 1.2rem;
    }
    
    .stat-content h4 {
        font-size: 1.3rem;
    }
    
    .overlay-content i {
        font-size: 1.5rem;
    }
    
    .overlay-content h3 {
        font-size: 1.1rem;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

/* Logo Styles */
.logo {
    flex-shrink: 0;
}

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

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-link i {
    font-size: 2rem;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-item {
    position: relative;
}

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

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.nav-link i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.2);
    color: #FFD700;
}

/* Header CTA Button */
.header-cta {
    flex-shrink: 0;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.cta-button i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

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

/* Mobile Menu Toggle */
.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;
    transition: all 0.3s ease;
}

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

.mobile-menu-toggle:hover .hamburger-line {
    background: #FFD700;
}

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

.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);
    background: #FFD700;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-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 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

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

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

.mobile-logo i {
    font-size: 1.8rem;
    color: #FFD700;
}

.mobile-logo span {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.mobile-menu-close:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    color: #FFD700;
    transform: rotate(90deg);
}

.mobile-menu-close i {
    font-size: 1.2rem;
}

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    padding: 40px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 18px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    transition: left 0.3s ease;
}

.mobile-nav-link:hover::before {
    left: 0;
}

.mobile-nav-link:hover {
    color: #FFD700;
    padding-left: 50px;
    background: rgba(255, 215, 0, 0.05);
}

.mobile-nav-link i {
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

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

/* Mobile CTA Button */
.mobile-cta-item {
    margin-top: 30px;
    padding: 0 30px;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 16px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.mobile-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    transition: left 0.3s ease;
}

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

.mobile-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.mobile-cta-button i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
    }
    
    .nav-list {
        gap: 30px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        height: 60px;
    }
    
    /* Hide desktop navigation and CTA */
    .main-nav,
    .header-cta {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-link i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
        height: 55px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-link i {
        font-size: 1.6rem;
    }
    
    .logo-link {
        gap: 8px;
    }
    
    .mobile-menu-header {
        padding: 16px 20px;
    }
    
    .mobile-logo {
        gap: 8px;
    }
    
    .mobile-logo i {
        font-size: 1.6rem;
    }
    
    .mobile-logo span {
        font-size: 1.1rem;
    }
    
    .mobile-menu-close {
        width: 35px;
        height: 35px;
    }
    
    .mobile-menu-close i {
        font-size: 1.1rem;
    }
    
    .mobile-nav {
        padding: 30px 0;
    }
    
    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 16px 20px;
    }
    
    .mobile-nav-link:hover {
        padding-left: 40px;
    }
    
    .mobile-nav-link i {
        font-size: 1.2rem;
    }
    
    .mobile-cta-item {
        margin-top: 25px;
        padding: 0 20px;
    }
    
    .mobile-cta-button {
        font-size: 1.1rem;
        padding: 14px 25px;
    }
    
    .mobile-cta-button i {
        font-size: 1.2rem;
    }
}

/* Ensure header doesn't interfere with page content */
body {
    padding-top: 70px;
}

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

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

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

.lottery-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 85%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(120, 119, 198, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

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

.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.overview-text {
    max-width: 100%;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 24px;
}

.overview-text strong {
    color: #FFD700;
    font-weight: 700;
}

.overview-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.tips-section {
    margin-bottom: 50px;
}

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

.tips-title {
    font-size: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.tips-title i {
    font-size: 2.2rem;
    color: #FFD700;
}

.tips-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.tip-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transition: width 0.3s ease;
}

.tip-item:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.15);
}

.tip-item:hover::before {
    width: 8px;
}

.tip-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.tip-content h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.tip-content p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.closing-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 40px;
}

.closing-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.closing-info strong {
    color: #FFD700;
    font-weight: 700;
}

.inline-link {
    color: #FFD700;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #FFA500;
    text-decoration: none;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-container {
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .tips-title {
        font-size: 1.8rem;
    }
    
    .tips-title i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .lottery-overview-section {
        padding: 60px 0;
    }
    
    .section-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 1.9rem;
        text-align: center;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .overview-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .tips-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .tips-title i {
        font-size: 1.8rem;
    }
    
    .tip-item {
        padding: 20px;
        gap: 16px;
    }
    
    .tip-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .tip-content h4 {
        font-size: 1.2rem;
    }
    
    .tip-content p {
        font-size: 0.95rem;
    }
    
    .closing-info {
        padding: 24px;
    }
    
    .closing-info p {
        font-size: 1rem;
        text-align: left;
    }
    
    .action-buttons {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .overview-text p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .tips-title {
        font-size: 1.4rem;
    }
    
    .tips-title i {
        font-size: 1.6rem;
    }
    
    .tip-item {
        padding: 16px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .tip-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        align-self: center;
    }
    
    .tip-content h4 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .tip-content p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .closing-info {
        padding: 20px;
    }
    
    .closing-info p {
        font-size: 0.95rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

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

.deposit-withdraw-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 85% 15%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(120, 119, 198, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 24px;
}

.content-text strong {
    color: #FFD700;
    font-weight: 700;
}

.content-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.deposit-img:hover {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.overlay-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    backdrop-filter: blur(10px);
}

.overlay-badge i {
    font-size: 1.2rem;
}

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

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

.security-title {
    font-size: 2.2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.security-title i {
    font-size: 2.4rem;
    color: #FFD700;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

.security-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transition: width 0.3s ease;
}

.security-item:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.security-item:hover::before {
    width: 10px;
}

.security-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.security-icon i {
    font-size: 2rem;
}

.security-content h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.security-content p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

.security-content strong {
    color: #FFD700;
    font-weight: 700;
}

.deposit-methods {
    margin-bottom: 80px;
}

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

.methods-title {
    font-size: 2.2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.methods-title i {
    font-size: 2.4rem;
    color: #FFD700;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.method-card:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

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

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.method-icon i {
    font-size: 2.5rem;
}

.method-card h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.method-card p {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

.method-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.method-time i {
    font-size: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

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

.cta-content {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 400px;
        gap: 50px;
    }
    
    .security-title, .methods-title {
        font-size: 2rem;
    }
    
    .security-title i, .methods-title i {
        font-size: 2.2rem;
    }
    
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .deposit-withdraw-section {
        padding: 60px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .content-text {
        order: 2;
    }
    
    .content-image {
        order: 1;
    }
    
    .content-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .security-title, .methods-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .security-title i, .methods-title i {
        font-size: 2rem;
    }
    
    .security-item {
        padding: 24px;
        gap: 20px;
    }
    
    .security-icon {
        width: 60px;
        height: 60px;
    }
    
    .security-icon i {
        font-size: 1.8rem;
    }
    
    .security-content h4 {
        font-size: 1.3rem;
    }
    
    .security-content p {
        font-size: 0.95rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-card {
        padding: 25px 20px;
    }
    
    .method-icon {
        width: 70px;
        height: 70px;
    }
    
    .method-icon i {
        font-size: 2.2rem;
    }
    
    .cta-section {
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 1.7rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .content-text p {
        font-size: 0.95rem;
    }
    
    .security-title, .methods-title {
        font-size: 1.6rem;
    }
    
    .security-title i, .methods-title i {
        font-size: 1.8rem;
    }
    
    .security-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .security-icon {
        width: 55px;
        height: 55px;
        align-self: center;
    }
    
    .security-icon i {
        font-size: 1.6rem;
    }
    
    .security-content h4 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .security-content p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .method-card {
        padding: 20px 16px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: 2rem;
    }
    
    .method-card h4 {
        font-size: 1.2rem;
    }
    
    .method-card p {
        font-size: 0.9rem;
    }
    
    .method-time {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Bonuses Promotions Section */
.bonuses-promotions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.bonuses-promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(120, 119, 198, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.bonus-intro {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin: 0;
}

#deposit-withdraw > div > div.content-grid > div.content-text > div.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#website-selection-guide > div > div.guide-intro > div.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro-content strong {
    color: #FFD700;
    font-weight: 700;
}

.intro-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.bonus-img:hover {
    transform: scale(1.03);
}

.bonus-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    backdrop-filter: blur(10px);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.bonus-badge i {
    font-size: 1.2rem;
}

.commission-section {
    background: rgba(255, 215, 0, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 80px;
}

.commission-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.commission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.commission-icon i {
    font-size: 2.5rem;
}

.commission-text h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 700;
}

.commission-text p {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

.commission-text strong {
    color: #FFA500;
    font-weight: 700;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

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

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.promotion-card:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

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

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

.promotion-card h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.promotion-card p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.promo-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.promotion-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 60px;
    text-align: center;
}

.promotion-details p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
}

.promotion-details strong {
    color: #FFD700;
    font-weight: 700;
}

.inline-link {
    color: #28a745;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #20c997;
    text-decoration: none;
}

.commission-calculation {
    margin-bottom: 60px;
}

.calc-header {
    text-align: center;
    margin-bottom: 30px;
}

.calc-header h3 {
    font-size: 1.8rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
}

.calc-header i {
    font-size: 2rem;
    color: #FFD700;
}

.calc-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.calc-content p {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

.calc-content strong {
    color: #FFD700;
    font-weight: 700;
}

.vip-benefits {
    margin-bottom: 60px;
}

.vip-header {
    text-align: center;
    margin-bottom: 30px;
}

.vip-header h3 {
    font-size: 1.8rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
}

.vip-header i {
    font-size: 2rem;
    color: #FFD700;
}

.vip-content {
    background: rgba(255, 215, 0, 0.1);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    margin-bottom: 25px;
}

.vip-content p {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

.vip-content strong {
    color: #FFD700;
    font-weight: 700;
}

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

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

.vip-feature:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.vip-feature i {
    font-size: 1.5rem;
    color: #FFD700;
}

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

.bonus-conditions {
    margin-bottom: 60px;
}

.conditions-header {
    text-align: center;
    margin-bottom: 30px;
}

.conditions-header h3 {
    font-size: 1.8rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
}

.conditions-header i {
    font-size: 2rem;
    color: #FFD700;
}

.conditions-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.conditions-content p {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

.conditions-content strong {
    color: #FFD700;
    font-weight: 700;
}

.unlimited-withdrawal {
    margin-bottom: 60px;
}

.unlimited-content {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(40, 167, 69, 0.3);
    display: flex;
    align-items: center;
    gap: 30px;
}

.unlimited-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 15px 30px rgba(40, 167, 69, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

.unlimited-icon i {
    font-size: 2.5rem;
}

.unlimited-text h3 {
    font-size: 1.8rem;
    color: #28a745;
    margin-bottom: 15px;
    font-weight: 700;
}

.unlimited-text p {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

.unlimited-text strong {
    color: #28a745;
    font-weight: 700;
}

.bonus-summary {
    margin-bottom: 60px;
}

.summary-header {
    text-align: center;
    margin-bottom: 30px;
}

.summary-header h3 {
    font-size: 1.8rem;
    color: #FFD700;
    font-weight: 700;
}

.summary-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

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

.summary-item:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.summary-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

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

.promotion-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promotion-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.promotion-cta .cta-content {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.promotion-cta .cta-content h3 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 700;
}

.promotion-cta .cta-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
}

.promotion-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bonus-intro {
        grid-template-columns: 1fr 350px;
        gap: 50px;
    }
    
    .commission-content {
        gap: 25px;
    }
    
    .commission-icon {
        width: 70px;
        height: 70px;
    }
    
    .commission-icon i {
        font-size: 2.2rem;
    }
    
    .commission-text h3 {
        font-size: 1.6rem;
    }
    
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .vip-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .unlimited-content {
        gap: 25px;
    }
    
    .unlimited-icon {
        width: 70px;
        height: 70px;
    }
    
    .unlimited-icon i {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .bonuses-promotions-section {
        padding: 60px 0;
    }
    
    .bonus-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .intro-content {
        order: 2;
    }
    
    .intro-image {
        order: 1;
    }
    
    .intro-content p {
        text-align: left;
        font-size: 1rem;
    }
    
    .commission-section {
        padding: 30px;
    }
    
    .commission-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .commission-icon {
        width: 60px;
        height: 60px;
    }
    
    .commission-icon i {
        font-size: 2rem;
    }
    
    .commission-text h3 {
        font-size: 1.5rem;
    }
    
    .commission-text p {
        font-size: 1rem;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promotion-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon i {
        font-size: 2rem;
    }
    
    .promotion-card h4 {
        font-size: 1.2rem;
    }
    
    .promotion-card p {
        font-size: 0.9rem;
    }
    
    .bonus-amount {
        font-size: 1.8rem;
    }
    
    .calc-header h3,
    .vip-header h3,
    .conditions-header h3 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .calc-header i,
    .vip-header i,
    .conditions-header i {
        font-size: 1.8rem;
    }
    
    .vip-features {
        gap: 12px;
    }
    
    .vip-feature {
        padding: 16px;
        gap: 10px;
    }
    
    .vip-feature i {
        font-size: 1.3rem;
    }
    
    .unlimited-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    
    .unlimited-icon {
        width: 60px;
        height: 60px;
    }
    
    .unlimited-icon i {
        font-size: 2rem;
    }
    
    .unlimited-text h3 {
        font-size: 1.6rem;
    }
    
    .unlimited-text p {
        font-size: 1rem;
    }
    
    .summary-header h3 {
        font-size: 1.6rem;
    }
    
    .summary-item {
        padding: 16px 20px;
        gap: 16px;
    }
    
    .summary-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .summary-item span {
        font-size: 1rem;
    }
    
    .promotion-cta {
        padding: 40px 30px;
    }
    
    .promotion-cta .cta-content h3 {
        font-size: 1.7rem;
    }
    
    .promotion-cta .cta-content p {
        font-size: 1rem;
    }
    
    .promotion-cta .cta-buttons {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .intro-content p {
        font-size: 0.95rem;
    }
    
    .commission-section {
        padding: 24px;
    }
    
    .commission-icon {
        width: 55px;
        height: 55px;
    }
    
    .commission-icon i {
        font-size: 1.8rem;
    }
    
    .commission-text h3 {
        font-size: 1.3rem;
    }
    
    .commission-text p {
        font-size: 0.95rem;
    }
    
    .promotion-card {
        padding: 20px 16px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .promotion-card h4 {
        font-size: 1.1rem;
    }
    
    .promotion-card p {
        font-size: 0.85rem;
    }
    
    .bonus-amount {
        font-size: 1.6rem;
    }
    
    .promo-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .calc-header h3,
    .vip-header h3,
    .conditions-header h3 {
        font-size: 1.4rem;
    }
    
    .calc-header i,
    .vip-header i,
    .conditions-header i {
        font-size: 1.6rem;
    }
    
    .calc-content,
    .vip-content,
    .conditions-content {
        padding: 20px;
    }
    
    .calc-content p,
    .vip-content p,
    .conditions-content p {
        font-size: 0.95rem;
    }
    
    .vip-feature {
        padding: 12px;
        gap: 8px;
    }
    
    .vip-feature i {
        font-size: 1.2rem;
    }
    
    .vip-feature span {
        font-size: 0.9rem;
    }
    
    .unlimited-content {
        padding: 24px;
    }
    
    .unlimited-icon {
        width: 50px;
        height: 50px;
    }
    
    .unlimited-icon i {
        font-size: 1.8rem;
    }
    
    .unlimited-text h3 {
        font-size: 1.4rem;
    }
    
    .unlimited-text p {
        font-size: 0.95rem;
    }
    
    .summary-header h3 {
        font-size: 1.4rem;
    }
    
    .summary-item {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .summary-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .summary-item span {
        font-size: 0.9rem;
    }
    
    .promotion-cta {
        padding: 30px 20px;
    }
    
    .promotion-cta .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .promotion-cta .cta-content p {
        font-size: 0.95rem;
    }
    
    .promotion-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

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

.comprehensive-lottery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin: 0;
}

.intro-text strong {
    color: #FFD700;
    font-weight: 700;
}

.intro-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.comprehensive-img:hover {
    transform: scale(1.03);
}

.feature-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.3);
    backdrop-filter: blur(10px);
}

.feature-badge i {
    font-size: 1.2rem;
}

.lottery-types {
    margin-bottom: 80px;
}

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

.lottery-header h3 {
    font-size: 2.2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
}

.lottery-header i {
    font-size: 2.4rem;
    color: #FFD700;
}

.lottery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.lottery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.lottery-card:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

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

.lottery-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.lottery-icon i {
    font-size: 2.2rem;
}

.lottery-card h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.lottery-card p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

.lottery-card strong {
    color: #FFD700;
    font-weight: 700;
}

.lottery-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.lottery-time i {
    font-size: 1rem;
}

.casino-games {
    margin-bottom: 80px;
}

.casino-header {
    text-align: center;
    margin-bottom: 30px;
}

.casino-header h3 {
    font-size: 2.2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
}

.casino-header i {
    font-size: 2.4rem;
    color: #FFD700;
}

.casino-intro {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    margin-bottom: 40px;
}

.casino-intro p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
}

.casino-intro strong {
    color: #FFD700;
    font-weight: 700;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

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

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.casino-card:hover {
    background: rgba(23, 162, 184, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(23, 162, 184, 0.2);
}

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

.casino-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
    transition: transform 0.3s ease;
}

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

.casino-icon i {
    font-size: 1.8rem;
}

.casino-card h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.platform-features {
    margin-bottom: 60px;
}

.platform-content {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 40px;
}

.platform-text h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
}

.platform-text p {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 25px;
}

.platform-text strong {
    color: #FFA500;
    font-weight: 700;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 600;
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.platform-icon {
    flex-shrink: 0;
}

.platform-icon i {
    font-size: 8rem;
    color: rgba(255, 215, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.ui-ux-section {
    margin-bottom: 60px;
}

.ui-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.ui-content h3 {
    font-size: 1.8rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 700;
}

.ui-content i {
    font-size: 2rem;
    color: #FFD700;
}

.ui-content p {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

.ui-content strong {
    color: #FFD700;
    font-weight: 700;
}

.direct-website {
    margin-bottom: 60px;
}

.direct-content {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(40, 167, 69, 0.3);
    display: flex;
    align-items: center;
    gap: 30px;
}

.direct-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 15px 30px rgba(40, 167, 69, 0.4);
}

.direct-icon i {
    font-size: 2.5rem;
}

.direct-text h3 {
    font-size: 1.8rem;
    color: #28a745;
    margin-bottom: 15px;
    font-weight: 700;
}

.direct-text p {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

.direct-text strong {
    color: #28a745;
    font-weight: 700;
}

.inline-link {
    color: #20c997;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #17a2b8;
    text-decoration: none;
}

.action-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.action-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.action-content {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.action-content h3 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 700;
}

.action-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr 350px;
        gap: 50px;
    }
    
    .lottery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .casino-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .platform-content {
        gap: 30px;
    }
    
    .platform-icon i {
        font-size: 6rem;
    }
    
    .direct-content {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .comprehensive-lottery-section {
        padding: 60px 0;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .intro-text {
        order: 2;
    }
    
    .intro-image {
        order: 1;
    }
    
    .intro-text p {
        text-align: left;
        font-size: 1rem;
    }
    
    .lottery-header h3,
    .casino-header h3 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .lottery-header i,
    .casino-header i {
        font-size: 2.2rem;
    }
    
    .lottery-grid {
        gap: 20px;
    }
    
    .lottery-card {
        padding: 25px 20px;
    }
    
    .lottery-icon {
        width: 70px;
        height: 70px;
    }
    
    .lottery-icon i {
        font-size: 2rem;
    }
    
    .lottery-card h4 {
        font-size: 1.3rem;
    }
    
    .lottery-card p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .casino-card {
        padding: 20px 12px;
    }
    
    .casino-icon {
        width: 55px;
        height: 55px;
    }
    
    .casino-icon i {
        font-size: 1.6rem;
    }
    
    .casino-card h4 {
        font-size: 1rem;
    }
    
    .casino-card p {
        font-size: 0.8rem;
    }
    
    .platform-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px;
    }
    
    .platform-icon i {
        font-size: 4rem;
    }
    
    .platform-text h3 {
        font-size: 1.6rem;
    }
    
    .platform-text p {
        font-size: 1rem;
    }
    
    .ui-content {
        padding: 25px;
    }
    
    .ui-content h3 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .ui-content i {
        font-size: 1.8rem;
    }
    
    .ui-content p {
        font-size: 1rem;
    }
    
    .direct-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    
    .direct-icon {
        width: 70px;
        height: 70px;
    }
    
    .direct-icon i {
        font-size: 2.2rem;
    }
    
    .direct-text h3 {
        font-size: 1.6rem;
    }
    
    .direct-text p {
        font-size: 1rem;
    }
    
    .action-section {
        padding: 40px 30px;
    }
    
    .action-content h3 {
        font-size: 1.7rem;
    }
    
    .action-content p {
        font-size: 1rem;
    }
    
    .action-buttons {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .intro-text p {
        font-size: 0.95rem;
    }
    
    .lottery-header h3,
    .casino-header h3 {
        font-size: 1.8rem;
    }
    
    .lottery-header i,
    .casino-header i {
        font-size: 2rem;
    }
    
    .lottery-card {
        padding: 20px 16px;
    }
    
    .lottery-icon {
        width: 60px;
        height: 60px;
    }
    
    .lottery-icon i {
        font-size: 1.8rem;
    }
    
    .lottery-card h4 {
        font-size: 1.2rem;
    }
    
    .lottery-card p {
        font-size: 0.85rem;
    }
    
    .lottery-time {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .casino-intro {
        padding: 24px;
    }
    
    .casino-intro p {
        font-size: 1rem;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .casino-card {
        padding: 16px 10px;
    }
    
    .casino-icon {
        width: 50px;
        height: 50px;
    }
    
    .casino-icon i {
        font-size: 1.4rem;
    }
    
    .casino-card h4 {
        font-size: 0.95rem;
    }
    
    .casino-card p {
        font-size: 0.75rem;
    }
    
    .platform-content {
        padding: 24px;
    }
    
    .platform-text h3 {
        font-size: 1.4rem;
    }
    
    .platform-text p {
        font-size: 0.95rem;
    }
    
    .feature-item {
        gap: 10px;
    }
    
    .feature-item i {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .platform-icon i {
        font-size: 3rem;
    }
    
    .ui-content {
        padding: 20px;
    }
    
    .ui-content h3 {
        font-size: 1.4rem;
    }
    
    .ui-content i {
        font-size: 1.6rem;
    }
    
    .ui-content p {
        font-size: 0.95rem;
    }
    
    .direct-content {
        padding: 24px;
    }
    
    .direct-icon {
        width: 60px;
        height: 60px;
    }
    
    .direct-icon i {
        font-size: 2rem;
    }
    
    .direct-text h3 {
        font-size: 1.4rem;
    }
    
    .direct-text p {
        font-size: 0.95rem;
    }
    
    .action-section {
        padding: 30px 20px;
    }
    
    .action-content h3 {
        font-size: 1.5rem;
    }
    
    .action-content p {
        font-size: 0.95rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Website Selection Guide Section */
.website-selection-guide-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.website-selection-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 90% 10%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(120, 119, 198, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.guide-intro {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin: 0;
}

.intro-content strong {
    color: #FFD700;
    font-weight: 700;
}

.intro-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.trust-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    backdrop-filter: blur(10px);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    }
    to {
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
    }
}

.trust-badge i {
    font-size: 1.2rem;
}

.verification-steps {
    margin-bottom: 80px;
}

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

.steps-header h3 {
    font-size: 2.2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
}

.steps-header i {
    font-size: 2.4rem;
    color: #FFD700;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transition: width 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.step-card:hover::before {
    width: 10px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

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

.step-content h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-content p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

.step-content strong {
    color: #FFD700;
    font-weight: 700;
}

.checklist-section {
    margin-bottom: 60px;
}

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

.checklist-header h3 {
    font-size: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
}

.checklist-header i {
    font-size: 2.2rem;
    color: #FFD700;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.checklist-column {
    display: grid;
    gap: 20px;
}

.checklist-item {
    background: rgba(40, 167, 69, 0.1);
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid rgba(40, 167, 69, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(40, 167, 69, 0.15);
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.2);
}

.check-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

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

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

.social-proof-section {
    margin-bottom: 60px;
}

.social-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.social-content h3 {
    font-size: 1.8rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 700;
}

.social-content i {
    font-size: 2rem;
    color: #FFD700;
}

.social-content p {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

.transparency-section {
    margin-bottom: 60px;
}

.transparency-content {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(23, 162, 184, 0.3);
    display: flex;
    align-items: center;
    gap: 30px;
}

.transparency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 15px 30px rgba(23, 162, 184, 0.4);
}

.transparency-icon i {
    font-size: 2.5rem;
}

.transparency-text h3 {
    font-size: 1.8rem;
    color: #17a2b8;
    margin-bottom: 15px;
    font-weight: 700;
}

.transparency-text p {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

.transparency-text strong {
    color: #17a2b8;
    font-weight: 700;
}

.trial-recommendation {
    margin-bottom: 60px;
}

.trial-content {
    background: rgba(255, 215, 0, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.trial-content h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
}

.trial-content p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 30px;
}

.inline-link {
    color: #20c997;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #17a2b8;
    text-decoration: none;
}

.trial-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.trial-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.trial-step:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

.trial-step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.trial-step span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.warning-section {
    margin-bottom: 60px;
}

.warning-content {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 109, 116, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(220, 53, 69, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.warning-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545 0%, #ff6d74 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 15px 30px rgba(220, 53, 69, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.warning-icon i {
    font-size: 2.5rem;
}

.warning-text h3 {
    font-size: 1.8rem;
    color: #dc3545;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.warning-list li {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.warning-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
}

.final-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.final-cta .cta-content {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.final-cta .cta-content h3 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 700;
}

.final-cta .cta-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
}

.final-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .guide-intro {
        grid-template-columns: 1fr 350px;
        gap: 50px;
    }
    
    .steps-header h3 {
        font-size: 2rem;
    }
    
    .steps-header i {
        font-size: 2.2rem;
    }
    
    .checklist-grid {
        gap: 30px;
    }
    
    .trial-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .transparency-content {
        gap: 25px;
    }
    
    .transparency-icon {
        width: 70px;
        height: 70px;
    }
    
    .transparency-icon i {
        font-size: 2.2rem;
    }
    
    .warning-content {
        gap: 25px;
    }
    
    .warning-icon {
        width: 70px;
        height: 70px;
    }
    
    .warning-icon i {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .website-selection-guide-section {
        padding: 60px 0;
    }
    
    .guide-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .intro-content {
        order: 2;
    }
    
    .intro-image {
        order: 1;
    }
    
    .intro-content p {
        text-align: left;
        font-size: 1rem;
    }
    
    .steps-header h3 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .steps-header i {
        font-size: 2rem;
    }
    
    .step-card {
        padding: 25px;
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-icon {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .step-content h4 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .step-content p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .checklist-header h3 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .checklist-header i {
        font-size: 2rem;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checklist-item {
        padding: 16px 20px;
        gap: 12px;
    }
    
    .check-icon {
        width: 35px;
        height: 35px;
    }
    
    .check-icon i {
        font-size: 1.1rem;
    }
    
    .checklist-item span {
        font-size: 0.95rem;
    }
    
    .social-content {
        padding: 25px;
    }
    
    .social-content h3 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .social-content i {
        font-size: 1.8rem;
    }
    
    .social-content p {
        font-size: 1rem;
    }
    
    .transparency-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    
    .transparency-icon {
        width: 60px;
        height: 60px;
    }
    
    .transparency-icon i {
        font-size: 2rem;
    }
    
    .transparency-text h3 {
        font-size: 1.6rem;
    }
    
    .transparency-text p {
        font-size: 1rem;
    }
    
    .trial-content {
        padding: 30px;
    }
    
    .trial-content h3 {
        font-size: 1.6rem;
    }
    
    .trial-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .trial-steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .trial-step {
        padding: 16px 12px;
        gap: 8px;
    }
    
    .trial-step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .trial-step span {
        font-size: 0.85rem;
    }
    
    .warning-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    
    .warning-icon {
        width: 60px;
        height: 60px;
        align-self: center;
    }
    
    .warning-icon i {
        font-size: 2rem;
    }
    
    .warning-text h3 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .warning-list li {
        font-size: 1rem;
        text-align: left;
    }
    
    .final-cta {
        padding: 40px 30px;
    }
    
    .final-cta .cta-content h3 {
        font-size: 1.7rem;
    }
    
    .final-cta .cta-content p {
        font-size: 1rem;
    }
    
    .final-cta .cta-buttons {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .intro-content p {
        font-size: 0.95rem;
    }
    
    .steps-header h3 {
        font-size: 1.6rem;
    }
    
    .steps-header i {
        font-size: 1.8rem;
    }
    
    .step-card {
        padding: 20px;
        gap: 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .checklist-header h3 {
        font-size: 1.6rem;
    }
    
    .checklist-header i {
        font-size: 1.8rem;
    }
    
    .checklist-item {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .check-icon {
        width: 30px;
        height: 30px;
    }
    
    .check-icon i {
        font-size: 1rem;
    }
    
    .checklist-item span {
        font-size: 0.9rem;
    }
    
    .social-content {
        padding: 20px;
    }
    
    .social-content h3 {
        font-size: 1.4rem;
    }
    
    .social-content i {
        font-size: 1.6rem;
    }
    
    .social-content p {
        font-size: 0.95rem;
    }
    
    .transparency-content {
        padding: 24px;
    }
    
    .transparency-icon {
        width: 50px;
        height: 50px;
    }
    
    .transparency-icon i {
        font-size: 1.8rem;
    }
    
    .transparency-text h3 {
        font-size: 1.4rem;
    }
    
    .transparency-text p {
        font-size: 0.95rem;
    }
    
    .trial-content {
        padding: 24px;
    }
    
    .trial-content h3 {
        font-size: 1.4rem;
    }
    
    .trial-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .trial-step {
        padding: 12px 10px;
        gap: 6px;
    }
    
    .trial-step-number {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .trial-step span {
        font-size: 0.8rem;
    }
    
    .warning-content {
        padding: 24px;
    }
    
    .warning-icon {
        width: 50px;
        height: 50px;
    }
    
    .warning-icon i {
        font-size: 1.8rem;
    }
    
    .warning-text h3 {
        font-size: 1.4rem;
    }
    
    .warning-list li {
        font-size: 0.95rem;
        margin-bottom: 10px;
        padding-left: 20px;
    }
    
    .warning-list li::before {
        font-size: 1rem;
    }
    
    .final-cta {
        padding: 30px 20px;
    }
    
    .final-cta .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .final-cta .cta-content p {
        font-size: 0.95rem;
    }
    
    .final-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    padding: 60px 0 0 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(120, 119, 198, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

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

/* Footer Logo Section */
.footer-section:first-child {
    max-width: 100%;
}

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

.footer-logo i {
    font-size: 2.2rem;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

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

.contact-item i {
    width: 20px;
    color: #FFD700;
    font-size: 1rem;
}

/* Footer Sections */
.footer-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 20px;
}

.footer-links a:hover {
    color: #FFD700;
    transform: translateX(15px);
}

.footer-links a i {
    width: 16px;
    font-size: 0.9rem;
    color: #FFD700;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.payment-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.payment-item i {
    color: #FFD700;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.payment-item span {
    color: #ffffff;
    font-weight: 600;
}

/* Footer Features */
.footer-features {
    margin-bottom: 40px;
}

.feature-highlight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.highlight-item:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.highlight-item i {
    font-size: 2rem;
    color: #FFD700;
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

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

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

/* Footer Bottom */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
    margin-bottom: 30px;
}

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

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

.footer-links-bottom a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.footer-links-bottom a:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    margin: 0 0 5px 0;
    color: #cccccc;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem !important;
    color: #999999 !important;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 35px;
    }
    
    .footer-content .footer-section:last-child {
        grid-column: 1 / -1;
    }
    
    .feature-highlight {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 25px;
    }
    
    .payment-methods {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .payment-item {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-title {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        align-items: center;
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .feature-highlight {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .highlight-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links-bottom {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-content {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-logo-text {
        font-size: 1.1rem;
    }
    
    .footer-logo i {
        font-size: 2rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 3px 0;
    }
    
    .feature-highlight {
        padding: 16px;
    }
    
    .highlight-item {
        gap: 8px;
        padding: 12px;
    }
    
    .highlight-item i {
        font-size: 1.6rem;
        width: 40px;
    }
    
    .highlight-content h4 {
        font-size: 0.9rem;
    }
    
    .highlight-content p {
        font-size: 0.8rem;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .payment-item {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    
    .payment-item i {
        font-size: 1rem;
        width: 16px;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-links-bottom a {
        font-size: 0.85rem;
        padding: 3px 8px;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
    
    .disclaimer {
        font-size: 0.75rem !important;
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: -1;
}

.sticky-btn:hover::before {
    left: 0;
}

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

.sticky-btn span {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Login Button */
.sticky-btn-login {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.sticky-btn-login::before {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.sticky-btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.sticky-btn-login:hover i {
    transform: scale(1.1);
    animation: pulse 1.5s infinite;
}

/* Register Button */
.sticky-btn-register {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.sticky-btn-register::before {
    background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
}

.sticky-btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.sticky-btn-register:hover i {
    transform: scale(1.1);
    animation: bounce 1.5s infinite;
}

/* Credit Button */
.sticky-btn-credit {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    position: relative;
}

.sticky-btn-credit::before {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.sticky-btn-credit:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
    color: #000000;
}

.sticky-btn-credit:hover i {
    transform: scale(1.2) rotate(15deg);
    animation: shake 1.5s infinite;
}

.sticky-btn-credit::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #ff4757;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
}

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

@keyframes shake {
    0%, 100% {
        transform: scale(1.2) rotate(15deg);
    }
    25% {
        transform: scale(1.2) rotate(10deg);
    }
    75% {
        transform: scale(1.2) rotate(20deg);
    }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-buttons {
        border-top: 1px solid rgba(255, 215, 0, 0.3);
    }
    
    .sticky-btn {
        padding: 14px 8px;
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
    }
    
    .sticky-btn span {
        font-size: 0.8rem;
    }
    
    .sticky-btn-credit::after {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 12px 6px;
        font-size: 0.8rem;
        gap: 4px;
        flex-direction: column;
    }
    
    .sticky-btn i {
        font-size: 1rem;
    }
    
    .sticky-btn span {
        font-size: 0.7rem;
        line-height: 1;
    }
    
    .sticky-btn-credit::after {
        width: 8px;
        height: 8px;
        top: 2px;
        right: 2px;
    }
}

@media (max-width: 360px) {
    .sticky-btn {
        padding: 10px 4px;
        font-size: 0.75rem;
    }
    
    .sticky-btn i {
        font-size: 0.9rem;
    }
    
    .sticky-btn span {
        font-size: 0.65rem;
    }
}

/* Adjustment for body padding to prevent overlap */
body {
    padding-bottom: 70px;
}

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

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

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

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

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(120, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.login-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

/* Login Logo */
.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

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

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

/* Login Header */
.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    color: #cccccc;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Error Message */
.error-message {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(255, 109, 116, 0.2) 100%);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #ff6b7a;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

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

.error-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

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

.form-label i {
    color: #FFD700;
    font-size: 1.1rem;
}

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 16px 50px 16px 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

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

.form-input:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.form-input:valid {
    border-color: #28a745;
}

.form-input.error {
    border-color: #dc3545;
    animation: shake 0.6s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700;
    font-size: 1.2rem;
    pointer-events: none;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #cccccc;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.field-error {
    color: #ff6b7a;
    font-size: 0.85rem;
    margin-top: 5px;
    margin-left: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

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

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.remember-me input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.remember-me input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #FFD700;
}

.remember-me input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.forgot-password {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #FFA500;
    text-decoration: underline;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 12px;
    color: #000000;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

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

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

.login-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

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

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.btn-text {
    transition: all 0.3s ease;
}

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

.loading-spinner {
    position: absolute;
    color: #000000;
}

.login-btn.loading .loading-spinner {
    display: block !important;
}

/* Divider */
.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

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

.divider span {
    background: rgba(26, 26, 26, 0.9);
    padding: 0 20px;
    color: #cccccc;
    font-weight: 500;
    position: relative;
}

/* Register Button */
.register-btn {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.register-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

/* Security Features */
.login-security {
    margin-top: 20px;
}

.security-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(40, 167, 69, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.security-item i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 80px 16px 40px;
    }
    
    .login-card {
        padding: 30px 25px;
    }
    
    .login-title {
        font-size: 1.7rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-input {
        padding: 14px 45px 14px 45px;
        font-size: 0.95rem;
    }
    
    .input-icon {
        left: 14px;
        font-size: 1.1rem;
    }
    
    .password-toggle {
        right: 14px;
    }
    
    .login-btn {
        padding: 14px;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .security-features {
        gap: 15px;
    }
    
    .security-item {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .login-container {
        max-width: 100%;
    }
    
    .login-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .login-subtitle {
        font-size: 0.85rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 12px 40px 12px 40px;
        font-size: 0.9rem;
    }
    
    .input-icon {
        left: 12px;
        font-size: 1rem;
    }
    
    .password-toggle {
        right: 12px;
        font-size: 1rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .login-btn {
        padding: 12px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .register-btn {
        padding: 10px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .security-features {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .security-item {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .error-message {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .field-error {
        font-size: 0.8rem;
    }
}

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

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 75%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(120, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.register-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

/* Register Logo */
.register-logo {
    text-align: center;
    margin-bottom: 30px;
}

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

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

/* Register Header */
.register-header {
    text-align: center;
    margin-bottom: 30px;
}

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-subtitle {
    color: #cccccc;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(32, 201, 151, 0.2) 100%);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #28a745;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

/* Error Message */
.error-message {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(255, 109, 116, 0.2) 100%);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #ff6b7a;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

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

.success-message i,
.error-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 30px;
}

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

.form-label i {
    color: #FFD700;
    font-size: 1.1rem;
}

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 16px 50px 16px 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

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

.form-input:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.form-input:valid {
    border-color: #28a745;
    padding-right: 80px;
}

.form-input.error {
    border-color: #dc3545;
    animation: shake 0.6s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700;
    font-size: 1.2rem;
    pointer-events: none;
}

.input-status {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.success-icon {
    color: #28a745;
    font-size: 1.2rem;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.field-error {
    color: #ff6b7a;
    font-size: 0.85rem;
    margin-top: 5px;
    margin-left: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

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

.field-info {
    color: #cccccc;
    font-size: 0.8rem;
    margin-top: 5px;
    margin-left: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    opacity: 0.8;
}

.field-info i {
    color: #FFD700;
    font-size: 0.8rem;
}

/* Register Button */
.register-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 12px;
    color: #000000;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

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

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

.register-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

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

.register-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.btn-text {
    transition: all 0.3s ease;
}

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

.loading-spinner {
    position: absolute;
    color: #000000;
}

.register-btn.loading .loading-spinner {
    display: block !important;
}

/* Divider */
.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

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

.divider span {
    background: rgba(26, 26, 26, 0.9);
    padding: 0 20px;
    color: #cccccc;
    font-weight: 500;
    position: relative;
}

/* Login Button (Outline Style) */
.login-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 12px;
    color: #FFD700;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    transition: left 0.3s ease;
}

.login-btn:hover::before {
    left: 0;
}

.login-btn:hover {
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.login-btn i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

/* Register Features */
.register-features {
    margin-bottom: 20px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

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

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

.feature-item i {
    font-size: 1.5rem;
    color: #FFD700;
    animation: float 3s ease-in-out infinite;
}

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

.feature-item:nth-child(2) i {
    animation-delay: 1s;
}

.feature-item:nth-child(3) i {
    animation-delay: 2s;
}

.feature-item span {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
}

/* Security Features */
.register-security {
    margin-top: 20px;
}

.security-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(40, 167, 69, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.security-item i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-section {
        padding: 80px 16px 40px;
    }
    
    .register-card {
        padding: 30px 25px;
    }
    
    .register-title {
        font-size: 1.7rem;
    }
    
    .register-subtitle {
        font-size: 0.9rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-input {
        padding: 14px 45px 14px 45px;
        font-size: 0.95rem;
    }
    
    .input-icon {
        left: 14px;
        font-size: 1.1rem;
    }
    
    .input-status {
        right: 14px;
    }
    
    .register-btn {
        padding: 14px;
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: center;
        padding: 12px 15px;
    }
    
    .feature-item i {
        font-size: 1.3rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .security-features {
        gap: 15px;
    }
    
    .security-item {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .register-container {
        max-width: 100%;
    }
    
    .register-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .register-title {
        font-size: 1.5rem;
    }
    
    .register-subtitle {
        font-size: 0.85rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 12px 40px 12px 40px;
        font-size: 0.9rem;
    }
    
    .form-input:valid {
        padding-right: 70px;
    }
    
    .input-icon {
        left: 12px;
        font-size: 1rem;
    }
    
    .input-status {
        right: 12px;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .register-btn {
        padding: 12px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .login-btn {
        padding: 10px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .feature-item {
        padding: 10px 12px;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
    
    .security-features {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .security-item {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .success-message,
    .error-message {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .field-error {
        font-size: 0.8rem;
    }
    
    .field-info {
        font-size: 0.75rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 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 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 50px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.08);
}

.stat-number {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

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

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

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.hero-btn.secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.hero-btn.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.hero-btn i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

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

/* Promotion Sections */
.promo-section {
    padding: 80px 0;
    position: relative;
}

.promo-section:nth-child(odd) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.promo-section:nth-child(even) {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

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

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

/* Different promo card styles */
.primary-promo {
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.primary-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.secondary-promo {
    border: 1px solid rgba(0, 123, 255, 0.4);
}

.secondary-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.tertiary-promo {
    border: 1px solid rgba(40, 167, 69, 0.4);
}

.tertiary-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.quaternary-promo {
    border: 1px solid rgba(220, 53, 69, 0.4);
}

.quaternary-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.promo-header {
    padding: 40px;
    text-align: center;
    position: relative;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.secondary-promo .promo-badge {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
}

.tertiary-promo .promo-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
}

.quaternary-promo .promo-badge {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
}

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

.promo-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.promo-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.amount-number {
    font-family: 'Prompt', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.amount-currency {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

.promo-content {
    padding: 0 40px 40px;
}

.promo-list {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    display: grid;
    gap: 15px;
}

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

.promo-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.3);
}

.promo-list i {
    color: #28a745;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

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

.promo-cta {
    text-align: center;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 250px;
    justify-content: center;
}

.secondary-promo .promo-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.4);
}

.tertiary-promo .promo-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
}

.quaternary-promo .promo-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(220, 53, 69, 0.4);
}

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

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

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.secondary-promo .promo-btn:hover {
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.6);
}

.tertiary-promo .promo-btn:hover {
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.6);
}

.quaternary-promo .promo-btn:hover {
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.6);
}

.promo-btn i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.promo-btn:hover i {
    transform: scale(1.2);
}

/* All Promotions CTA Section */
.all-promos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.all-promos-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.all-promos-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.all-promos-content {
    margin-bottom: 30px;
}

.all-promos-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.all-promos-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.all-promos-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    padding: 20px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.all-promos-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    transition: left 0.3s ease;
}

.all-promos-btn:hover::before {
    left: 100%;
}

.all-promos-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.all-promos-btn i {
    font-size: 1.5rem;
    animation: rocket 2s ease-in-out infinite;
}

@keyframes rocket {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-3px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .promo-header {
        padding: 30px;
    }
    
    .promo-content {
        padding: 0 30px 30px;
    }
    
    .promo-title {
        font-size: 1.8rem;
    }
    
    .amount-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-btn {
        min-width: 280px;
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .promo-section {
        padding: 60px 0;
    }
    
    .promo-header {
        padding: 25px;
    }
    
    .promo-content {
        padding: 0 25px 25px;
    }
    
    .promo-title {
        font-size: 1.6rem;
    }
    
    .amount-number {
        font-size: 3rem;
    }
    
    .amount-currency {
        font-size: 1.3rem;
    }
    
    .promo-list li {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .promo-list span {
        font-size: 0.95rem;
    }
    
    .promo-btn {
        min-width: 220px;
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .all-promos-card {
        padding: 40px 25px;
    }
    
    .all-promos-title {
        font-size: 2rem;
    }
    
    .all-promos-subtitle {
        font-size: 1.1rem;
    }
    
    .all-promos-btn {
        padding: 16px 32px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-btn {
        min-width: 250px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .stat-item {
        padding: 20px 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .promo-header {
        padding: 20px;
    }
    
    .promo-content {
        padding: 0 20px 20px;
    }
    
    .promo-title {
        font-size: 1.4rem;
    }
    
    .amount-number {
        font-size: 2.5rem;
    }
    
    .amount-currency {
        font-size: 1.2rem;
    }
    
    .promo-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .promo-list li {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .promo-list span {
        font-size: 0.9rem;
    }
    
    .promo-btn {
        min-width: 200px;
        padding: 12px 24px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .all-promos-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .all-promos-title {
        font-size: 1.7rem;
    }
    
    .all-promos-subtitle {
        font-size: 1rem;
    }
    
    .all-promos-btn {
        padding: 14px 28px;
        font-size: 1.1rem;
        gap: 10px;
    }
}