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

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

.btn-secondary:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Hero Section Styles */
.hero-section {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

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

.hero-text {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #cccccc;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

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

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

.hero-image {
    position: relative;
    z-index: 2;
}

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

.hero-stats {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #cccccc;
    margin-top: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        bottom: -20px;
        right: -10px;
        padding: 15px;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-features {
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 10px 16px;
        font-size: 0.875rem;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-stats {
        position: static;
        margin-top: 20px;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        padding: 12px;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

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

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

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

.logo-link {
    text-decoration: none;
    color: inherit;
}

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

.logo i {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    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(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.4s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

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

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

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

.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.cta-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
}

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    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-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.98) 0%, rgba(16, 33, 62, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 107, 53, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

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

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

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.mobile-logo i {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

/* Mobile Navigation */
.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin-bottom: 5px;
}

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

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border-left-color: #ff6b35;
    padding-left: 25px;
}

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

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

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

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

.mobile-cta-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100());
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        height: 60px;
    }
    
    .logo i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    
    .mobile-menu-content {
        width: 280px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo i {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-logo {
        font-size: 1.1rem;
    }
    
    .mobile-logo i {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .mobile-nav-link {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .mobile-cta-item {
        padding: 0 15px;
    }
    
    .mobile-cta-btn {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}

/* Ensure body has top padding for fixed header */
body {
    padding-top: 70px;
}

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

/* Platform Overview Section */
.platform-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.5) 0%, rgba(16, 33, 62, 0.5) 100%);
    position: relative;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

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

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.platform-image {
    position: relative;
    z-index: 2;
}

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

.platform-img:hover {
    transform: translateY(-5px);
}

.platform-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.platform-badge i {
    font-size: 16px;
}

.platform-text {
    z-index: 2;
    position: relative;
}

.platform-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.platform-description {
    margin-bottom: 40px;
}

.platform-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.platform-description strong {
    color: #ff6b35;
    font-weight: 700;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.feature-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.feature-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

.feature-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

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

.platform-highlight {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #ff6b35;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 0 10px 10px 0;
    backdrop-filter: blur(10px);
}

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

.platform-highlight strong {
    color: #ff6b35;
    font-weight: 700;
}

.platform-conclusion {
    margin-bottom: 40px;
}

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

.platform-conclusion strong {
    color: #ff6b35;
    font-weight: 700;
}

.platform-cta {
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .platform-content {
        gap: 60px;
    }
    
    .platform-title {
        font-size: 2.2rem;
    }
    
    .platform-features-grid {
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .platform-section {
        padding: 80px 0;
    }
    
    .platform-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .platform-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .platform-description p {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .platform-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .feature-card {
        padding: 18px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 1.1rem;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .platform-highlight {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .platform-highlight p {
        font-size: 1rem;
    }
    
    .platform-conclusion p {
        font-size: 1rem;
    }
    
    .platform-badge {
        top: -10px;
        left: -10px;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .platform-badge i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .platform-container {
        padding: 0 15px;
    }
    
    .platform-section {
        padding: 60px 0;
    }
    
    .platform-title {
        font-size: 1.75rem;
    }
    
    .platform-description p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .feature-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .platform-highlight {
        padding: 18px;
    }
    
    .platform-highlight p {
        font-size: 0.95rem;
    }
    
    .platform-conclusion p {
        font-size: 0.95rem;
    }
    
    .platform-cta {
        text-align: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Access Section */
.access-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(16, 33, 62, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.access-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.access-text {
    z-index: 2;
    position: relative;
}

.access-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.access-description {
    margin-bottom: 40px;
}

.access-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.access-description strong {
    color: #ff6b35;
    font-weight: 700;
}

.access-description a {
    color: #ff6b35;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.access-description a:hover {
    color: #f7931e;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

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

.access-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.access-feature:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.access-feature-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.access-feature-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

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

.access-feature-content p {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.access-image {
    position: relative;
    z-index: 2;
}

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

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

.access-status {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-indicator {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator.online {
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.3);
}

.status-indicator.online i {
    color: #00ff88;
    animation: pulse 2s infinite;
}

.uptime-badge {
    background: rgba(255, 107, 53, 0.9);
    color: #ffffff;
    border-radius: 20px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.domain-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.domain-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.domain-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.domain-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.domain-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.domain-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

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

.domain-content strong {
    color: #ff6b35;
    font-weight: 700;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-highlight {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #ff6b35;
    padding: 25px;
    border-radius: 0 10px 10px 0;
    backdrop-filter: blur(10px);
}

.service-highlight p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
}

.service-highlight strong {
    color: #ff6b35;
    font-weight: 700;
}

.access-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .access-content {
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .access-title {
        font-size: 2.2rem;
    }
    
    .access-features {
        gap: 15px;
    }
    
    .domain-info {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .access-section {
        padding: 80px 0;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .access-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .access-description p {
        font-size: 1rem;
    }
    
    .access-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .access-feature {
        padding: 20px;
    }
    
    .access-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .access-feature-icon i {
        font-size: 1.25rem;
    }
    
    .domain-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .domain-card {
        padding: 25px;
    }
    
    .domain-icon {
        width: 50px;
        height: 50px;
    }
    
    .domain-content h3 {
        font-size: 1.3rem;
    }
    
    .access-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .access-container {
        padding: 0 15px;
    }
    
    .access-section {
        padding: 60px 0;
    }
    
    .access-title {
        font-size: 1.75rem;
    }
    
    .access-description p {
        font-size: 0.95rem;
    }
    
    .access-feature {
        padding: 18px 15px;
    }
    
    .access-feature-content h3 {
        font-size: 1rem;
    }
    
    .access-feature-content p {
        font-size: 0.85rem;
    }
    
    .domain-card {
        padding: 20px;
    }
    
    .domain-content h3 {
        font-size: 1.2rem;
    }
    
    .domain-content p {
        font-size: 0.95rem;
    }
    
    .service-highlight {
        padding: 20px;
    }
    
    .service-highlight p {
        font-size: 0.95rem;
    }
    
    .access-status {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
    }
}

/* Payout Rates Section */
.payout-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(16, 33, 62, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.payout-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

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

.payout-content {
    position: relative;
    z-index: 2;
}

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

.payout-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.payout-intro {
    max-width: 900px;
    margin: 0 auto;
}

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

.payout-intro strong {
    color: #ff6b35;
    font-weight: 700;
}

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

.payout-image-section {
    position: relative;
}

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

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

.payout-highlight {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
}

.payout-rate {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.rate-number {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.rate-label {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
}

.payout-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.payout-guarantee i {
    font-size: 1rem;
}

.lottery-types {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lottery-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.lottery-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.lottery-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.lottery-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

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

.lottery-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

.lottery-info strong {
    color: #ff6b35;
    font-weight: 700;
}

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

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

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

.guarantee-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.guarantee-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.guarantee-number {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.guarantee-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
}

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

.detailed-info {
    margin-bottom: 60px;
}

.info-card {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #ff6b35;
    border-radius: 0 15px 15px 0;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

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

.info-highlight strong {
    color: #ff6b35;
    font-weight: 700;
}

.info-highlight a {
    color: #ff6b35;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.info-highlight a:hover {
    color: #f7931e;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

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

.specific-lottery,
.system-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.specific-lottery:hover,
.system-info:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
}

.specific-lottery h4,
.system-info h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

.specific-lottery p,
.system-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

.specific-lottery strong,
.system-info strong {
    color: #ff6b35;
    font-weight: 700;
}

.winning-system {
    text-align: center;
}

.system-features {
    margin-bottom: 40px;
}

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

.system-features p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.system-features strong {
    color: #ff6b35;
    font-weight: 700;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .payout-centerpiece {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .payout-title {
        font-size: 2.4rem;
    }
    
    .guarantees-grid {
        gap: 20px;
    }
    
    .lottery-specifics {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .payout-section {
        padding: 80px 0;
    }
    
    .payout-title {
        font-size: 2rem;
    }
    
    .payout-intro p {
        font-size: 1rem;
    }
    
    .payout-centerpiece {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .payout-highlight {
        bottom: -15px;
        left: -15px;
        padding: 20px;
        min-width: 150px;
    }
    
    .rate-number {
        font-size: 1.8rem;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .guarantee-item {
        padding: 25px 20px;
    }
    
    .guarantees-title {
        font-size: 1.7rem;
    }
    
    .lottery-card {
        padding: 20px;
        gap: 15px;
    }
    
    .lottery-specifics {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 25px;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .payout-container {
        padding: 0 15px;
    }
    
    .payout-section {
        padding: 60px 0;
    }
    
    .payout-title {
        font-size: 1.75rem;
    }
    
    .payout-intro p {
        font-size: 0.95rem;
    }
    
    .payout-highlight {
        bottom: -10px;
        left: -10px;
        padding: 15px;
        min-width: 120px;
    }
    
    .rate-number {
        font-size: 1.5rem;
    }
    
    .rate-label {
        font-size: 0.9rem;
    }
    
    .payout-guarantee {
        font-size: 0.8rem;
    }
    
    .lottery-card {
        padding: 18px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .lottery-icon {
        margin: 0 auto;
    }
    
    .guarantee-item {
        padding: 20px 15px;
    }
    
    .guarantee-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .guarantee-content h4 {
        font-size: 1.1rem;
    }
    
    .guarantee-content p {
        font-size: 0.9rem;
    }
    
    .guarantees-title {
        font-size: 1.5rem;
    }
    
    .specific-lottery,
    .system-info {
        padding: 20px;
    }
    
    .specific-lottery h4,
    .system-info h4 {
        font-size: 1.2rem;
    }
    
    .specific-lottery p,
    .system-info p {
        font-size: 0.95rem;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-highlight p {
        font-size: 1rem;
    }
    
    .system-features h3 {
        font-size: 1.5rem;
    }
    
    .system-features p {
        font-size: 1rem;
    }
}

/* Comprehensive Lottery Services Section */
.lottery-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(16, 33, 62, 0.9) 50%, rgba(10, 10, 10, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.lottery-services-section::before {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -30%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
}

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

.lottery-content {
    position: relative;
    z-index: 2;
}

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

.lottery-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.lottery-intro {
    max-width: 850px;
    margin: 0 auto;
}

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

.lottery-intro strong {
    color: #ff6b35;
    font-weight: 700;
}

.lottery-main-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.lottery-image {
    position: relative;
}

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

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

.lottery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.overlay-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.lottery-types-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.login-info {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #ff6b35;
    padding: 25px;
    border-radius: 0 10px 10px 0;
    backdrop-filter: blur(10px);
}

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

.login-info strong {
    color: #ff6b35;
    font-weight: 700;
}

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

.lottery-type-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lottery-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.lottery-type-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.lottery-type-card:hover::before {
    left: 100%;
}

.lottery-type-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.lottery-type-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

.lottery-type-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.lottery-type-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cccccc;
    margin-bottom: 12px;
}

.lottery-type-content strong {
    color: #ff6b35;
    font-weight: 700;
}

.lottery-schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #ff6b35;
    font-weight: 600;
}

.lottery-schedule i {
    font-size: 0.9rem;
}

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

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

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

.banking-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.banking-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.banking-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.banking-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.banking-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.banking-content p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

.lottery-details {
    margin-bottom: 50px;
}

.yiki-section,
.expert-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.yiki-section:hover,
.expert-info:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
}

.yiki-section h4,
.expert-info h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

.yiki-section p,
.expert-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cccccc;
    margin: 0;
}

.yiki-section strong,
.expert-info strong {
    color: #ff6b35;
    font-weight: 700;
}

.expert-info a {
    color: #ff6b35;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.expert-info a:hover {
    color: #f7931e;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .lottery-main-content {
        gap: 50px;
        margin-bottom: 60px;
    }
    
    .lottery-title {
        font-size: 2.4rem;
    }
    
    .lottery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .banking-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lottery-services-section {
        padding: 80px 0;
    }
    
    .lottery-title {
        font-size: 2rem;
    }
    
    .lottery-intro p {
        font-size: 1rem;
    }
    
    .lottery-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .lottery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .lottery-type-card {
        padding: 20px;
    }
    
    .banking-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .banking-item {
        padding: 25px 20px;
    }
    
    .banking-title {
        font-size: 1.7rem;
    }
    
    .lottery-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lottery-container {
        padding: 0 15px;
    }
    
    .lottery-services-section {
        padding: 60px 0;
    }
    
    .lottery-title {
        font-size: 1.75rem;
    }
    
    .lottery-intro p {
        font-size: 0.95rem;
    }
    
    .login-info {
        padding: 20px;
    }
    
    .login-info p {
        font-size: 1rem;
    }
    
    .lottery-type-card {
        padding: 18px;
    }
    
    .lottery-type-icon {
        width: 45px;
        height: 45px;
    }
    
    .lottery-type-icon i {
        font-size: 1.1rem;
    }
    
    .lottery-type-content h3 {
        font-size: 1rem;
    }
    
    .lottery-type-content p {
        font-size: 0.85rem;
    }
    
    .lottery-schedule {
        font-size: 0.8rem;
    }
    
    .banking-item {
        padding: 20px 15px;
    }
    
    .banking-icon {
        width: 50px;
        height: 50px;
    }
    
    .banking-icon i {
        font-size: 1.25rem;
    }
    
    .banking-content h4 {
        font-size: 1rem;
    }
    
    .banking-content p {
        font-size: 0.85rem;
    }
    
    .banking-title {
        font-size: 1.5rem;
    }
    
    .yiki-section,
    .expert-info {
        padding: 25px;
    }
    
    .yiki-section h4,
    .expert-info h4 {
        font-size: 1.2rem;
    }
    
    .yiki-section p,
    .expert-info p {
        font-size: 1rem;
    }
    
    .overlay-badge {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* Financial System Section */
.financial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(16, 33, 62, 0.9) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(10, 10, 10, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.financial-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.financial-content {
    position: relative;
    z-index: 2;
}

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

.financial-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.financial-intro {
    max-width: 900px;
    margin: 0 auto;
}

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

.financial-intro strong {
    color: #ff6b35;
    font-weight: 700;
}

.financial-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: flex-start;
    margin-bottom: 70px;
}

.financial-image-section {
    position: relative;
}

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

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

.auto-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 20px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.auto-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auto-icon i {
    color: #ffffff;
    font-size: 1rem;
    animation: spin 3s linear infinite;
}

.auto-text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.auto-title {
    font-family: 'Prompt', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
}

.auto-subtitle {
    font-size: 0.7rem;
    opacity: 0.9;
    line-height: 1;
}

.transaction-stats {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.stat-icon i {
    color: #ffffff;
    font-size: 0.8rem;
}

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

.stat-value {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    color: #ff6b35;
}

.stat-label {
    font-size: 0.7rem;
    color: #cccccc;
    line-height: 1;
}

.financial-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.deposit-info {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #ff6b35;
    padding: 25px;
    border-radius: 0 10px 10px 0;
    backdrop-filter: blur(10px);
}

.deposit-info h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

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

.deposit-info strong {
    color: #ff6b35;
    font-weight: 700;
}

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

.app-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.app-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.app-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.app-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

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

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

.app-content strong {
    color: #ff6b35;
    font-weight: 700;
}

.download-link {
    margin-top: 10px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-text {
    font-family: 'Prompt', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
}

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

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

.support-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.support-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.support-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.support-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

.support-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.support-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cccccc;
    margin: 0;
}

.support-content strong {
    color: #ff6b35;
    font-weight: 700;
}

.security-info {
    margin-bottom: 50px;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.security-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
}

.security-header h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

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

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

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

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

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

.promotion-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.promotion-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.promotion-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.promotion-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.promotion-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.promotion-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cccccc;
    margin: 0;
}

.promotion-content strong {
    color: #ff6b35;
    font-weight: 700;
}

.promotion-content a {
    color: #ff6b35;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.promotion-content a:hover {
    color: #f7931e;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.guarantees-final {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.final-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.final-left h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

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

.final-left strong {
    color: #ff6b35;
    font-weight: 700;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .financial-main-content {
        gap: 50px;
        margin-bottom: 60px;
    }
    
    .financial-title {
        font-size: 2.4rem;
    }
    
    .app-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .support-grid {
        gap: 20px;
    }
    
    .promotions-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .financial-section {
        padding: 80px 0;
    }
    
    .financial-title {
        font-size: 2rem;
    }
    
    .financial-intro p {
        font-size: 1rem;
    }
    
    .financial-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .app-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .app-card {
        padding: 20px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .support-item {
        padding: 20px 15px;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .promotion-card {
        padding: 20px 15px;
    }
    
    .promotions-title {
        font-size: 1.7rem;
    }
    
    .final-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .financial-container {
        padding: 0 15px;
    }
    
    .financial-section {
        padding: 60px 0;
    }
    
    .financial-title {
        font-size: 1.75rem;
    }
    
    .financial-intro p {
        font-size: 0.95rem;
    }
    
    .auto-badge {
        top: -10px;
        right: -10px;
        padding: 12px 15px;
    }
    
    .auto-icon {
        width: 30px;
        height: 30px;
    }
    
    .auto-title {
        font-size: 0.8rem;
    }
    
    .auto-subtitle {
        font-size: 0.65rem;
    }
    
    .transaction-stats {
        bottom: -15px;
        left: -15px;
        padding: 12px 15px;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .deposit-info {
        padding: 20px;
    }
    
    .deposit-info h3 {
        font-size: 1.3rem;
    }
    
    .deposit-info p {
        font-size: 1rem;
    }
    
    .app-card {
        padding: 18px;
    }
    
    .app-icon {
        width: 45px;
        height: 45px;
    }
    
    .app-content h4 {
        font-size: 1.1rem;
    }
    
    .app-content p {
        font-size: 0.9rem;
    }
    
    .download-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .support-item {
        padding: 18px 12px;
    }
    
    .support-icon {
        width: 45px;
        height: 45px;
    }
    
    .support-content h4 {
        font-size: 1rem;
    }
    
    .support-content p {
        font-size: 0.85rem;
    }
    
    .security-card {
        padding: 25px;
    }
    
    .security-header h3 {
        font-size: 1.4rem;
    }
    
    .security-content p {
        font-size: 1rem;
    }
    
    .promotion-card {
        padding: 18px 12px;
    }
    
    .promotion-icon {
        width: 50px;
        height: 50px;
    }
    
    .promotion-content h4 {
        font-size: 1rem;
    }
    
    .promotion-content p {
        font-size: 0.85rem;
    }
    
    .promotions-title {
        font-size: 1.5rem;
    }
    
    .guarantees-final {
        padding: 25px;
    }
    
    .final-left h4 {
        font-size: 1.2rem;
    }
    
    .final-left p {
        font-size: 1rem;
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(180deg, rgba(16, 33, 62, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
}

/* Footer About Section */
.footer-about {
    max-width: 100%;
}

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

.footer-logo i {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.footer-logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

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

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

.footer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-feature i {
    color: #ff6b35;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

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

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

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

.footer-menu-item {
    position: relative;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 6px 0;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

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

.footer-link:hover::before {
    width: 100%;
}

.footer-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

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

/* Contact Section */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    font-size: 0.9rem;
}

.contact-item i {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Social Media */
.footer-social {
    margin-top: 20px;
}

.social-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100());
    color: #ffffff;
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.social-link i {
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 30px 0;
}

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

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

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

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.legal-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.legal-link:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.footer-disclaimer {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

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

.age-restriction,
.responsible-gaming {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.age-restriction i {
    color: #ff6b35;
    font-size: 1rem;
}

.responsible-gaming i {
    color: #ff6b35;
    font-size: 1rem;
    animation: heartbeat 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-contact {
        grid-column: span 3;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 50px 0 30px;
    }
    
    .footer-about {
        grid-column: span 2;
    }
    
    .footer-contact {
        grid-column: span 2;
        margin-top: 10px;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0 25px;
    }
    
    .footer-about,
    .footer-contact {
        grid-column: span 1;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-logo i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-logo-text {
        font-size: 1.6rem;
    }
    
    .footer-description {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .footer-features {
        align-items: center;
    }
    
    .footer-title {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-menu {
        align-items: center;
    }
    
    .footer-contact-info {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .social-title {
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .separator {
        display: none;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .footer-disclaimer {
        padding: 15px;
    }
    
    .age-restriction,
    .responsible-gaming {
        font-size: 0.85rem;
        justify-content: center;
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 70px;
    gap: 6px;
}

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

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

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

.sticky-btn span {
    line-height: 1.2;
    text-align: center;
    transition: all 0.3s ease;
}

/* Login Button */
.sticky-btn-login {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #357abd 0%, #4a90e2 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.sticky-btn-login:hover i {
    transform: scale(1.1);
    color: #ffffff;
}

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

/* Register Button */
.sticky-btn-register {
    background: linear-gradient(135deg, #28a745 0%, #20832b 100%);
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #20832b 0%, #28a745 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.sticky-btn-register:hover i {
    transform: scale(1.1);
    color: #ffffff;
}

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

/* Bonus Button */
.sticky-btn-bonus {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    position: relative;
}

.sticky-btn-bonus::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse-notification 2s infinite;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100());
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.sticky-btn-bonus:hover i {
    transform: scale(1.1) rotate(10deg);
    color: #ffffff;
}

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

.sticky-btn-bonus i {
    animation: gift-shake 3s infinite;
}

@keyframes pulse-notification {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes gift-shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-2deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(2deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-buttons {
        border-top-width: 1px;
    }
    
    .sticky-btn {
        padding: 12px 8px;
        font-size: 0.8rem;
        min-height: 65px;
        gap: 4px;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
    }
    
    .sticky-btn span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 10px 5px;
        font-size: 0.75rem;
        min-height: 60px;
        gap: 3px;
    }
    
    .sticky-btn i {
        font-size: 1rem;
    }
    
    .sticky-btn span {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .sticky-btn-bonus::after {
        width: 10px;
        height: 10px;
        top: -1px;
        right: -1px;
    }
}

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

/* Ensure content doesn't get hidden behind sticky buttons */
body {
    padding-bottom: 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;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

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

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

.login-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.login-box:hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

/* 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: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Error Message */
.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.error-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.error-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
}

.error-content i {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-label i {
    color: #ff6b35;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

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

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

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

.form-input:valid {
    border-color: rgba(40, 167, 69, 0.5);
}

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

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

.input-icon {
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-input:focus + .input-icon {
    color: #ff6b35;
    transform: scale(1.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.field-error {
    color: #dc3545;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.field-error.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.remember-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.remember-checkbox:checked + .checkmark {
    background: #ff6b35;
    border-color: #ff6b35;
}

.remember-checkbox:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.remember-text {
    color: #cccccc;
    font-size: 0.85rem;
}

.forgot-password {
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Buttons */
.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.login-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100());
    border: none;
    border-radius: 10px;
    padding: 16px 24px;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

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

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

.login-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

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

.btn-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.login-btn.loading .btn-loading {
    display: block;
}

.register-btn {
    background: transparent;
    border: 2px solid #ff6b35;
    border-radius: 10px;
    padding: 14px 24px;
    color: #ff6b35;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

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

/* Footer */
.login-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.security-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 500;
}

.security-note i {
    font-size: 0.9rem;
}

.help-links {
    display: flex;
    justify-content: center;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.help-link:hover {
    color: #ff6b35;
}

.help-link i {
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 20px 15px;
    }
    
    .login-box {
        padding: 30px;
    }
    
    .login-title {
        font-size: 1.75rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 15px 10px;
    }
    
    .login-box {
        padding: 25px;
    }
    
    .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.95rem;
    }
    
    .login-btn,
    .register-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .login-footer {
        margin-top: 25px;
    }
    
    .security-note,
    .help-link {
        font-size: 0.75rem;
    }
}

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

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

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

.register-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.register-box:hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05) rotate(5deg);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

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

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

.register-subtitle {
    color: #cccccc;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Messages */
.success-message,
.error-message {
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.success-message.show,
.error-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.success-content,
.error-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.success-content {
    color: #28a745;
}

.error-content {
    color: #dc3545;
}

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

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

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

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

.form-label i {
    color: #ff6b35;
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

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

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

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

.form-input:valid {
    border-color: rgba(40, 167, 69, 0.5);
}

.form-input.error {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
    animation: shake 0.5s ease-in-out;
}

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

.input-icon {
    position: absolute;
    left: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-input:focus + .input-icon {
    color: #ff6b35;
    transform: scale(1.1);
}

.input-validation {
    position: absolute;
    right: 16px;
    color: #28a745;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.input-validation.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.field-error.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.field-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 4px;
}

.field-hint i {
    font-size: 0.75rem;
    color: #ff6b35;
}

/* Agreement */
.form-agreement {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agreement-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.agreement-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.agreement-checkbox:checked + .checkmark {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-color: #ff6b35;
    transform: scale(1.05);
}

.agreement-checkbox:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.agreement-text {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.agreement-link:hover {
    color: #f7931e;
    text-decoration-color: #f7931e;
}

/* Buttons */
.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.register-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100());
    border: none;
    border-radius: 12px;
    padding: 18px 24px;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

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

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

.register-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100());
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

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

.btn-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.register-btn.loading .btn-loading {
    display: block;
}

.login-btn {
    background: transparent;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 16px 24px;
    color: #ff6b35;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.1);
    transition: left 0.4s ease;
}

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

.login-btn:hover {
    background: #ff6b35;
    color: #ffffff;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

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

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

/* Features */
.register-features {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
}

.feature-item i {
    color: #ff6b35;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* Footer */
.register-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.security-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

.security-note i {
    font-size: 0.9rem;
}

.help-links {
    display: flex;
    justify-content: center;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-align: center;
}

.help-link:hover {
    color: #ff6b35;
}

.help-link i {
    font-size: 0.9rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .register-section {
        padding: 20px 15px;
    }
    
    .register-box {
        padding: 30px;
    }
    
    .register-title {
        font-size: 1.9rem;
    }
    
    .register-subtitle {
        font-size: 0.9rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-input {
        padding: 14px 50px 14px 45px;
        font-size: 0.95rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 15px 10px;
    }
    
    .register-box {
        padding: 25px;
    }
    
    .register-title {
        font-size: 1.7rem;
    }
    
    .register-subtitle {
        font-size: 0.85rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 12px 45px 12px 40px;
        font-size: 0.9rem;
    }
    
    .input-icon {
        left: 14px;
        font-size: 1rem;
    }
    
    .input-validation {
        right: 14px;
        font-size: 0.9rem;
    }
    
    .register-btn,
    .login-btn {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .agreement-text {
        font-size: 0.8rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .register-footer {
        margin-top: 25px;
    }
    
    .security-note,
    .help-link {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .register-box {
        padding: 20px;
    }
    
    .register-title {
        font-size: 1.5rem;
    }
    
    .logo-image {
        width: 55px;
        height: 55px;
    }
    
    .form-input {
        padding: 10px 40px 10px 35px;
    }
    
    .input-icon {
        left: 12px;
        font-size: 0.9rem;
    }
    
    .input-validation {
        right: 12px;
        font-size: 0.85rem;
    }
}

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    font-size: 1rem;
    animation: star-twinkle 2s infinite;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.highlight-item i {
    font-size: 1.5rem;
    color: #ff6b35;
}

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

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

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100());
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.hero-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

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

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

.promotion-section:nth-child(odd) {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(16, 33, 62, 0.9) 100%);
}

.promotion-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(16, 33, 62, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.promotion-alternate {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 46, 0.9) 100()) !important;
}

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

.promotion-content {
    position: relative;
    z-index: 2;
}

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

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

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

.promotion-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

.promotion-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100());
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.feature-icon i {
    font-size: 1.25rem;
    color: #ffffff;
}

.feature-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
    line-height: 1.3;
}

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

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

.promotion-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100());
    color: #ffffff;
    padding: 16px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.promotion-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100());
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

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

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

@keyframes star-twinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-highlights {
        gap: 20px;
    }
    
    .promotion-title {
        font-size: 2.2rem;
    }
    
    .promotion-features {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
    }
    
    .highlight-item {
        flex-direction: row;
        text-align: left;
        padding: 15px;
    }
    
    .promotion-section {
        padding: 60px 0;
    }
    
    .promotion-title {
        font-size: 1.8rem;
    }
    
    .promotion-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .promotion-icon {
        width: 70px;
        height: 70px;
    }
    
    .promotion-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .promotion-container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-highlights {
        gap: 12px;
    }
    
    .highlight-item {
        padding: 12px 15px;
    }
    
    .highlight-item span {
        font-size: 0.8rem;
    }
    
    .hero-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .promotion-section {
        padding: 50px 0;
    }
    
    .promotion-title {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 18px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .promotion-icon {
        width: 60px;
        height: 60px;
    }
    
    .promotion-icon i {
        font-size: 1.6rem;
    }
    
    .promotion-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .promotion-title {
        font-size: 1.4rem;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .promotion-icon {
        width: 55px;
        height: 55px;
    }
    
    .promotion-icon i {
        font-size: 1.4rem;
    }
}