/* 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;
    overflow-x: hidden;
}

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

p {
    font-weight: 400;
    margin-bottom: 1rem;
}

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

a:hover {
    color: #ffed4a;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding: 60px 0;
    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"><circle cx="25" cy="25" r="2" fill="%23ffd700" opacity="0.3"/><circle cx="75" cy="75" r="1.5" fill="%23ffd700" opacity="0.2"/><circle cx="50" cy="10" r="1" fill="%23ffd700" opacity="0.4"/><circle cx="10" cy="90" r="1.5" fill="%23ffd700" opacity="0.25"/><circle cx="90" cy="40" r="2" fill="%23ffd700" opacity="0.3"/></svg>') repeat;
    pointer-events: none;
}

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

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 2.5rem;
}

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

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

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

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

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

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

.btn-secondary:hover {
    background: #ffd700;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

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

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

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

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

.feature-item span {
    color: #e0e0e0;
    font-weight: 500;
}

.hero-image {
    position: relative;
    padding-left: 20px;
}

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

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

.hero-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.promo-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-image {
        padding-left: 0;
        order: -1;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .promo-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 16px;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 10px 14px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

@media (min-width: 1281px) {
    .hero-container {
        padding: 0 40px;
    }
}

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

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

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

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

.logo-link {
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #1a1a2e;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

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

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

.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;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    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 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    width: 300px;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
}

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

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

.mobile-logo {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

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

.mobile-menu-close:hover {
    transform: rotate(90deg);
    color: #ffed4a;
}

.mobile-nav {
    flex: 1;
    padding: 20px 0;
}

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

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

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

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

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #1a1a2e;
}

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

/* Desktop Only Class */
.desktop-only {
    display: flex;
}

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

@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }
    
    .header-content {
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-menu {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .mobile-menu {
        width: 260px;
    }
    
    .mobile-nav-link {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .mobile-cta-button {
        margin: 16px;
        padding: 12px;
        font-size: 0.95rem;
    }
}

@media (min-width: 1281px) {
    .header-container {
        padding: 0 40px;
    }
}

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

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

/* About Section */
.about-section {
    background: #111111;
    padding: 80px 0;
    position: relative;
}

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

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

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

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

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.about-text p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.text-link:hover {
    color: #ffed4a;
}

.about-image {
    position: relative;
    padding-left: 20px;
}

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

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

.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.stat-label {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 500;
}

.about-footer {
    background: rgba(26, 26, 46, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
}

.about-footer p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-footer p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-body {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 16px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-header {
        margin-bottom: 40px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-image {
        padding-left: 0;
        order: -1;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-stats {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .about-footer {
        padding: 30px 20px;
    }
    
    .about-footer p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.6rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        padding: 10px;
        background: rgba(255, 215, 0, 0.05);
        border-radius: 10px;
    }
    
    .about-footer {
        padding: 20px 16px;
    }
    
    .about-footer p {
        font-size: 0.9rem;
    }
}

@media (min-width: 1281px) {
    .about-container {
        padding: 0 40px;
    }
}

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

.access-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

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

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

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

.access-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.access-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.access-text p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.feature-content h3 {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 8px;
    font-weight: 700;
}

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

.access-image {
    position: relative;
    padding-left: 20px;
}

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

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

.access-overlay {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 3;
}

.access-badge {
    background: linear-gradient(135deg, #00c851 0%, #00a84c 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
    }
    to {
        box-shadow: 0 6px 20px rgba(0, 200, 81, 0.5);
    }
}

.access-footer {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(15px);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.footer-text p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 200px;
}

.footer-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
}

/* Responsive Design for Access Section */
@media (max-width: 1024px) {
    .access-body {
        grid-template-columns: 1fr 400px;
        gap: 40px;
    }
    
    .access-title {
        font-size: 2.2rem;
    }
    
    .access-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .access-container {
        padding: 0 16px;
    }
    
    .access-section {
        padding: 60px 0;
    }
    
    .access-header {
        margin-bottom: 40px;
    }
    
    .access-title {
        font-size: 1.8rem;
    }
    
    .access-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .access-image {
        padding-left: 0;
        order: -1;
    }
    
    .access-main {
        gap: 30px;
    }
    
    .access-text p {
        font-size: 1rem;
    }
    
    .access-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .access-footer {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-text p {
        font-size: 1rem;
    }
    
    .footer-actions {
        min-width: auto;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .access-title {
        font-size: 1.6rem;
    }
    
    .access-text p {
        font-size: 0.95rem;
    }
    
    .access-features {
        gap: 12px;
    }
    
    .feature-card {
        padding: 16px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 1.1rem;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .access-footer {
        padding: 20px 16px;
    }
    
    .footer-text p {
        font-size: 0.9rem;
    }
    
    .footer-actions {
        gap: 12px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (min-width: 1281px) {
    .access-container {
        padding: 0 40px;
    }
}

/* Steps Section */
.steps-section {
    background: #111111;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.02) 0%, transparent 100%),
                linear-gradient(-45deg, rgba(255, 215, 0, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

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

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

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

.steps-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.steps-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.steps-intro p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.guide-title {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 25px;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    gap: 20px;
    align-items: center;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

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

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 2px;
    height: 10px;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.3), transparent);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.step-content h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

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

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.step-item:hover .step-icon {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

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

.steps-image {
    position: relative;
    padding-left: 20px;
}

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

.steps-img:hover {
    transform: scale(1.02) rotate(1deg);
}

.steps-overlay {
    position: absolute;
    bottom: 20px;
    left: 40px;
    z-index: 3;
}

.login-badge {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.steps-footer {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(15px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3,
.footer-tips h3,
.footer-support h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-info p,
.footer-tips p,
.footer-support p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-actions .btn {
    min-width: 200px;
    justify-content: center;
}

/* Responsive Design for Steps Section */
@media (max-width: 1024px) {
    .steps-body {
        grid-template-columns: 1fr 400px;
        gap: 40px;
    }
    
    .steps-title {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-support {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .steps-container {
        padding: 0 16px;
    }
    
    .steps-section {
        padding: 60px 0;
    }
    
    .steps-header {
        margin-bottom: 40px;
    }
    
    .steps-title {
        font-size: 1.8rem;
    }
    
    .steps-body {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .steps-image {
        padding-left: 0;
        order: -1;
    }
    
    .steps-main {
        gap: 30px;
    }
    
    .steps-intro p {
        font-size: 1rem;
    }
    
    .guide-title {
        font-size: 1.2rem;
    }
    
    .step-item {
        grid-template-columns: 50px 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .step-icon {
        display: none;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-support {
        grid-column: span 1;
    }
    
    .steps-footer {
        padding: 30px 20px;
    }
    
    .footer-info h3,
    .footer-tips h3,
    .footer-support h3 {
        font-size: 1.2rem;
    }
    
    .footer-info p,
    .footer-tips p,
    .footer-support p {
        font-size: 0.95rem;
    }
    
    .footer-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .steps-title {
        font-size: 1.6rem;
    }
    
    .steps-intro p {
        font-size: 0.95rem;
    }
    
    .guide-title {
        font-size: 1.1rem;
    }
    
    .step-item {
        padding: 16px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .steps-footer {
        padding: 20px 16px;
    }
    
    .footer-info h3,
    .footer-tips h3,
    .footer-support h3 {
        font-size: 1.1rem;
    }
    
    .footer-info p,
    .footer-tips p,
    .footer-support p {
        font-size: 0.9rem;
    }
}

@media (min-width: 1281px) {
    .steps-container {
        padding: 0 40px;
    }
}

/* System Section */
.system-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #111111 50%, #0f0f23 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.system-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 200 200"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23ffd700" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') repeat;
    pointer-events: none;
}

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

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

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

.system-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.system-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.system-intro p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features-title {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.feature-box {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.feature-box .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

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

.feature-box .feature-icon i {
    font-size: 1.5rem;
    color: #1a1a2e;
}

.feature-box h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-box p {
    color: #c0c0c0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.system-image {
    position: relative;
    padding-left: 20px;
}

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

.system-img:hover {
    transform: scale(1.02) rotate(-1deg);
}

.system-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.update-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: spin-icon 2s linear infinite;
}

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

.update-badge i {
    animation: rotate-sync 2s linear infinite;
}

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

.system-details {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(15px);
    margin-bottom: 60px;
}

.details-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.trust-info h3,
.new-features h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-info p,
.new-features p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.speed-performance {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 30px;
}

.speed-performance h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.speed-performance p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.speed-performance p:last-child {
    margin-bottom: 0;
}

.system-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-content h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.cta-buttons .btn {
    min-width: 200px;
    justify-content: center;
}

/* Responsive Design for System Section */
@media (max-width: 1024px) {
    .system-body {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .system-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .details-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .system-container {
        padding: 0 16px;
    }
    
    .system-section {
        padding: 60px 0;
    }
    
    .system-header {
        margin-bottom: 40px;
    }
    
    .system-title {
        font-size: 1.8rem;
    }
    
    .system-body {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .system-image {
        padding-left: 0;
        order: -1;
    }
    
    .system-main {
        gap: 30px;
    }
    
    .system-intro p {
        font-size: 1rem;
    }
    
    .features-title {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .feature-box .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-box .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-box h4 {
        font-size: 1rem;
    }
    
    .feature-box p {
        font-size: 0.85rem;
    }
    
    .system-details {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .details-section {
        margin-bottom: 30px;
    }
    
    .trust-info h3,
    .new-features h3,
    .speed-performance h3 {
        font-size: 1.2rem;
    }
    
    .trust-info p,
    .new-features p,
    .speed-performance p {
        font-size: 0.95rem;
    }
    
    .system-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .system-title {
        font-size: 1.6rem;
    }
    
    .system-intro p {
        font-size: 0.95rem;
    }
    
    .features-title {
        font-size: 1.1rem;
    }
    
    .feature-box {
        padding: 16px;
    }
    
    .feature-box .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-box .feature-icon i {
        font-size: 1.1rem;
    }
    
    .feature-box h4 {
        font-size: 0.95rem;
    }
    
    .feature-box p {
        font-size: 0.8rem;
    }
    
    .system-details {
        padding: 20px 16px;
    }
    
    .trust-info h3,
    .new-features h3,
    .speed-performance h3 {
        font-size: 1.1rem;
    }
    
    .trust-info p,
    .new-features p,
    .speed-performance p {
        font-size: 0.9rem;
    }
    
    .system-cta {
        padding: 20px 16px;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
}

@media (min-width: 1281px) {
    .system-container {
        padding: 0 40px;
    }
}

/* Popularity Section */
.popularity-section {
    background: #111111;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.popularity-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.popularity-body {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.popularity-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.popularity-intro p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features-title {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.feature-item {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

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

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

.feature-item .feature-icon i {
    font-size: 1.2rem;
    color: #1a1a2e;
}

.feature-content h4 {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.3;
}

.feature-content p {
    color: #c0c0c0;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.popularity-image {
    position: relative;
    padding-left: 20px;
}

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

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

.popularity-overlay {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 3;
}

.popular-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: star-glow 2s ease-in-out infinite alternate;
}

@keyframes star-glow {
    from {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        transform: scale(1);
    }
    to {
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
        transform: scale(1.02);
    }
}

.security-section {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(15px);
}

.security-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.security-text h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.security-text p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.security-item:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
}

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

.security-item span {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.9rem;
}

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

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

.bonus-referral,
.bonus-payment {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bonus-referral:hover,
.bonus-payment:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.bonus-referral h3,
.bonus-payment h3 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.bonus-referral p,
.bonus-payment p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.popularity-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(10px);
}

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

.cta-content p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.cta-buttons .btn {
    min-width: 220px;
    justify-content: center;
}

/* Responsive Design for Popularity Section */
@media (max-width: 1024px) {
    .popularity-body {
        grid-template-columns: 1fr 400px;
        gap: 40px;
    }
    
    .popularity-title {
        font-size: 2.2rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .bonus-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .popularity-container {
        padding: 0 16px;
    }
    
    .popularity-section {
        padding: 60px 0;
    }
    
    .popularity-header {
        margin-bottom: 40px;
    }
    
    .popularity-title {
        font-size: 1.8rem;
    }
    
    .popularity-body {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .popularity-image {
        padding-left: 0;
        order: -1;
    }
    
    .popularity-main {
        gap: 30px;
    }
    
    .popularity-intro p {
        font-size: 1rem;
    }
    
    .features-title {
        font-size: 1.2rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .feature-item .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-item .feature-icon i {
        font-size: 1.1rem;
    }
    
    .feature-content h4 {
        font-size: 0.95rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
    
    .security-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .security-text h3 {
        font-size: 1.3rem;
    }
    
    .security-text p {
        font-size: 1rem;
    }
    
    .security-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .security-item {
        padding: 10px 15px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .bonus-referral,
    .bonus-payment {
        padding: 25px 20px;
    }
    
    .bonus-referral h3,
    .bonus-payment h3 {
        font-size: 1.2rem;
    }
    
    .bonus-referral p,
    .bonus-payment p {
        font-size: 0.95rem;
    }
    
    .popularity-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .popularity-title {
        font-size: 1.6rem;
    }
    
    .popularity-intro p {
        font-size: 0.95rem;
    }
    
    .features-title {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 14px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-item .feature-icon {
        width: 40px;
        height: 40px;
        align-self: center;
    }
    
    .feature-item .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-content h4 {
        font-size: 0.9rem;
    }
    
    .feature-content p {
        font-size: 0.75rem;
    }
    
    .security-section {
        padding: 20px 16px;
    }
    
    .security-text h3 {
        font-size: 1.2rem;
    }
    
    .security-text p {
        font-size: 0.9rem;
    }
    
    .security-features {
        flex-direction: column;
        gap: 8px;
    }
    
    .security-item {
        padding: 8px 12px;
        justify-content: center;
    }
    
    .bonus-referral,
    .bonus-payment {
        padding: 20px 16px;
    }
    
    .bonus-referral h3,
    .bonus-payment h3 {
        font-size: 1.1rem;
    }
    
    .bonus-referral p,
    .bonus-payment p {
        font-size: 0.9rem;
    }
    
    .popularity-cta {
        padding: 20px 16px;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (min-width: 1281px) {
    .popularity-container {
        padding: 0 40px;
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #111111 100%);
    color: #e0e0e0;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.main-footer::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"><circle cx="20" cy="20" r="1" fill="%23ffd700" opacity="0.3"/><circle cx="80" cy="80" r="1.5" fill="%23ffd700" opacity="0.2"/><circle cx="60" cy="30" r="1" fill="%23ffd700" opacity="0.4"/><circle cx="30" cy="70" r="1.2" fill="%23ffd700" opacity="0.25"/></svg>') repeat;
    pointer-events: none;
}

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

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

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 300px;
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-brand {
    max-width: 350px;
}

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

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

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

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

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

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

.contact-item span {
    font-weight: 500;
}

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

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

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

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

.footer-link {
    color: #c0c0c0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
    font-size: 0.95rem;
}

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

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

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

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

.cta-card {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

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

.cta-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
    font-family: 'Prompt', sans-serif;
}

.cta-description {
    color: #c0c0c0;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #1a1a2e;
}

.footer-features {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

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

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

.feature-icon i {
    font-size: 1.2rem;
    color: #1a1a2e;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-title {
    font-weight: 700;
    color: #ffd700;
    font-size: 1rem;
}

.feature-desc {
    font-size: 0.85rem;
    color: #c0c0c0;
    line-height: 1.3;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.legal-link {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.separator {
    color: rgba(255, 215, 0, 0.5);
}

.copyright {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.disclaimer {
    font-size: 0.8rem !important;
    color: #808080 !important;
}

.footer-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

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

.badge-item i {
    color: #ffd700;
    font-size: 0.9rem;
}

.badge-item span {
    font-size: 0.8rem;
    color: #e0e0e0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1.5fr 250px;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 15px;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        max-width: none;
        text-align: center;
    }
    
    .footer-logo-text {
        font-size: 2rem;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-cta {
        order: -1;
    }
    
    .cta-card {
        padding: 25px 20px;
        max-width: none;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-logo-text {
        font-size: 1.8rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .cta-card {
        padding: 20px 16px;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
    
    .feature-card {
        padding: 12px;
        gap: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 0.95rem;
    }
    
    .feature-desc {
        font-size: 0.8rem;
    }
    
    .legal-link {
        font-size: 0.85rem;
    }
    
    .copyright p {
        font-size: 0.85rem;
    }
    
    .disclaimer {
        font-size: 0.75rem !important;
    }
    
    .badge-item {
        padding: 6px 12px;
    }
    
    .badge-item span {
        font-size: 0.75rem;
    }
}

@media (min-width: 1281px) {
    .footer-container {
        padding: 0 40px;
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    display: flex;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

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

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

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

.btn-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
}

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

.sticky-btn:active .btn-text {
    transform: translateY(-1px);
}

/* Individual Button Styles */
.sticky-btn-login {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-login:hover,
.sticky-btn-login:active {
    background: linear-gradient(135deg, #34a853 0%, #4285f4 100%);
    color: #ffffff;
}

.sticky-btn-register {
    background: linear-gradient(135deg, #9c27b0 0%, #e91e63 100%);
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-register:hover,
.sticky-btn-register:active {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: #ffffff;
}

.sticky-btn-credit {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    position: relative;
}

.sticky-btn-credit:hover,
.sticky-btn-credit:active {
    background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
    color: #1a1a2e;
}

.sticky-btn-credit::after {
    content: 'HOT';
    position: absolute;
    top: 3px;
    right: 8px;
    background: #ff4444;
    color: #ffffff;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 700;
    animation: pulse-hot 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-buttons {
        border-top-width: 1px;
    }
    
    .sticky-btn {
        padding: 10px 6px;
        min-height: 55px;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }
    
    .btn-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 8px 4px;
        min-height: 50px;
    }
    
    .sticky-btn i {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .btn-text {
        font-size: 0.7rem;
    }
    
    .sticky-btn-credit::after {
        font-size: 0.55rem;
        padding: 1px 4px;
        top: 2px;
        right: 6px;
    }
}

@media (max-width: 360px) {
    .sticky-btn {
        padding: 8px 2px;
    }
    
    .btn-text {
        font-size: 0.65rem;
    }
}

/* Add bottom padding to body to prevent content being hidden behind sticky buttons */
body {
    padding-bottom: 60px;
}

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

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

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

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

.login-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 40px);
}

.login-content {
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

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

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

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

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

.login-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

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

.login-form-container {
    margin-bottom: 30px;
}

.error-message,
.success-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: slideInDown 0.3s ease;
}

.error-message {
    background: rgba(255, 67, 67, 0.1);
    border: 1px solid rgba(255, 67, 67, 0.3);
    color: #ff6b6b;
}

.success-message {
    background: rgba(0, 200, 81, 0.1);
    border: 1px solid rgba(0, 200, 81, 0.3);
    color: #00c851;
}

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

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

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

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

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

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

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

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

.form-input.success {
    border-color: #00c851;
}

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

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #c0c0c0;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

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

.input-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    display: none;
    margin-top: 4px;
}

.input-error.show {
    display: block;
    animation: slideInDown 0.3s ease;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.btn-login {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    border: none;
    padding: 16px 24px;
    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 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-login::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.5s ease;
}

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

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

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

.btn-login:disabled:hover {
    transform: none;
}

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

.btn-register {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 14px 24px;
    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;
}

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

.login-footer {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 20px;
}

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

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c0c0c0;
    font-size: 0.9rem;
    justify-content: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        padding: 0 16px;
    }
    
    .login-content {
        padding: 30px 25px;
        max-width: 400px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .login-subtitle {
        font-size: 0.95rem;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .btn-login {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .btn-register {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .login-content {
        padding: 25px 20px;
        margin: 10px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .btn-login {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .btn-register {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .security-features {
        gap: 8px;
    }
    
    .security-item {
        font-size: 0.85rem;
    }
}

@media (min-width: 1281px) {
    .login-container {
        padding: 0 40px;
    }
}

/* Register Section Styles */
.register-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    padding: 20px 0;
    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, 215, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1.5" fill="%23ffd700" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23ffd700" opacity="0.2"/><circle cx="50" cy="10" r="0.8" fill="%23ffd700" opacity="0.4"/></svg>') repeat;
    pointer-events: none;
}

.register-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 40px);
}

.register-content {
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.register-header {
    text-align: center;
    margin-bottom: 35px;
}

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

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

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

.register-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

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

.register-form-container {
    margin-bottom: 35px;
}

.error-message,
.success-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: slideInDown 0.3s ease;
}

.error-message {
    background: rgba(255, 67, 67, 0.1);
    border: 1px solid rgba(255, 67, 67, 0.3);
    color: #ff6b6b;
}

.success-message {
    background: rgba(0, 200, 81, 0.1);
    border: 1px solid rgba(0, 200, 81, 0.3);
    color: #00c851;
}

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

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

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

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

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

.form-input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(15, 15, 35, 0.9);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

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

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

.form-input.success {
    border-color: #00c851;
    box-shadow: 0 0 0 4px rgba(0, 200, 81, 0.1);
}

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

.input-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    display: none;
    margin-top: 4px;
    font-weight: 500;
}

.input-error.show {
    display: block;
    animation: slideInDown 0.3s ease;
}

.input-help {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0a0a0;
    font-size: 0.85rem;
    margin-top: 5px;
}

.input-help i {
    color: #ffd700;
    font-size: 0.8rem;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 15px;
}

.btn-register {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    border: none;
    padding: 18px 24px;
    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, 215, 0, 0.3);
}

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

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

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

.btn-register:disabled:hover {
    transform: none;
}

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

.btn-login-link {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 14px 24px;
    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;
    position: relative;
    overflow: hidden;
}

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

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

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

.register-footer {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 25px;
}

.benefits {
    margin-bottom: 20px;
}

.benefits-title {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
    font-size: 0.9rem;
    padding: 8px 0;
}

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

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #a0a0a0;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 15px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
}

.security-note i {
    color: #ffd700;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-container {
        padding: 0 16px;
    }
    
    .register-content {
        padding: 30px 25px;
        max-width: 420px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .register-title {
        font-size: 1.8rem;
    }
    
    .register-subtitle {
        font-size: 0.95rem;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .btn-register {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .btn-login-link {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .benefits-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .register-content {
        padding: 25px 20px;
        margin: 10px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .register-title {
        font-size: 1.6rem;
    }
    
    .register-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 14px;
        font-size: 0.95rem;
    }
    
    .btn-register {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .btn-login-link {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .benefits-list {
        gap: 8px;
    }
    
    .benefit-item {
        font-size: 0.85rem;
    }
    
    .security-note {
        font-size: 0.8rem;
        padding: 10px;
    }
}

@media (min-width: 1281px) {
    .register-container {
        padding: 0 40px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 100px 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% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    font-family: 'Prompt', sans-serif;
}

.hero-description {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
    color: #1a1a2e;
}

/* Promotion Sections */
.promotion-section {
    background: #111111;
    padding: 60px 0;
    position: relative;
}

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

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

.promotion-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.promotion-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.promotion-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.promotion-badge.daily {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: #ffffff;
}

.promotion-badge.cashback {
    background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
    color: #1a1a2e;
}

.promotion-badge.referral {
    background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
    color: #ffffff;
}

.promotion-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0;
    line-height: 1.3;
    font-family: 'Prompt', sans-serif;
}

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

.promotion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

.promotion-item span {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

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

.btn-promotion {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    padding: 16px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-promotion::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.5s ease;
}

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

.btn-promotion:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #1a1a2e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .promotion-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .promotion-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-container,
    .promotion-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        padding: 16px 32px;
        font-size: 1.2rem;
    }
    
    .promotion-section {
        padding: 40px 0;
    }
    
    .promotion-card {
        padding: 30px 25px;
    }
    
    .promotion-title {
        font-size: 1.8rem;
    }
    
    .promotion-item {
        padding: 12px;
    }
    
    .promotion-item i {
        font-size: 1.1rem;
        width: 20px;
    }
    
    .promotion-item span {
        font-size: 0.95rem;
    }
    
    .btn-promotion {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 14px 28px;
        font-size: 1.1rem;
    }
    
    .promotion-card {
        padding: 25px 20px;
    }
    
    .promotion-title {
        font-size: 1.6rem;
    }
    
    .promotion-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    .promotion-item {
        padding: 10px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .promotion-item i {
        align-self: center;
    }
    
    .promotion-item span {
        font-size: 0.9rem;
    }
    
    .btn-promotion {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (min-width: 1281px) {
    .hero-container,
    .promotion-container {
        padding: 0 40px;
    }
}