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

body {
    font-family: 'Sarabun', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0d0d0d;
    background-image: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

p {
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
}

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

a:hover {
    color: #ffffff;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.btn-secondary {
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    color: #ffffff;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

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

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

.feature-item i {
    color: #ffd700;
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

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

.hero-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

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

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        min-width: 160px;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-badge {
        position: static;
        margin-top: 1rem;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-img {
        max-width: 100%;
    }
}

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

.main-header.scrolled {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo-link:hover .logo-text {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.nav-item {
    margin: 0;
}

.nav-link {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
}

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

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-shrink: 0;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

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

.hamburger-btn:hover .hamburger-line {
    background: #ffed4e;
}

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

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

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

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

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

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    max-width: 350px;
    width: 100%;
}

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

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

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

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

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

.mobile-nav {
    flex: 1;
}

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

.mobile-nav-item {
    margin: 0;
}

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

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

.mobile-nav-link i {
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

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

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    width: 100%;
}

.mobile-cta-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #000000;
}

.mobile-cta-btn i {
    font-size: 1.25rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .btn-cta {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

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

@media (max-width: 480px) {
    .header-container {
        padding: 0 0.75rem;
        height: 60px;
    }
    
    body {
        padding-top: 60px;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
    
    .mobile-menu-content {
        padding: 1.5rem;
        max-width: 300px;
    }
    
    .mobile-menu-header {
        margin-bottom: 2rem;
    }
    
    .mobile-logo {
        font-size: 1.25rem;
    }
    
    .mobile-nav-link {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    
    .mobile-nav-link i {
        font-size: 1.125rem;
    }
    
    .mobile-cta-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Lotto77 Overview Section */
.lotto77-overview-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.lotto77-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 70% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.overview-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.overview-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.overview-description strong {
    color: #ffd700;
    font-weight: 700;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

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

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

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

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

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

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

.overlay-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-badge {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stat-badge i {
    color: #ffd700;
    font-size: 1rem;
}

/* Benefits Section */
.overview-benefits {
    margin-bottom: 4rem;
}

.benefits-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

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

.benefit-item i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.benefit-item strong {
    color: #ffd700;
    font-weight: 700;
}

/* CTA Section */
.overview-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-container {
        padding: 0 1.5rem;
    }
    
    .overview-content {
        gap: 3rem;
    }
    
    .overview-title {
        font-size: 2.25rem;
    }
    
    .benefits-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .lotto77-overview-section {
        padding: 3rem 0;
    }
    
    .overview-container {
        padding: 0 1rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .overview-title {
        font-size: 1.875rem;
        text-align: center;
    }
    
    .overview-description p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.25rem;
    }
    
    .benefits-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-item i {
        font-size: 2.5rem;
    }
    
    .overlay-stats {
        position: static;
        margin-top: 1rem;
        align-items: center;
    }
    
    .cta-content h3 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .lotto77-overview-section {
        padding: 2rem 0;
    }
    
    .overview-container {
        padding: 0 0.75rem;
    }
    
    .overview-title {
        font-size: 1.5rem;
    }
    
    .overview-description p {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1.125rem;
    }
    
    .feature-content p {
        font-size: 0.875rem;
    }
    
    .benefits-title {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
    }
    
    .benefit-item i {
        font-size: 2rem;
    }
    
    .benefit-item h4 {
        font-size: 1.125rem;
    }
    
    .benefit-item p {
        font-size: 0.875rem;
    }
    
    .overview-cta {
        padding: 2rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
}

/* Login System Section */
.login-system-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.login-system-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
    z-index: 1;
}

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

.login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.login-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.login-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.login-description strong {
    color: #ffd700;
    font-weight: 700;
}

.login-urls h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.url-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.url-item:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

.url-item i {
    color: #ffd700;
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

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

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

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

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

.security-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    color: #ffd700;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: securityPulse 3s infinite;
}

@keyframes securityPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
}

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

/* Login Steps */
.login-steps {
    margin-bottom: 4rem;
}

.steps-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

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

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

.step-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 3;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

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

/* Security Features */
.security-features {
    margin-bottom: 4rem;
}

.security-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.security-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

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

.security-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.security-content p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

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

/* Login CTA */
.login-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.inline-link {
    color: #ffd700;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-container {
        padding: 0 1.5rem;
    }
    
    .login-content {
        gap: 3rem;
    }
    
    .login-title {
        font-size: 2.25rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .step-item:nth-child(3n)::after,
    .step-item:nth-child(5)::after {
        display: none;
    }
    
    .security-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .login-system-section {
        padding: 3rem 0;
    }
    
    .login-container {
        padding: 0 1rem;
    }
    
    .login-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-title {
        font-size: 1.875rem;
        text-align: center;
    }
    
    .login-description p {
        font-size: 1rem;
    }
    
    .steps-title,
    .security-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-item::after {
        display: none !important;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .security-item {
        padding: 1.5rem;
    }
    
    .security-icon {
        width: 60px;
        height: 60px;
    }
    
    .security-icon i {
        font-size: 1.5rem;
    }
    
    .security-badge {
        position: static;
        margin-top: 1rem;
        align-self: center;
    }
    
    .cta-content h3 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-system-section {
        padding: 2rem 0;
    }
    
    .login-container {
        padding: 0 0.75rem;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .login-description p {
        font-size: 0.95rem;
    }
    
    .url-item {
        padding: 0.75rem 1rem;
    }
    
    .url-item span {
        font-size: 1rem;
    }
    
    .steps-title,
    .security-title {
        font-size: 1.5rem;
    }
    
    .step-item {
        padding: 1.25rem 0.75rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .security-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .security-icon {
        width: 60px;
        height: 60px;
        align-self: center;
    }
    
    .security-content h4 {
        font-size: 1.125rem;
    }
    
    .security-content p {
        font-size: 0.875rem;
    }
    
    .login-cta {
        padding: 2rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
}

/* Reviews and Testimonials Section */
.reviews-testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.reviews-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 30%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
    z-index: 1;
}

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

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.reviews-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-subtitle strong {
    color: #ffd700;
    font-weight: 700;
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.reviews-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.review-analysis h3,
.credibility-check h3 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-analysis h3::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 2px;
}

.credibility-check h3::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 2px;
}

.analysis-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.analysis-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 0;
}

.analysis-text strong {
    color: #ffd700;
    font-weight: 700;
}

.credibility-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.credibility-item {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

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

.credibility-item i {
    color: #ffd700;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.credibility-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.credibility-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 0;
}

.reviews-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

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

.review-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

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

.stat-item:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

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

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

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

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

.stat-label {
    font-size: 0.85rem;
    color: #cccccc;
    margin-top: 0.25rem;
}

/* Service Analysis */
.service-analysis {
    margin-bottom: 4rem;
}

.analysis-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.analysis-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

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

.analysis-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.analysis-content p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Withdrawal Info */
.withdrawal-info {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    padding: 3rem;
}

.withdrawal-content h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

.withdrawal-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.withdrawal-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.withdrawal-item i {
    color: #ffd700;
    font-size: 2rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.withdrawal-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.withdrawal-text p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .reviews-container {
        padding: 0 1.5rem;
    }
    
    .reviews-content {
        gap: 3rem;
    }
    
    .reviews-title {
        font-size: 2.25rem;
    }
    
    .analysis-grid {
        gap: 1.5rem;
    }
    
    .review-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .reviews-testimonials-section {
        padding: 3rem 0;
    }
    
    .reviews-container {
        padding: 0 1rem;
    }
    
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .reviews-title {
        font-size: 1.875rem;
    }
    
    .reviews-subtitle {
        font-size: 1rem;
    }
    
    .review-analysis h3,
    .credibility-check h3 {
        font-size: 1.5rem;
    }
    
    .credibility-item {
        padding: 1.5rem;
    }
    
    .analysis-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .analysis-item {
        padding: 1.5rem;
    }
    
    .analysis-icon {
        width: 60px;
        height: 60px;
    }
    
    .analysis-icon i {
        font-size: 1.25rem;
    }
    
    .review-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem 1.5rem;
    }
    
    .withdrawal-info {
        padding: 2rem;
    }
    
    .withdrawal-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .reviews-testimonials-section {
        padding: 2rem 0;
    }
    
    .reviews-container {
        padding: 0 0.75rem;
    }
    
    .reviews-title {
        font-size: 1.5rem;
    }
    
    .reviews-subtitle {
        font-size: 0.95rem;
    }
    
    .reviews-info {
        gap: 2rem;
    }
    
    .review-analysis h3,
    .credibility-check h3 {
        font-size: 1.25rem;
    }
    
    .credibility-item {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }
    
    .credibility-item i {
        width: auto;
        margin-bottom: 0.5rem;
    }
    
    .analysis-title {
        font-size: 1.5rem;
    }
    
    .analysis-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .analysis-icon {
        width: 60px;
        height: 60px;
        align-self: center;
    }
    
    .analysis-content h4 {
        font-size: 1.125rem;
    }
    
    .analysis-content p {
        font-size: 0.875rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .withdrawal-info {
        padding: 1.5rem;
    }
    
    .withdrawal-content h3 {
        font-size: 1.5rem;
    }
    
    .withdrawal-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .withdrawal-item i {
        width: auto;
        margin-top: 0;
    }
    
    .withdrawal-text h4 {
        font-size: 1.125rem;
    }
    
    .withdrawal-text p {
        font-size: 0.9rem;
    }
}

/* Lottery Buying Section */
.lottery-buying-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.lottery-buying-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
    z-index: 1;
}

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

.buying-header {
    text-align: center;
    margin-bottom: 4rem;
}

.buying-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.buying-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto;
}

.buying-subtitle strong {
    color: #ffd700;
    font-weight: 700;
}

.buying-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

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

.lottery-types h3 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lottery-types h3::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 2px;
}

.lottery-description {
    margin-bottom: 3rem;
}

.lottery-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.lottery-description strong {
    color: #ffd700;
    font-weight: 700;
}

.lottery-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lottery-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.lottery-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.lottery-item i {
    color: #ffd700;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.lottery-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

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

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

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

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

.vip-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    animation: vipPulse 2.5s infinite;
}

@keyframes vipPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.05) rotate(2deg);
    }
}

.vip-badge i {
    font-size: 1.25rem;
}

/* Buying Process */
.buying-process {
    margin-bottom: 4rem;
}

.process-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-description {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
}

.process-description strong {
    color: #ffd700;
    font-weight: 700;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    opacity: 0.3;
    z-index: 1;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    border: 3px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.step-icon i {
    font-size: 1.25rem;
    color: #ffd700;
    transition: color 0.3s ease;
}

.process-step:hover .step-icon i {
    color: #000000;
}

.step-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: #ffd700;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.step-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 4rem;
}

.payment-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.payment-description {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.payment-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

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

.payment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.payment-icon i {
    font-size: 2rem;
    color: #000000;
}

.payment-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

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

.deposit-info {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.deposit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex: 1;
    max-width: 400px;
}

.deposit-item i {
    color: #ffd700;
    font-size: 2rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.deposit-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.deposit-text p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Auto System */
.auto-system {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    padding: 3rem;
    text-align: center;
}

.auto-content h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.auto-content p {
    font-size: 1.125rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.inline-link {
    color: #ffd700;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #ffffff;
}

.auto-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.auto-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

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

.auto-feature i {
    color: #ffd700;
    font-size: 1.25rem;
}

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .buying-container {
        padding: 0 1.5rem;
    }
    
    .buying-content {
        gap: 3rem;
    }
    
    .buying-title {
        font-size: 2.25rem;
    }
    
    .payment-grid {
        gap: 1.5rem;
    }
    
    .process-steps {
        gap: 1.5rem;
    }
    
    .deposit-info {
        gap: 2rem;
    }
    
    .auto-features {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .lottery-buying-section {
        padding: 3rem 0;
    }
    
    .buying-container {
        padding: 0 1rem;
    }
    
    .buying-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .buying-title {
        font-size: 1.875rem;
    }
    
    .buying-subtitle {
        font-size: 1rem;
    }
    
    .lottery-types h3 {
        font-size: 1.5rem;
    }
    
    .lottery-item {
        padding: 1.25rem;
    }
    
    .lottery-item:hover {
        transform: translateY(-5px);
    }
    
    .process-title,
    .payment-title {
        font-size: 1.75rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-item {
        padding: 1.5rem;
    }
    
    .payment-icon {
        width: 70px;
        height: 70px;
    }
    
    .payment-icon i {
        font-size: 1.75rem;
    }
    
    .deposit-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .deposit-item {
        max-width: none;
    }
    
    .auto-system {
        padding: 2rem;
    }
    
    .auto-content h3 {
        font-size: 1.75rem;
    }
    
    .auto-content p {
        font-size: 1rem;
    }
    
    .auto-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .vip-badge {
        position: static;
        margin-top: 1rem;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .lottery-buying-section {
        padding: 2rem 0;
    }
    
    .buying-container {
        padding: 0 0.75rem;
    }
    
    .buying-title {
        font-size: 1.5rem;
    }
    
    .buying-subtitle {
        font-size: 0.95rem;
    }
    
    .lottery-types h3 {
        font-size: 1.25rem;
    }
    
    .lottery-item {
        padding: 1rem;
    }
    
    .lottery-content h4 {
        font-size: 1.125rem;
    }
    
    .lottery-content p {
        font-size: 0.875rem;
    }
    
    .process-title,
    .payment-title {
        font-size: 1.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1rem;
    }
    
    .step-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .step-info h4 {
        font-size: 0.9rem;
    }
    
    .payment-item {
        padding: 1.25rem;
    }
    
    .payment-icon {
        width: 60px;
        height: 60px;
    }
    
    .payment-icon i {
        font-size: 1.5rem;
    }
    
    .payment-content h4 {
        font-size: 1.125rem;
    }
    
    .payment-content p {
        font-size: 0.875rem;
    }
    
    .deposit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .deposit-item i {
        width: auto;
        margin-top: 0;
    }
    
    .deposit-text h4 {
        font-size: 1.125rem;
    }
    
    .deposit-text p {
        font-size: 0.875rem;
    }
    
    .auto-system {
        padding: 1.5rem;
    }
    
    .auto-content h3 {
        font-size: 1.5rem;
    }
    
    .auto-content p {
        font-size: 0.95rem;
    }
    
    .auto-feature {
        padding: 0.75rem 1rem;
    }
    
    .auto-feature i {
        font-size: 1rem;
    }
    
    .auto-feature span {
        font-size: 0.9rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Pros and Cons Analysis Section */
.pros-cons-analysis-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.pros-cons-analysis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 40% 30%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
    z-index: 1;
}

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

.analysis-header {
    text-align: center;
    margin-bottom: 4rem;
}

.analysis-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.analysis-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto;
}

.analysis-subtitle strong {
    color: #ffd700;
    font-weight: 700;
}

.analysis-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pros-icon {
    background: linear-gradient(135deg, #28a745 0%, #34d058 100%);
}

.cons-icon {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b7a 100%);
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 2rem;
}

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

.pros-list,
.cons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pros-item,
.cons-item {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.pros-item {
    background: rgba(40, 167, 69, 0.05);
    border-color: rgba(40, 167, 69, 0.2);
}

.pros-item:hover {
    background: rgba(40, 167, 69, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.2);
}

.cons-item {
    background: rgba(220, 53, 69, 0.05);
    border-color: rgba(220, 53, 69, 0.2);
}

.cons-item:hover {
    background: rgba(220, 53, 69, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.2);
}

.pros-item-icon,
.cons-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.pros-item-icon {
    background: rgba(40, 167, 69, 0.2);
}

.pros-item-icon i {
    color: #28a745;
    font-size: 1.25rem;
}

.cons-item-icon {
    background: rgba(220, 53, 69, 0.2);
}

.cons-item-icon i {
    color: #dc3545;
    font-size: 1.25rem;
}

.pros-item-content h4,
.cons-item-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.pros-item-content p,
.cons-item-content p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.pros-item-content strong,
.cons-item-content strong {
    color: #ffd700;
    font-weight: 700;
}

/* Signup Benefits */
.signup-benefits {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    padding: 3rem;
    margin-bottom: 4rem;
}

.benefits-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefits-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.benefits-text p:last-child {
    margin-bottom: 0;
}

.inline-link {
    color: #ffd700;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #ffffff;
}

.benefits-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

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

.benefit-feature i {
    color: #ffd700;
    font-size: 1.25rem;
}

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

/* Final Assessment */
.final-assessment {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.assessment-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.assessment-text {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.assessment-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.assessment-text p:last-child {
    margin-bottom: 0;
}

.assessment-text strong {
    color: #ffd700;
    font-weight: 700;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .analysis-container {
        padding: 0 1.5rem;
    }
    
    .analysis-main {
        gap: 3rem;
    }
    
    .analysis-title {
        font-size: 2.25rem;
    }
    
    .benefits-features {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .pros-cons-analysis-section {
        padding: 3rem 0;
    }
    
    .analysis-container {
        padding: 0 1rem;
    }
    
    .analysis-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .analysis-title {
        font-size: 1.875rem;
    }
    
    .analysis-subtitle {
        font-size: 1rem;
    }
    
    .section-header {
        gap: 0.75rem;
    }
    
    .section-icon {
        width: 50px;
        height: 50px;
    }
    
    .section-icon i {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .pros-item,
    .cons-item {
        padding: 1.5rem;
    }
    
    .pros-item-icon,
    .cons-item-icon {
        width: 40px;
        height: 40px;
    }
    
    .pros-item-icon i,
    .cons-item-icon i {
        font-size: 1rem;
    }
    
    .signup-benefits {
        padding: 2rem;
    }
    
    .benefits-title {
        font-size: 1.75rem;
    }
    
    .benefits-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .final-assessment {
        padding: 2rem 1.5rem;
    }
    
    .assessment-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .pros-cons-analysis-section {
        padding: 2rem 0;
    }
    
    .analysis-container {
        padding: 0 0.75rem;
    }
    
    .analysis-title {
        font-size: 1.5rem;
    }
    
    .analysis-subtitle {
        font-size: 0.95rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .pros-item,
    .cons-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .pros-item-icon,
    .cons-item-icon {
        align-self: center;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    
    .pros-item-content h4,
    .cons-item-content h4 {
        font-size: 1.125rem;
    }
    
    .pros-item-content p,
    .cons-item-content p {
        font-size: 0.875rem;
    }
    
    .signup-benefits {
        padding: 1.5rem;
    }
    
    .benefits-title {
        font-size: 1.5rem;
    }
    
    .benefits-text p {
        font-size: 0.95rem;
    }
    
    .benefit-feature {
        padding: 0.75rem 1rem;
    }
    
    .benefit-feature i {
        font-size: 1rem;
    }
    
    .benefit-feature span {
        font-size: 0.9rem;
    }
    
    .final-assessment {
        padding: 1.5rem 1rem;
    }
    
    .assessment-content h3 {
        font-size: 1.5rem;
    }
    
    .assessment-text p {
        font-size: 0.95rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Footer Section */
.main-footer {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    padding: 3rem 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    z-index: 1;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: block;
}

.footer-description {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e0e0e0;
    font-weight: 600;
}

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

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.footer-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Payment Methods */
.payment-methods {
    margin-top: 1rem;
}

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

.payment-icons {
    display: flex;
    gap: 0.75rem;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

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

.feature-badge i {
    color: #ffd700;
    font-size: 1rem;
}

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

.footer-copyright {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-copyright p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    color: #999999 !important;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        gap: 3rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .footer-features {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 2rem 0 0;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-logo-text {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
        font-size: 0.95rem;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-badge {
        justify-content: center;
        min-width: 200px;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 0.75rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1.125rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-menu {
        text-align: center;
    }
    
    .footer-link {
        padding: 0.5rem 0;
    }
    
    .footer-link:hover {
        transform: none;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .payment-methods {
        text-align: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .footer-features {
        gap: 0.75rem;
    }
    
    .feature-badge {
        padding: 0.5rem 1rem;
        min-width: 180px;
    }
    
    .feature-badge span {
        font-size: 0.85rem;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
    
    .footer-disclaimer {
        font-size: 0.75rem !important;
    }
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(15px);
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

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

.sticky-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

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

.sticky-btn-credit .sticky-btn-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.sticky-btn-icon i {
    font-size: 1.25rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.sticky-btn-credit .sticky-btn-icon i {
    color: #000000;
}

.sticky-btn-text {
    color: #e0e0e0;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.sticky-btn-login {
    color: #007bff;
}

.sticky-btn-register {
    color: #28a745;
}

.sticky-btn-credit {
    color: #ffd700;
}

.sticky-btn:hover .sticky-btn-icon {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.sticky-btn:hover .sticky-btn-text {
    color: #ffffff;
    transform: translateY(-1px);
}

.sticky-btn:active {
    transform: scale(0.98);
}

.sticky-btn-login:hover .sticky-btn-text {
    color: #007bff;
}

.sticky-btn-register:hover .sticky-btn-text {
    color: #28a745;
}

.sticky-btn-credit:hover .sticky-btn-text {
    color: #ffd700;
}

/* Animation for buttons */
.sticky-btn {
    animation: slideUpFade 0.5s ease-out;
}

.sticky-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.sticky-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.sticky-btn:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for credit button */
.sticky-btn-credit .sticky-btn-icon {
    animation: creditPulse 2s infinite;
}

@keyframes creditPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
    }
}

/* Add bottom padding to body to account for sticky buttons */
body {
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-btn {
        padding: 0.875rem 0.25rem;
        font-size: 0.8rem;
    }
    
    .sticky-btn-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.375rem;
    }
    
    .sticky-btn-icon i {
        font-size: 1.125rem;
    }
    
    body {
        padding-bottom: 75px;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 0.75rem 0.125rem;
        font-size: 0.75rem;
    }
    
    .sticky-btn-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.25rem;
    }
    
    .sticky-btn-icon i {
        font-size: 1rem;
    }
    
    .sticky-btn-text {
        line-height: 1.1;
    }
    
    body {
        padding-bottom: 70px;
    }
}

/* Ensure buttons don't interfere with footer on larger screens */
@media (min-width: 1024px) {
    .sticky-buttons {
        max-width: 400px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 25px 25px 0 0;
        border: 2px solid rgba(255, 215, 0, 0.2);
        border-bottom: none;
    }
    
    .sticky-btn {
        border-radius: 25px 25px 0 0;
    }
    
    .sticky-btn:first-child {
        border-top-left-radius: 25px;
        border-bottom-left-radius: 0;
    }
    
    .sticky-btn:last-child {
        border-top-right-radius: 25px;
        border-bottom-right-radius: 0;
    }
    
    body {
        padding-bottom: 90px;
    }
}

/* Hide on very small screens if needed */
@media (max-width: 320px) {
    .sticky-btn {
        padding: 0.5rem 0.1rem;
        font-size: 0.7rem;
    }
    
    .sticky-btn-icon {
        width: 28px;
        height: 28px;
    }
    
    .sticky-btn-icon i {
        font-size: 0.875rem;
    }
}

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

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.login-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.login-card {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.3);
}

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

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.3));
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(255, 215, 0, 0.4));
}

/* Header */
.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

/* Error Message */
.error-message {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    animation: shakeError 0.3s ease-in-out;
}

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

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

.error-text {
    color: #dc3545;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

.input-icon {
    position: absolute;
    left: 1rem;
    z-index: 3;
    color: #ffd700;
    font-size: 1.125rem;
}

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

.form-input::placeholder {
    color: #999999;
}

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

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

.form-input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: rgba(220, 53, 69, 0.5);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #ffd700;
    font-size: 1.125rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: all 0.3s ease;
    z-index: 3;
}

.password-toggle:hover {
    color: #ffed4e;
    transform: scale(1.1);
}

.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    font-weight: 500;
    min-height: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.field-error.show {
    opacity: 1;
}

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

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-input {
    display: none;
}

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

.checkbox-input:checked + .checkbox-custom {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #ffd700;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-weight: bold;
    font-size: 0.8rem;
}

.checkbox-label {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-link {
    color: #ffd700;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    color: #ffed4e;
    text-decoration: underline;
}

/* Buttons */
.submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border: none;
    border-radius: 15px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    overflow: hidden;
}

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

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

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

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

.btn-loader {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.submit-btn.loading .btn-loader {
    opacity: 1;
}

.divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

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

.divider-text {
    background: rgba(26, 26, 26, 0.95);
    padding: 0 1rem;
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

/* Footer */
.login-footer {
    margin-top: 2rem;
    text-align: center;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #999999;
    font-size: 0.85rem;
}

.security-info i {
    color: #28a745;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        padding: 0 0.75rem;
    }
    
    .login-card {
        padding: 2rem 1.5rem;
    }
    
    .login-title {
        font-size: 1.75rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 1rem 0;
    }
    
    .login-container {
        padding: 0 0.5rem;
    }
    
    .login-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

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

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.register-container {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.register-card {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.register-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.3);
}

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

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.3));
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(255, 215, 0, 0.4));
}

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

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

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

/* Success Message */
.success-message {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    animation: slideInSuccess 0.5s ease-in-out;
}

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

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

.success-text {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* Error Message */
.error-message {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    animation: shakeError 0.3s ease-in-out;
}

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

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

.error-text {
    color: #dc3545;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

.input-icon {
    position: absolute;
    left: 1rem;
    z-index: 3;
    color: #ffd700;
    font-size: 1.125rem;
}

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

.form-input::placeholder {
    color: #999999;
}

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

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

.form-input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: rgba(220, 53, 69, 0.5);
}

.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    font-weight: 500;
    min-height: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.field-error.show {
    opacity: 1;
}

/* Terms */
.terms-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
}

.checkbox-input {
    display: none;
}

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

.checkbox-input:checked + .checkbox-custom {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #ffd700;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-weight: bold;
    font-size: 0.8rem;
}

.checkbox-label {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.terms-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.terms-link:hover {
    color: #ffed4e;
    text-decoration: underline;
}

/* Buttons */
.submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border: none;
    border-radius: 15px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    overflow: hidden;
}

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

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

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

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

.btn-loader {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.submit-btn.loading .btn-loader {
    opacity: 1;
}

.divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

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

.divider-text {
    background: rgba(26, 26, 26, 0.95);
    padding: 0 1rem;
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 15px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

/* Footer */
.register-footer {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #999999;
    font-size: 0.85rem;
}

.security-info i {
    color: #28a745;
    font-size: 1rem;
}

.benefits-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.85rem;
    font-weight: 500;
}

.benefit-item i {
    color: #ffd700;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-container {
        padding: 0 0.75rem;
    }
    
    .register-card {
        padding: 2rem 1.5rem;
    }
    
    .register-title {
        font-size: 1.75rem;
    }
    
    .benefits-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .benefit-item {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 1rem 0;
    }
    
    .register-container {
        padding: 0 0.5rem;
    }
    
    .register-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .register-title {
        font-size: 1.5rem;
    }
    
    .register-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
    
    .benefits-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .benefit-item {
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: heroGlow 4s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes heroGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

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

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 30%, #ffd700 60%, #ffed4e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
    margin-bottom: 0;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: badgeFloat 3s ease-in-out infinite;
}

.hero-badge:nth-child(1) { animation-delay: 0s; }
.hero-badge:nth-child(2) { animation-delay: 1s; }
.hero-badge:nth-child(3) { animation-delay: 2s; }

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

.hero-badge:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero-badge i {
    color: #ffd700;
    font-size: 1.25rem;
}

.hero-badge span {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    animation: ctaPulse 2s infinite;
    position: relative;
    overflow: hidden;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
        transform: scale(1.02);
    }
}

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

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

.hero-cta:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    color: #000000;
}

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

/* Promotion Section */
.promotion-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

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

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

.promotion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    z-index: 1;
}

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

.promotion-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.promotion-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.promotion-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: highlightBounce 2s ease-in-out infinite;
}

.bonus-highlight {
    background: linear-gradient(135deg, #28a745 0%, #34d058 100%);
    color: #ffffff;
}

.vip-highlight {
    background: linear-gradient(135deg, #6f42c1 0%, #8a63d2 100%);
    color: #ffffff;
}

.referral-highlight {
    background: linear-gradient(135deg, #007bff 0%, #409cff 100%);
    color: #ffffff;
}

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

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

.promotion-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.promotion-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-item:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.special-feature {
    border: 2px solid rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.08);
    position: relative;
}

.special-feature::after {
    content: 'พิเศษ!';
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    animation: specialBadge 1.5s ease-in-out infinite;
}

@keyframes specialBadge {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.05); }
}

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

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.feature-icon i {
    font-size: 1.75rem;
    color: #000000;
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: 'Prompt', sans-serif;
}

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

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #000000;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .promotion-container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .promotion-title {
        font-size: 2.25rem;
    }
    
    .promotion-features {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .hero-badges {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section,
    .promotion-section {
        padding: 3rem 0;
    }
    
    .hero-container,
    .promotion-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .promotion-title {
        font-size: 1.875rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-cta {
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
    }
    
    .promotion-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .promotion-section {
        padding: 2rem 0;
    }
    
    .hero-container,
    .promotion-container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .promotion-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-badge i {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .hero-cta i {
        font-size: 1.25rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .feature-icon {
        align-self: center;
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.25rem;
    }
    
    .feature-text h3 {
        font-size: 1.125rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    .promotion-highlight {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .special-feature::after {
        top: -5px;
        right: -5px;
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
}