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

body {
    font-family: 'Sarabun', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

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

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

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

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

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #e0e0e0;
    font-weight: 400;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

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

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

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

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

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    border-radius: 25px;
    opacity: 0.2;
    z-index: -1;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        opacity: 0.2;
    }
    to {
        opacity: 0.4;
    }
}

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

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

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

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

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

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

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
}

.feature-text {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
}

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

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .feature-card {
        padding: 20px 16px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

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

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

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

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

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

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

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

@keyframes pulse-logo {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

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

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

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

.nav-item {
    position: relative;
}

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

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

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

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

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

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

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

/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.desktop-only {
    display: flex;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

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

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

.hamburger-line:not(:last-child) {
    margin-bottom: 4px;
}

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

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

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

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

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

.mobile-menu-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    height: 100%;
    width: 100%;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: relative;
}

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

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

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 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, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.mobile-menu-close:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

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

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

.mobile-nav-item {
    border-radius: 15px;
    overflow: hidden;
}

.mobile-nav-link,
.mobile-cta-button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

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

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

.mobile-nav-link:hover,
.mobile-cta-button:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    transform: translateX(8px);
}

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

.mobile-nav-link:hover i,
.mobile-cta-button:hover i {
    color: #ff6b35;
    transform: scale(1.2);
}

/* Mobile CTA Button */
.mobile-cta-item {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding-top: 20px;
}

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

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

.mobile-cta-button i {
    animation: sparkle 2s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 16px;
    }
    
    .nav-list {
        gap: 24px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 60px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-link i {
        font-size: 1.8rem;
    }
    
    body {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
    }
    
    .header-content {
        height: 55px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-link i {
        font-size: 1.6rem;
    }
    
    .mobile-menu-header {
        padding: 16px;
    }
    
    .mobile-logo {
        font-size: 1.2rem;
    }
    
    .mobile-logo i {
        font-size: 1.6rem;
    }
    
    .mobile-nav {
        padding: 16px;
    }
    
    .mobile-nav-link,
    .mobile-cta-button {
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    body {
        padding-top: 55px;
    }
}

/* Section 2: Lottery Introduction */
.lottery-intro-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lottery-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.lottery-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-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

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

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

.lottery-img {
    width: 100%;
    max-width: 380px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.intro-image::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    border-radius: 20px;
    opacity: 0.3;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 0.5;
    }
}

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

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.feature-content {
    flex: 1;
}

.feature-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

.additional-info {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.additional-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
    text-align: justify;
    position: relative;
    z-index: 1;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .lottery-intro-container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .lottery-intro-content {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .feature-grid {
        gap: 25px;
    }
    
    .feature-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .lottery-intro-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .lottery-intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .intro-text {
        order: 2;
    }
    
    .intro-image {
        order: 1;
    }
    
    .intro-paragraph {
        font-size: 1rem;
        text-align: left;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .additional-info {
        padding: 25px;
    }
    
    .info-text {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .lottery-intro-container {
        padding: 0 12px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .intro-paragraph {
        font-size: 0.95rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .feature-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .feature-heading {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .additional-info {
        padding: 20px;
    }
    
    .info-text {
        font-size: 0.95rem;
    }
}

/* Section 3: Trusted Platform */
.trusted-platform-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.trusted-platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 100%, rgba(247, 147, 30, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

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

.platform-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.platform-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
    text-align: justify;
}

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

.platform-paragraph a {
    color: #ff6b35;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.platform-paragraph a:hover {
    color: #f7931e;
}

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

.platform-img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

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

.platform-image::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 25px;
    opacity: 0.1;
    z-index: -1;
    animation: rotate 10s linear infinite;
}

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

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

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

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

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

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

.security-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.security-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    transition: transform 0.3s ease;
}

.security-card:hover .security-icon {
    transform: rotateY(360deg);
}

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

.security-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

.platform-standards {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.platform-standards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.standards-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 24px;
    text-align: justify;
    position: relative;
    z-index: 1;
}

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

.standards-paragraph strong {
    color: #ff6b35;
    font-weight: 700;
}

.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

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

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-section .btn {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    padding: 16px 32px;
}

.cta-section .btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b35;
    border-color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trusted-platform-container {
        padding: 0 16px;
    }
    
    .platform-content {
        grid-template-columns: 1fr 400px;
        gap: 50px;
    }
    
    .security-grid {
        gap: 25px;
    }
    
    .platform-standards {
        padding: 35px;
    }
    
    .cta-section {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .trusted-platform-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .platform-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .platform-text {
        order: 2;
    }
    
    .platform-image {
        order: 1;
    }
    
    .platform-paragraph {
        font-size: 1rem;
        text-align: left;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .security-card {
        padding: 30px 20px;
    }
    
    .platform-standards {
        padding: 30px;
    }
    
    .standards-paragraph {
        font-size: 1rem;
        text-align: left;
    }
    
    .cta-section {
        padding: 35px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .trusted-platform-container {
        padding: 0 12px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .platform-paragraph {
        font-size: 0.95rem;
    }
    
    .security-card {
        padding: 25px 15px;
    }
    
    .security-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .security-title {
        font-size: 1.2rem;
    }
    
    .security-description {
        font-size: 0.95rem;
    }
    
    .platform-standards {
        padding: 25px;
    }
    
    .standards-paragraph {
        font-size: 0.95rem;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

/* Section 4: Pros and Cons */
.pros-cons-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1e1e1e 50%, #0a0a0a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pros-cons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.06) 0%, transparent 70%),
                radial-gradient(circle at 0% 100%, rgba(247, 147, 30, 0.06) 0%, transparent 70%),
                radial-gradient(circle at 100% 100%, rgba(255, 204, 2, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

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

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

.pros-cons-img {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

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

.intro-image::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: conic-gradient(from 0deg, #ff6b35, #f7931e, #ffcc02, #ff6b35);
    border-radius: 25px;
    opacity: 0.2;
    z-index: -1;
    animation: rotate-slow 15s linear infinite;
}

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

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.pros-section,
.cons-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.pros-section::before,
.cons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.6s ease;
}

.pros-section::before {
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
}

.cons-section::before {
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.1), transparent);
}

.pros-section:hover::before,
.cons-section:hover::before {
    left: 100%;
}

.pros-section {
    border-color: rgba(34, 197, 94, 0.2);
}

.cons-section {
    border-color: rgba(239, 68, 68, 0.2);
}

.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.pros-section .section-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
}

.cons-section .section-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.pros-section .subsection-title {
    color: #22c55e;
}

.cons-section .subsection-title {
    color: #ef4444;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.advantage-item:hover {
    color: #ffffff;
}

.advantage-item i {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

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

.disadvantage-paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

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

.disadvantage-paragraph strong {
    color: #ef4444;
    font-weight: 700;
}

.disadvantage-paragraph a {
    color: #ff6b35;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.disadvantage-paragraph a:hover {
    color: #f7931e;
}

.call-to-action {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-wrapper {
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.call-to-action .btn {
    font-size: 1.1rem;
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pros-cons-container {
        padding: 0 16px;
    }
    
    .intro-content {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }
    
    .comparison-content {
        gap: 30px;
    }
    
    .pros-section,
    .cons-section {
        padding: 35px;
    }
    
    .call-to-action {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .pros-cons-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .intro-text {
        order: 2;
    }
    
    .intro-image {
        order: 1;
    }
    
    .intro-paragraph {
        font-size: 1rem;
        text-align: left;
    }
    
    .comparison-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pros-section,
    .cons-section {
        padding: 30px;
    }
    
    .subsection-title {
        font-size: 1.3rem;
    }
    
    .advantage-item {
        font-size: 0.95rem;
    }
    
    .disadvantage-paragraph {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .call-to-action {
        padding: 35px;
    }
    
    .cta-heading {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pros-cons-container {
        padding: 0 12px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .intro-paragraph {
        font-size: 0.95rem;
    }
    
    .pros-section,
    .cons-section {
        padding: 25px;
    }
    
    .section-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .subsection-title {
        font-size: 1.2rem;
    }
    
    .advantage-item {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .advantage-item i {
        font-size: 1rem;
        width: 18px;
    }
    
    .disadvantage-paragraph {
        font-size: 0.9rem;
    }
    
    .call-to-action {
        padding: 25px 20px;
    }
    
    .cta-heading {
        font-size: 1.4rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .call-to-action .btn {
        font-size: 1rem;
        padding: 14px 32px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Section 5: Lottery Strategies */
.strategies-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0a0a0a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.strategies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
                linear-gradient(45deg, transparent 30%, rgba(255, 204, 2, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

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

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

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

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

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

.intro-paragraph a {
    color: #ff6b35;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.intro-paragraph a:hover {
    color: #f7931e;
}

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

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

.strategies-img:hover {
    transform: scale(1.05) rotateY(5deg);
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: conic-gradient(from 45deg, #ff6b35, #f7931e, #ffcc02, #ff6b35);
    border-radius: 30px;
    opacity: 0.15;
    z-index: -1;
    animation: rotate-gradient 20s linear infinite;
}

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

.strategies-section-wrapper {
    margin-bottom: 60px;
}

.strategies-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

.strategy-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.strategy-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transition: transform 0.3s ease;
}

.strategy-card:hover .strategy-number {
    transform: rotate(360deg);
}

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

.strategy-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.strategy-description {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.5;
}

.strategy-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.strategy-card:hover .strategy-icon {
    color: rgba(255, 107, 53, 0.6);
    transform: scale(1.2) rotate(15deg);
}

.action-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

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

.action-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.action-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.action-section .btn {
    font-size: 1.1rem;
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .strategies-container {
        padding: 0 16px;
    }
    
    .strategies-intro {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .strategies-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .strategy-card {
        padding: 25px;
    }
    
    .action-section {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .strategies-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .strategies-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .intro-content {
        order: 2;
    }
    
    .intro-image {
        order: 1;
    }
    
    .intro-paragraph {
        font-size: 1rem;
        text-align: left;
    }
    
    .strategies-heading {
        font-size: 1.7rem;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .strategy-icon {
        position: static;
        margin-top: 10px;
        font-size: 2rem;
    }
    
    .action-section {
        padding: 35px;
    }
    
    .action-title {
        font-size: 1.7rem;
    }
    
    .action-description {
        font-size: 1.1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-section .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .strategies-container {
        padding: 0 12px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .intro-paragraph {
        font-size: 0.95rem;
    }
    
    .strategies-heading {
        font-size: 1.5rem;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .strategy-card {
        padding: 20px 15px;
    }
    
    .strategy-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .strategy-title {
        font-size: 1.1rem;
    }
    
    .strategy-description {
        font-size: 0.95rem;
    }
    
    .strategy-icon {
        font-size: 1.8rem;
    }
    
    .action-section {
        padding: 25px 20px;
    }
    
    .action-title {
        font-size: 1.5rem;
    }
    
    .action-description {
        font-size: 1rem;
    }
    
    .action-section .btn {
        font-size: 1rem;
        padding: 14px 32px;
    }
}

/* Section 6: Modern Platform */
.modern-platform-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #16213e 30%, #1a1a2e 70%, #0a0a0a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.modern-platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, transparent 40%, rgba(255, 204, 2, 0.05) 60%, transparent 80%);
    pointer-events: none;
}

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

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

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

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

.modern-platform-img {
    width: 100%;
    max-width: 420px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 107, 53, 0.3);
}

.modern-platform-img:hover {
    transform: scale(1.05) rotateY(10deg);
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: conic-gradient(from 0deg, #ff6b35 0%, #f7931e 25%, #ffcc02 50%, #ff6b35 75%, #f7931e 100%);
    border-radius: 35px;
    opacity: 0.2;
    z-index: -1;
    animation: spin-glow 25s linear infinite;
}

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

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

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

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    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, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.feature-box:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
}

.feature-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-info {
    font-size: 1rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.lottery-options {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(247, 147, 30, 0.08) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.lottery-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.options-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

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

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

.options-paragraph strong {
    color: #ff6b35;
    font-weight: 700;
}

.options-paragraph a {
    color: #ff6b35;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.options-paragraph a:hover {
    color: #f7931e;
}

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

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

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

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

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

.comparison-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.comparison-rate {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.comparison-details {
    position: relative;
    z-index: 1;
}

.comparison-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.comparison-desc {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
}

.platform-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.platform-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
    animation: shimmer-wave 4s ease-in-out infinite;
}

@keyframes shimmer-wave {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

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

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

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

.platform-cta .btn {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-cta .btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b35;
    border-color: rgba(255, 255, 255, 0.9);
}

.platform-cta .btn-primary:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.platform-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modern-platform-container {
        padding: 0 16px;
    }
    
    .platform-intro {
        grid-template-columns: 1fr 400px;
        gap: 50px;
    }
    
    .features-grid {
        gap: 25px;
    }
    
    .feature-box {
        padding: 30px;
    }
    
    .comparison-grid {
        gap: 20px;
    }
    
    .platform-cta {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .modern-platform-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .platform-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .intro-text {
        order: 2;
    }
    
    .intro-image {
        order: 1;
    }
    
    .intro-paragraph {
        font-size: 1rem;
        text-align: left;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-box {
        padding: 25px;
        text-align: center;
    }
    
    .lottery-options {
        padding: 35px;
    }
    
    .options-title {
        font-size: 1.6rem;
    }
    
    .options-paragraph {
        font-size: 1rem;
        text-align: left;
    }
    
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-cta {
        padding: 35px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modern-platform-container {
        padding: 0 12px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .intro-paragraph {
        font-size: 0.95rem;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .feature-name {
        font-size: 1.2rem;
    }
    
    .feature-info {
        font-size: 0.95rem;
    }
    
    .lottery-options {
        padding: 25px;
    }
    
    .options-title {
        font-size: 1.4rem;
    }
    
    .options-paragraph {
        font-size: 0.95rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-item {
        padding: 25px 20px;
    }
    
    .comparison-rate {
        font-size: 2.2rem;
    }
    
    .platform-cta {
        padding: 25px 20px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .platform-cta .btn {
        font-size: 1rem;
        padding: 14px 32px;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 0% 100%, rgba(247, 147, 30, 0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 100% 100%, rgba(255, 204, 2, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

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

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

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

/* Footer Brand */
.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, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    from {
        filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.3));
    }
    to {
        filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
    }
}

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

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 25px;
    text-align: justify;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #ff6b35;
}

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

/* Footer Titles */
.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

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

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

.footer-menu-item {
    transition: transform 0.3s ease;
}

.footer-menu-item:hover {
    transform: translateX(5px);
}

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

.footer-link::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.footer-link:hover::before {
    transform: scaleY(1);
}

.footer-link:hover {
    color: #ff6b35;
    padding-left: 8px;
}

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

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

/* Footer Features */
.footer-features {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.footer-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    animation: slide-shine 4s ease-in-out infinite;
}

@keyframes slide-shine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotateY(360deg);
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.highlight-desc {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    margin: 0 -20px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

.copyright-text,
.disclaimer-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.copyright-text i,
.disclaimer-text i {
    color: #ff6b35;
    font-size: 0.9rem;
}

/* Footer CTA */
.footer-cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

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

.footer-cta-button i {
    font-size: 1.1rem;
    animation: rocket-bounce 2s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        padding: 50px 16px 0;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 35px;
    }
    
    .footer-services {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-services .footer-title {
        grid-column: span 2;
    }
    
    .footer-services .footer-menu {
        grid-column: span 1;
    }
    
    .feature-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 16px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-services {
        display: block;
    }
    
    .footer-features {
        padding: 25px;
    }
    
    .feature-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-content {
        order: 2;
    }
    
    .footer-cta {
        order: 1;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 30px 12px 0;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-logo-text {
        font-size: 1.4rem;
    }
    
    .footer-logo i {
        font-size: 2rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .contact-item {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-features {
        padding: 20px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding: 20px;
    }
    
    .copyright-text,
    .disclaimer-text {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .footer-cta-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
}

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

.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 65px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

/* Login Button */
.sticky-btn-login {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(41, 128, 185, 0.2) 100%);
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.3);
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.3) 0%, rgba(41, 128, 185, 0.3) 100%);
    color: #5dade2;
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

/* Register Button */
.sticky-btn-register {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(39, 174, 96, 0.2) 100%);
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.3);
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.3) 0%, rgba(39, 174, 96, 0.3) 100%);
    color: #58d68d;
    border-color: rgba(46, 204, 113, 0.5);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.2);
}

/* Bonus Button */
.sticky-btn-bonus {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.2) 100%);
    color: #ff6b35;
    border-color: rgba(255, 107, 53, 0.3);
    position: relative;
}

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(247, 147, 30, 0.3) 100%);
    color: #ff8c5a;
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Bonus button special effect */
.sticky-btn-bonus::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

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

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

.sticky-btn:hover .sticky-btn-icon {
    transform: scale(1.1) rotateY(360deg);
}

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

/* Bonus icon special animation */
.sticky-btn-bonus .sticky-btn-icon i {
    animation: sparkle-icon 3s ease-in-out infinite;
}

@keyframes sparkle-icon {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .sticky-buttons-container {
        padding: 0 16px;
        gap: 10px;
    }
    
    .sticky-btn {
        padding: 10px 14px;
        min-height: 60px;
    }
    
    .sticky-btn-icon {
        width: 26px;
        height: 26px;
    }
    
    .sticky-btn-icon i {
        font-size: 1.2rem;
    }
    
    .sticky-btn-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .sticky-buttons {
        padding: 6px 0;
    }
    
    .sticky-buttons-container {
        gap: 8px;
    }
    
    .sticky-btn {
        padding: 8px 12px;
        min-height: 55px;
        border-radius: 12px;
    }
    
    .sticky-btn-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 3px;
    }
    
    .sticky-btn-icon i {
        font-size: 1.1rem;
    }
    
    .sticky-btn-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sticky-buttons-container {
        padding: 0 12px;
        gap: 6px;
    }
    
    .sticky-btn {
        padding: 6px 8px;
        min-height: 50px;
        border-radius: 10px;
    }
    
    .sticky-btn-icon {
        width: 22px;
        height: 22px;
    }
    
    .sticky-btn-icon i {
        font-size: 1rem;
    }
    
    .sticky-btn-text {
        font-size: 0.7rem;
        font-weight: 500;
    }
    
    .sticky-btn:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 360px) {
    .sticky-btn-text {
        font-size: 0.65rem;
    }
    
    .sticky-btn {
        min-height: 45px;
    }
    
    .sticky-btn-icon {
        width: 20px;
        height: 20px;
    }
    
    .sticky-btn-icon i {
        font-size: 0.9rem;
    }
}

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

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

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

/* Login Section */
.login-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0a0a0a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 40px;
    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, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, transparent 30%, rgba(255, 204, 2, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.login-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Login Card */
.login-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    justify-self: end;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    animation: card-shine 4s ease-in-out infinite;
}

@keyframes card-shine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

/* Login Header */
.login-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.login-logo {
    margin-bottom: 20px;
}

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

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

.login-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Error Message */
.error-message {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 25px;
    display: none;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.error-message.show {
    display: flex;
    animation: error-slide-in 0.3s ease-out;
}

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

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

.error-text {
    color: #ef4444;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Form Styles */
.login-form {
    position: relative;
    z-index: 1;
}

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

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

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

.input-wrapper {
    position: relative;
}

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

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

.form-input.error {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.05);
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1.1rem;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.3s ease;
    font-size: 1rem;
}

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

.password-toggle:focus {
    outline: none;
    color: #ff6b35;
}

/* Field Error */
.field-error {
    font-size: 0.85rem;
    color: #ef4444;
    margin-top: 6px;
    min-height: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.field-error:empty {
    display: none;
}

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 25px;
}

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

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

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

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

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

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

.loading-spinner {
    position: absolute;
    display: none;
}

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

.register-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: #ff6b35;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.register-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
    color: #f7931e;
}

/* Login Footer */
.login-footer {
    text-align: center;
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #888;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.security-notice i {
    color: #22c55e;
    font-size: 1rem;
}

/* Login Features */
.login-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 53, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotateY(360deg);
}

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

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.feature-description {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr 380px;
        gap: 50px;
        padding: 0 16px;
    }
    
    .login-card {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .login-section {
        padding: 60px 0 30px;
        min-height: calc(100vh - 60px);
    }
    
    .login-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .login-card {
        justify-self: center;
        max-width: 100%;
        padding: 30px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .login-subtitle {
        font-size: 1rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .feature-item {
        padding: 20px;
        gap: 16px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 0 12px;
    }
    
    .login-card {
        padding: 25px;
        border-radius: 20px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 14px 45px 14px 14px;
        font-size: 0.95rem;
    }
    
    .login-btn {
        padding: 14px;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .login-card {
        padding: 20px;
    }
    
    .login-title {
        font-size: 1.4rem;
    }
    
    .form-input {
        padding: 12px 40px 12px 12px;
    }
    
    .login-btn,
    .register-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}

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

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, transparent 40%, rgba(255, 204, 2, 0.03) 60%, transparent 80%);
    pointer-events: none;
}

.register-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

/* Register Card */
.register-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    position: sticky;
    top: 100px;
}

.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    animation: card-shine 5s ease-in-out infinite;
}

@keyframes card-shine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

/* Register Header */
.register-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.register-logo {
    margin-bottom: 20px;
}

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

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

.register-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Messages */
.error-message,
.success-message {
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 25px;
    display: none;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.error-message {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.success-message {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.error-message.show,
.success-message.show {
    display: flex;
    animation: message-slide-in 0.3s ease-out;
}

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

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

.success-message i {
    color: #22c55e;
    font-size: 1.1rem;
}

.error-text,
.success-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.error-text {
    color: #ef4444;
}

.success-text {
    color: #22c55e;
}

/* Form Styles */
.register-form {
    position: relative;
    z-index: 1;
}

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

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

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

.input-wrapper {
    position: relative;
}

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

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

.form-input.error {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.05);
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.05);
}

.form-input.success:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.form-input:focus + .input-icon {
    color: #ff6b35;
}

.form-input.success + .input-icon {
    color: #22c55e;
}

/* Field Error */
.field-error {
    font-size: 0.85rem;
    color: #ef4444;
    margin-top: 6px;
    min-height: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.field-error:empty {
    display: none;
}

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.register-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

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

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

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

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

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

.loading-spinner {
    position: absolute;
    display: none;
}

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

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

.login-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
    color: #f7931e;
}

/* Register Footer */
.register-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.security-notice,
.privacy-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #888;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    line-height: 1.4;
}

.security-notice i {
    color: #22c55e;
    font-size: 1rem;
    flex-shrink: 0;
}

.privacy-notice i {
    color: #3b82f6;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Register Benefits */
.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 10px;
}

.benefits-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.benefit-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 53, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotateY(360deg);
}

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

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.benefit-description {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .register-container {
        grid-template-columns: 450px 1fr;
        gap: 50px;
        padding: 0 16px;
    }
    
    .register-card {
        padding: 35px;
    }
    
    .benefit-item {
        padding: 20px;
        gap: 16px;
    }
    
    .benefit-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .register-section {
        padding: 60px 0 30px;
        min-height: calc(100vh - 60px);
    }
    
    .register-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .register-card {
        position: static;
        max-width: 100%;
        padding: 30px;
        order: 1;
    }
    
    .register-benefits {
        order: 2;
    }
    
    .register-title {
        font-size: 1.8rem;
    }
    
    .register-subtitle {
        font-size: 1rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .benefits-title {
        font-size: 1.6rem;
    }
    
    .benefit-item {
        padding: 20px;
        gap: 16px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .register-container {
        padding: 0 12px;
    }
    
    .register-card {
        padding: 25px;
        border-radius: 20px;
    }
    
    .register-title {
        font-size: 1.6rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 14px 45px 14px 14px;
        font-size: 0.95rem;
    }
    
    .register-btn {
        padding: 14px;
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .security-notice,
    .privacy-notice {
        font-size: 0.8rem;
        padding: 10px;
        flex-direction: column;
        gap: 6px;
    }
    
    .benefits-title {
        font-size: 1.4rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .register-card {
        padding: 20px;
    }
    
    .register-title {
        font-size: 1.4rem;
    }
    
    .form-input {
        padding: 12px 40px 12px 12px;
    }
    
    .register-btn,
    .login-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .security-notice,
    .privacy-notice {
        font-size: 0.75rem;
    }
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 204, 2, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
    max-width: 1000px;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    border-radius: 2px;
    opacity: 0.7;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-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.3s ease;
}

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

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

.hero-btn i {
    font-size: 1.6rem;
    animation: gift-bounce 2s ease-in-out infinite;
}

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

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

.promotion-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.promotion-section.promotion-alt {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
}

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

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

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

.promotion-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.promotion-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
}

.promotion-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
}

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

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin: 0;
}

.promotion-cta {
    display: flex;
    justify-content: center;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .promotion-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-btn {
        padding: 18px 35px;
        font-size: 1.3rem;
    }
    
    .promotion-title {
        font-size: 2.2rem;
    }
    
    .promotion-features {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .feature-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .promotion-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title::after {
        width: 150px;
        height: 3px;
    }
    
    .hero-btn {
        padding: 16px 30px;
        font-size: 1.2rem;
    }
    
    .promotion-header {
        margin-bottom: 50px;
    }
    
    .promotion-title {
        font-size: 1.8rem;
    }
    
    .promotion-title::after {
        width: 60px;
    }
    
    .promotion-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
        gap: 16px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .promotion-container {
        padding: 0 12px;
    }
    
    .hero-section {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-title::after {
        width: 120px;
        height: 2px;
    }
    
    .hero-btn {
        padding: 14px 25px;
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .hero-btn i {
        font-size: 1.3rem;
    }
    
    .promotion-section {
        padding: 50px 0;
    }
    
    .promotion-header {
        margin-bottom: 40px;
    }
    
    .promotion-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .promotion-content {
        gap: 40px;
    }
    
    .feature-item {
        padding: 18px;
        gap: 14px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        align-self: center;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        gap: 8px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-button i {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .promotion-title {
        font-size: 1.3rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}