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

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

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

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

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

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

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
}

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

.btn-secondary:hover {
    background: #ffd700;
    color: #000;
}

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

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

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

.highlight-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.highlight-item span {
    font-size: 0.95rem;
    color: #ffffff;
}

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

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

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

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

.hero-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

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

/* Tablet Styles */
@media (max-width: 768px) {
    .hero-container {
        padding: 40px 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        justify-content: center;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .hero-container {
        padding: 30px 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .highlight-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .highlight-item span {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        top: -10px;
        right: -10px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 15px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

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

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

.logo-link i {
    font-size: 2rem;
    color: #ffd700;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

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

.logo-text {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-item {
    position: relative;
}

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

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

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

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

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

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

.mobile-menu-toggle:hover .hamburger-line {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
}

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

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

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

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

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

.mobile-menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    overflow-y: auto;
}

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

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

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

.mobile-logo i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.mobile-menu-close:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    transform: scale(1.1);
}

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

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    padding: 30px 0;
}

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

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:last-child {
    border-bottom: none;
    margin-top: 20px;
}

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

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

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

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

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

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

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.mobile-cta-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.mobile-cta-btn i {
    font-size: 1.2rem;
    color: #000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: 65px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .desktop-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-link {
        font-size: 1.3rem;
    }
    
    .logo-link i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
        height: 60px;
    }
    
    .logo-link {
        font-size: 1.2rem;
    }
    
    .logo-link i {
        font-size: 1.6rem;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-logo {
        font-size: 1.2rem;
    }
    
    .mobile-logo i {
        font-size: 1.6rem;
    }
    
    .mobile-nav-link {
        padding: 18px 15px;
        font-size: 1rem;
    }
    
    .mobile-cta-item {
        padding: 0 15px;
    }
    
    .mobile-cta-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

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

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

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

.world-lotto-intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.world-lotto-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 30%, rgba(255, 69, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

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

.intro-text {
    padding-right: 20px;
}

.intro-paragraph {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.intro-paragraph:last-child {
    margin-bottom: 0;
}

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

.intro-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: floatAnimation 3s ease-in-out infinite;
}

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

.intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.payout-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

.payout-badge i {
    font-size: 1.5rem;
    color: #000;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

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

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

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

.feature-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

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

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

/* Tablet Styles */
@media (max-width: 768px) {
    .world-lotto-intro-section {
        padding: 60px 0;
    }
    
    .world-lotto-intro-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .intro-text {
        padding-right: 0;
    }
    
    .intro-paragraph {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .intro-image {
        height: 250px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-card i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .world-lotto-intro-section {
        padding: 40px 0;
    }
    
    .world-lotto-intro-container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .intro-content {
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .intro-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 18px;
        text-align: left;
    }
    
    .intro-image {
        height: 220px;
    }
    
    .payout-badge {
        top: 15px;
        right: 15px;
        padding: 12px 15px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card i {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

.login-access-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.login-access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.access-text {
    padding-right: 20px;
}

.access-paragraph {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.access-paragraph:last-child {
    margin-bottom: 0;
}

.access-paragraph strong {
    color: #ffd700;
    font-weight: 700;
}

.inline-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #ff6b35;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

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

.access-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.access-card::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.5s ease;
}

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

.access-card:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

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

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

.access-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

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

.login-steps {
    margin-bottom: 60px;
}

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

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

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1);
}

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

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

.access-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.access-img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.security-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 255, 0, 0.9);
    color: #000;
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    animation: pulse 2s infinite;
}

.security-badge i {
    color: #000;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .login-access-section {
        padding: 60px 0;
    }
    
    .login-access-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.9rem;
        line-height: 1.4;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .access-text {
        padding-right: 0;
    }
    
    .access-paragraph {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .access-features {
        gap: 15px;
    }
    
    .access-card {
        padding: 20px 15px;
    }
    
    .access-card i {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .access-card h3 {
        font-size: 1.1rem;
    }
    
    .access-card p {
        font-size: 0.9rem;
    }
    
    .steps-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .step-item {
        padding: 25px 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .login-access-section {
        padding: 40px 0;
    }
    
    .login-access-container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .access-content {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .access-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    
    .access-card {
        padding: 18px 12px;
    }
    
    .access-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .access-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .access-card p {
        font-size: 0.85rem;
    }
    
    .steps-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step-item {
        padding: 20px 12px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .step-content h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .security-badge {
        bottom: 15px;
        left: 15px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

.lottery-types-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.lottery-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 69, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.lottery-text {
    padding-right: 20px;
}

.lottery-paragraph {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.lottery-paragraph:last-child {
    margin-bottom: 0;
}

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

.inline-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #ff6b35;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
    transform: translateY(-1px);
}

.lottery-image {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

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

.lottery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.lottery-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    animation: glow 2s infinite;
}

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

.lottery-badge i {
    font-size: 1.2rem;
    color: #000;
}

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

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

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.3);
}

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

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

.category-icon i {
    font-size: 2.5rem;
    color: #000;
}

.category-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.category-card p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.category-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ffd700;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.feature-tag i {
    font-size: 0.75rem;
}

.lottery-stats {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

.stat-content {
    flex: 1;
}

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

.stat-label {
    font-size: 0.95rem;
    color: #e0e0e0;
    font-weight: 600;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .lottery-types-section {
        padding: 60px 0;
    }
    
    .lottery-types-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .lottery-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .lottery-text {
        padding-right: 0;
    }
    
    .lottery-paragraph {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .lottery-image {
        height: 280px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .lottery-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .category-card {
        padding: 25px 15px;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .category-icon i {
        font-size: 2.2rem;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .category-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .lottery-stats {
        padding: 40px 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-box {
        gap: 15px;
        padding: 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .lottery-types-section {
        padding: 40px 0;
    }
    
    .lottery-types-container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .lottery-content {
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .lottery-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    
    .lottery-image {
        height: 250px;
    }
    
    .lottery-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .lottery-categories {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .category-card {
        padding: 20px 12px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .category-icon i {
        font-size: 2rem;
    }
    
    .category-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .category-card p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .category-features {
        gap: 8px;
    }
    
    .feature-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .lottery-stats {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-box {
        gap: 12px;
        padding: 12px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon i {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

.betting-system-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.betting-system-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

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

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

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.system-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
    margin-bottom: 80px;
}

.system-text {
    padding-right: 20px;
}

.system-paragraph {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.system-paragraph:last-child {
    margin-bottom: 0;
}

.system-paragraph strong {
    color: #ffd700;
    font-weight: 700;
}

.system-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-box:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
}

.feature-box i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.feature-box:hover i {
    transform: scale(1.15) rotate(10deg);
}

.feature-box h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feature-box p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.betting-options {
    margin-bottom: 80px;
}

.options-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.option-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 69, 0, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.option-card:hover::after {
    opacity: 1;
}

.option-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.4);
}

.option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.option-card:hover .option-icon {
    transform: scale(1.15) rotate(15deg);
}

.option-icon i {
    font-size: 2rem;
    color: #000;
}

.option-card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.option-card p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.option-payout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.payout-label {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 600;
}

.payout-value {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.system-image {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    animation: systemFloat 5s ease-in-out infinite;
}

@keyframes systemFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

.system-img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.payout-guarantee {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, #00ff00, #32cd32);
    color: #000;
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.4);
    animation: guaranteePulse 3s infinite;
}

@keyframes guaranteePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 255, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 255, 0, 0.6);
    }
}

.payout-guarantee i {
    font-size: 1.5rem;
    color: #000;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.guarantee-text {
    font-size: 1rem;
    line-height: 1;
}

.guarantee-percent {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .betting-system-section {
        padding: 60px 0;
    }
    
    .betting-system-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .system-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .system-text {
        padding-right: 0;
    }
    
    .system-paragraph {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .system-features {
        gap: 20px;
    }
    
    .feature-box {
        padding: 20px 15px;
    }
    
    .feature-box i {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .feature-box h3 {
        font-size: 1.2rem;
    }
    
    .feature-box p {
        font-size: 0.95rem;
    }
    
    .options-title {
        font-size: 1.9rem;
        margin-bottom: 35px;
    }
    
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .option-card {
        padding: 25px 15px;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .option-icon i {
        font-size: 1.8rem;
    }
    
    .option-card h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .option-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .option-payout {
        padding: 10px 12px;
    }
    
    .payout-value {
        font-size: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .betting-system-section {
        padding: 40px 0;
    }
    
    .betting-system-container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .system-content {
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .system-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    
    .system-features {
        gap: 15px;
    }
    
    .feature-box {
        padding: 18px 12px;
    }
    
    .feature-box i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .feature-box h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .feature-box p {
        font-size: 0.9rem;
    }
    
    .options-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .option-card {
        padding: 20px 12px;
    }
    
    .option-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .option-icon i {
        font-size: 1.6rem;
    }
    
    .option-card h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .option-card p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .option-payout {
        padding: 8px 10px;
    }
    
    .payout-label {
        font-size: 0.85rem;
    }
    
    .payout-value {
        font-size: 0.95rem;
    }
    
    .payout-guarantee {
        top: 20px;
        left: 20px;
        padding: 12px 15px;
    }
    
    .payout-guarantee i {
        font-size: 1.3rem;
    }
    
    .guarantee-text {
        font-size: 0.9rem;
    }
    
    .guarantee-percent {
        font-size: 1.5rem;
    }
}

.promotions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

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

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

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.promotions-text {
    padding-right: 20px;
}

.promotions-paragraph {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.promotions-paragraph:last-child {
    margin-bottom: 0;
}

.promotions-paragraph strong {
    color: #ffd700;
    font-weight: 700;
}

.inline-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #ff6b35;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
    transform: translateY(-1px);
}

.promotions-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: promoFloat 4s ease-in-out infinite;
}

@keyframes promoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

.promotions-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.bonus-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #000;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    animation: bonusPulse 2.5s infinite;
}

@keyframes bonusPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
    }
}

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

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

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

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.promotion-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.4);
}

.promotion-card.new-member:hover {
    box-shadow: 0 25px 50px rgba(0, 255, 127, 0.25);
    border-color: rgba(0, 255, 127, 0.4);
}

.promotion-card.birthday:hover {
    box-shadow: 0 25px 50px rgba(255, 20, 147, 0.25);
    border-color: rgba(255, 20, 147, 0.4);
}

.promotion-card.monthly:hover {
    box-shadow: 0 25px 50px rgba(30, 144, 255, 0.25);
    border-color: rgba(30, 144, 255, 0.4);
}

.promotion-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.promotion-card.new-member .promotion-icon {
    background: linear-gradient(135deg, #00ff7f, #32cd32);
}

.promotion-card.birthday .promotion-icon {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
}

.promotion-card.monthly .promotion-icon {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
}

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

.promotion-icon i {
    font-size: 2.5rem;
    color: #000;
}

.promotion-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.promotion-card p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.promotion-value {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.promotion-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.promotion-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ff6b35, #ffd700);
}

.benefits-list {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

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

.benefit-item i {
    font-size: 1.5rem;
    color: #ffd700;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .promotions-section {
        padding: 60px 0;
    }
    
    .promotions-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .promotions-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .promotions-text {
        padding-right: 0;
    }
    
    .promotions-paragraph {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .promotions-image {
        height: 250px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .promotion-card {
        padding: 25px 15px;
    }
    
    .promotion-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .promotion-icon i {
        font-size: 2.2rem;
    }
    
    .promotion-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .promotion-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .promotion-value {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .promotion-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
    
    .benefits-list {
        padding: 40px 30px;
    }
    
    .benefits-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-item i {
        font-size: 1.3rem;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .promotions-section {
        padding: 40px 0;
    }
    
    .promotions-container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .promotions-content {
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .promotions-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    
    .promotions-image {
        height: 220px;
    }
    
    .bonus-badge {
        top: 15px;
        left: 15px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .promotion-card {
        padding: 20px 15px;
    }
    
    .promotion-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .promotion-icon i {
        font-size: 2rem;
    }
    
    .promotion-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .promotion-card p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .promotion-value {
        font-size: 0.95rem;
        padding: 8px 12px;
        margin-bottom: 12px;
    }
    
    .promotion-btn {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
    
    .benefits-list {
        padding: 30px 20px;
    }
    
    .benefits-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .benefits-grid {
        gap: 15px;
    }
    
    .benefit-item {
        padding: 12px;
        gap: 12px;
    }
    
    .benefit-item i {
        font-size: 1.2rem;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
}

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

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

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

/* Footer Brand Section */
.footer-brand {
    padding-right: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-link i {
    color: #ffd700;
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

/* Footer Features */
.footer-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.feature-badge:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-badge i {
    font-size: 1.8rem;
    color: #ffd700;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.2;
}

.feature-subtitle {
    font-size: 0.85rem;
    color: #cccccc;
    line-height: 1.2;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 40px;
}

.footer-copyright {
    flex: 1;
}

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

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

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

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

.payment-methods {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

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

.payment-method:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.3);
}

.payment-method i {
    font-size: 1.5rem;
    color: #ffd700;
}

.payment-method span {
    font-size: 0.8rem;
    color: #cccccc;
    text-align: center;
    white-space: nowrap;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-contact {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .footer-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 25px 20px;
    }
    
    .feature-badge {
        padding: 12px;
    }
    
    .feature-badge i {
        font-size: 1.6rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-payment {
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
        gap: 15px;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-container {
        padding: 0 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-logo i {
        font-size: 2rem;
    }
    
    .footer-logo-text {
        font-size: 1.6rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-features {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 15px;
    }
    
    .feature-badge {
        padding: 10px;
        justify-content: center;
    }
    
    .feature-badge i {
        font-size: 1.4rem;
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    .feature-subtitle {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding: 25px 0;
        gap: 20px;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
    
    .footer-disclaimer {
        font-size: 0.8rem;
    }
    
    .payment-title {
        font-size: 0.95rem;
    }
    
    .payment-methods {
        gap: 10px;
    }
    
    .payment-method {
        padding: 8px;
    }
    
    .payment-method i {
        font-size: 1.3rem;
    }
    
    .payment-method span {
        font-size: 0.75rem;
    }
}

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

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

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

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

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

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

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

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

.sticky-btn-text {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

/* Individual Button Styles */
.sticky-login {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

.sticky-login:hover {
    background: linear-gradient(135deg, #357abd, #4a90e2);
    color: #ffffff;
}

.sticky-login i {
    color: #ffffff;
}

.sticky-register {
    background: linear-gradient(135deg, #50c878, #32a852);
}

.sticky-register:hover {
    background: linear-gradient(135deg, #32a852, #50c878);
    color: #ffffff;
}

.sticky-register i {
    color: #ffffff;
}

.sticky-credit {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    animation: creditPulse 2s infinite;
}

.sticky-credit:hover {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.sticky-credit i {
    color: #000;
}

.sticky-credit .sticky-btn-text {
    color: #000;
    font-weight: 700;
}

@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);
    }
}

/* Tablet Styles */
@media (max-width: 768px) {
    .sticky-buttons {
        background: rgba(15, 15, 35, 0.98);
    }
    
    .sticky-btn {
        padding: 10px 6px;
        font-size: 0.8rem;
        min-height: 55px;
    }
    
    .sticky-btn i {
        font-size: 1.3rem;
        margin-bottom: 3px;
    }
    
    .sticky-btn-text {
        font-size: 0.75rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .sticky-buttons {
        background: rgba(15, 15, 35, 1);
    }
    
    .sticky-btn {
        padding: 8px 4px;
        font-size: 0.75rem;
        min-height: 50px;
        gap: 2px;
    }
    
    .sticky-btn i {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }
    
    .sticky-btn-text {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .sticky-credit {
        position: relative;
    }
    
    .sticky-credit::after {
        content: 'HOT';
        position: absolute;
        top: 2px;
        right: 2px;
        background: #ff0000;
        color: #ffffff;
        font-size: 0.6rem;
        padding: 1px 4px;
        border-radius: 4px;
        font-weight: 700;
        animation: hotBlink 1s infinite;
    }
    
    @keyframes hotBlink {
        0%, 50% {
            opacity: 1;
        }
        51%, 100% {
            opacity: 0.7;
        }
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .sticky-btn {
        padding: 6px 2px;
        min-height: 45px;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
    }
    
    .sticky-btn-text {
        font-size: 0.65rem;
    }
}

/* Prevent body scroll when sticky buttons are present */
body {
    padding-bottom: 60px;
}

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

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

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

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

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

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

.login-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: loginCardFloat 6s ease-in-out infinite;
}

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

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

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
    }
}

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

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

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

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

/* Error Message */
.error-message {
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    display: none;
    animation: errorShake 0.5s ease-in-out;
}

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

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

/* Form Styles */
.login-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.form-label i {
    color: #ffd700;
    width: 16px;
    text-align: center;
}

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

.form-input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

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

.form-input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ff6b6b;
    background: rgba(255, 0, 0, 0.1);
}

.form-input:valid:not(:placeholder-shown) {
    border-color: #32cd32;
    background: rgba(0, 255, 0, 0.1);
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
}

.password-input {
    padding-right: 55px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #cccccc;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.password-toggle:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Field Error */
.field-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    animation: fieldErrorSlide 0.3s ease-out;
}

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

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

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-btn {
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.login-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.login-btn:active:not(:disabled) {
    transform: translateY(-1px);
}

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

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

.login-btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: loginSpin 1s linear infinite;
    display: none;
}

@keyframes loginSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

.register-btn {
    width: 100%;
    padding: 12px 25px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffd700;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

/* Security Badges */
.login-security {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #32cd32;
    font-size: 0.8rem;
    font-weight: 500;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .login-section {
        padding: 30px 15px;
    }
    
    .login-card {
        padding: 35px 25px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .login-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .login-security {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 20px 10px;
    }
    
    .login-container {
        max-width: 100%;
    }
    
    .login-card {
        padding: 25px 20px;
        margin: 0 5px;
    }
    
    .login-title {
        font-size: 1.4rem;
    }
    
    .login-subtitle {
        font-size: 0.85rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .password-input {
        padding-right: 45px;
    }
    
    .password-toggle {
        right: 10px;
        width: 30px;
        height: 30px;
    }
    
    .login-btn {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .register-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .security-badge {
        font-size: 0.75rem;
    }
}

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

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

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

.register-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: registerCardFloat 6s ease-in-out infinite;
}

@keyframes registerCardFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

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

.logo-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s ease;
    animation: logoRotate 8s linear infinite;
}

@keyframes logoRotate {
    0% {
        transform: rotate(0deg) scale(1);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: rotate(180deg) scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    }
    100% {
        transform: rotate(360deg) scale(1);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    }
}

.logo-image:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

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

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

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

/* Message Styles */
.error-message {
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    display: none;
    animation: messageShake 0.5s ease-in-out;
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    color: #4caf50;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    display: none;
    animation: messageSlide 0.5s ease-out;
}

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

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

.error-message.show,
.success-message.show {
    display: block;
}

/* Form Styles */
.register-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
}

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

.form-input {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.form-input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
    transform: translateY(-3px) scale(1.02);
}

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

.form-input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ff6b6b;
    background: rgba(255, 0, 0, 0.1);
    animation: invalidPulse 1s ease-in-out;
}

.form-input:valid:not(:placeholder-shown) {
    border-color: #32cd32;
    background: rgba(0, 255, 0, 0.1);
}

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

/* Field Error */
.field-error {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 8px;
    display: none;
    font-weight: 500;
    animation: fieldErrorBounce 0.4s ease-out;
}

@keyframes fieldErrorBounce {
    0% {
        opacity: 0;
        transform: translateY(-15px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(2px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.register-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-btn::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 ease;
}

.register-btn:hover:not(:disabled)::before {
    left: 100%;
}

.register-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.register-btn:active:not(:disabled) {
    transform: translateY(-2px) scale(1.01);
}

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

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

.register-btn-loader {
    width: 22px;
    height: 22px;
    border: 3px solid transparent;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: registerSpin 1s linear infinite;
    display: none;
}

@keyframes registerSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

.login-btn {
    width: 100%;
    padding: 15px 25px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffd700;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.login-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border-color: #ff6b35;
}

.login-btn i {
    transition: transform 0.3s ease;
}

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

/* Register Features */
.register-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.feature-item i {
    font-size: 1.5rem;
    color: #ffd700;
    transition: transform 0.3s ease;
}

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

.feature-item span {
    font-size: 0.8rem;
    color: #e0e0e0;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

/* Security Badges */
.register-security {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #32cd32;
    font-size: 0.85rem;
    font-weight: 500;
    animation: securityGlow 3s ease-in-out infinite;
}

@keyframes securityGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(50, 205, 50, 0.3);
    }
    50% {
        text-shadow: 0 0 10px rgba(50, 205, 50, 0.6);
    }
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .register-section {
        padding: 30px 15px;
    }
    
    .register-card {
        padding: 35px 25px;
    }
    
    .register-title {
        font-size: 1.7rem;
    }
    
    .register-subtitle {
        font-size: 0.95rem;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .form-input {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .login-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .register-features {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: center;
        padding: 10px 15px;
    }
    
    .register-security {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 20px 10px;
    }
    
    .register-container {
        max-width: 100%;
    }
    
    .register-card {
        padding: 25px 20px;
        margin: 0 5px;
    }
    
    .register-title {
        font-size: 1.5rem;
    }
    
    .register-subtitle {
        font-size: 0.9rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-input {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .register-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 8px 12px;
    }
    
    .feature-item span {
        font-size: 0.75rem;
    }
    
    .security-badge {
        font-size: 0.8rem;
    }
}

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

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

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

.hero-content {
    margin: 0 auto;
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    }
}

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

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 18px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: ctaBounce 2s ease-in-out infinite;
}

@keyframes ctaBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.hero-cta:hover {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    animation-play-state: paused;
}

.hero-cta i {
    font-size: 1.4rem;
    color: #000;
    animation: iconSpin 2s linear infinite;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Promotion Sections */
.promotion-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
}

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

.promotion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 69, 0, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.promotion-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 69, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.promotion-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

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

.promotion-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    transition: transform 0.4s ease;
    animation: iconFloat 4s ease-in-out infinite;
}

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

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

.promotion-icon i {
    font-size: 2.5rem;
    color: #000;
}

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

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

.promotion-features {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: translateX(10px);
    border-radius: 10px;
    padding: 15px 20px;
}

.feature-item i {
    color: #32cd32;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
    animation: checkPulse 2s ease-in-out infinite;
}

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

.feature-item:hover i {
    animation-play-state: paused;
    transform: scale(1.2);
}

.feature-item {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    font-weight: 500;
}

.promotion-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.promotion-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    animation: valueShine 3s linear infinite;
}

@keyframes valueShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.value-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 600;
}

.value-amount {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.value-percentage {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.2);
    padding: 5px 15px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.value-note {
    font-size: 1rem;
    color: #32cd32;
    font-weight: 600;
    background: rgba(50, 205, 50, 0.2);
    padding: 5px 12px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.promotion-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 20px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.promotion-cta:hover {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
}

.promotion-cta i {
    font-size: 1.3rem;
    color: #000;
    transition: transform 0.3s ease;
}

.promotion-cta:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
    
    .promotion-section {
        padding: 60px 0;
    }
    
    .promotion-container {
        padding: 0 15px;
    }
    
    .promotion-card {
        padding: 35px 25px;
    }
    
    .promotion-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .promotion-icon {
        width: 70px;
        height: 70px;
    }
    
    .promotion-icon i {
        font-size: 2.2rem;
    }
    
    .promotion-title {
        font-size: 1.6rem;
    }
    
    .feature-item {
        gap: 12px;
        padding: 12px 0;
        margin-bottom: 15px;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .promotion-value {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .value-amount {
        font-size: 2rem;
    }
    
    .value-percentage {
        font-size: 1.5rem;
    }
    
    .promotion-cta {
        font-size: 1rem;
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-cta {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .promotion-section {
        padding: 40px 0;
    }
    
    .promotion-container {
        padding: 0 10px;
    }
    
    .promotion-card {
        padding: 25px 20px;
    }
    
    .promotion-header {
        margin-bottom: 25px;
    }
    
    .promotion-icon {
        width: 60px;
        height: 60px;
    }
    
    .promotion-icon i {
        font-size: 2rem;
    }
    
    .promotion-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    
    .feature-item {
        gap: 10px;
        padding: 10px 0;
        margin-bottom: 12px;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .promotion-value {
        padding: 15px;
        gap: 8px;
    }
    
    .value-label {
        font-size: 0.9rem;
    }
    
    .value-amount {
        font-size: 1.8rem;
    }
    
    .value-percentage {
        font-size: 1.3rem;
        padding: 4px 12px;
    }
    
    .value-note {
        font-size: 0.9rem;
        padding: 4px 10px;
    }
    
    .promotion-cta {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
    
    .promotion-cta i {
        font-size: 1.1rem;
    }
}