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

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

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;
    display: block;
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    min-width: 160px;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, #ff7b45, #f8a32e);
}

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

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

/* Hero Section */
.hero-section {
    padding: 80px 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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="40" cy="60" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

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

.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: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

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

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

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

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

.feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(5px);
}

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

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-image {
    position: relative;
    text-align: center;
}

.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-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }
    
    .feature-item {
        padding: 10px 14px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 8px 12px;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
}

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

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

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

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

.logo-link:hover {
    color: #ff6b35;
    transform: translateY(-1px);
}

.logo-link i {
    font-size: 2rem;
    color: #ff6b35;
    transition: transform 0.3s ease;
}

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

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

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

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

.nav-link {
    color: #b8b8d1;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ff7b45, #f8a32e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

.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;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

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

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

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.mobile-logo i {
    font-size: 1.8rem;
    color: #ff6b35;
}

.mobile-logo span {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #ff6b35);
    -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;
    transition: all 0.3s ease;
}

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

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

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-link {
    display: block;
    color: #b8b8d1;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 25px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

/* Mobile CTA */
.mobile-cta {
    width: 100%;
    max-width: 300px;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-cta-button:hover {
    background: linear-gradient(45deg, #ff7b45, #f8a32e);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .desktop-nav {
        gap: 25px;
    }
}

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

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

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

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

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

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

.about-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.08) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

.about-description p {
    font-size: 1.1rem;
    color: #b8b8d1;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.about-description strong {
    color: #ff6b35;
    font-weight: 600;
}

.about-description a {
    color: #f7931e;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.about-description a:hover {
    color: #ff6b35;
}

.about-image {
    position: relative;
    text-align: center;
}

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

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

.certifications {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    gap: 15px;
}

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

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

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

.cert-item span {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
}

/* Features Grid */
.about-features {
    margin-bottom: 60px;
}

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

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

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

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

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

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

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

/* Stats Section */
.about-stats {
    margin-bottom: 60px;
}

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

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #b8b8d1;
    font-weight: 500;
}

/* Access Section */
.about-access {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.about-access h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}

.about-access p {
    font-size: 1.05rem;
    color: #b8b8d1;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-access strong {
    color: #ff6b35;
    font-weight: 600;
}

.access-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text .section-title {
        font-size: 2.2rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 15px;
    }
    
    .about-text .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .certifications {
        flex-direction: column;
        gap: 10px;
    }
    
    .cert-item {
        flex-direction: row;
        justify-content: center;
        padding: 10px 15px;
    }
    
    .cert-item i {
        font-size: 1.2rem;
    }
    
    .cert-item span {
        font-size: 0.9rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-access {
        padding: 30px 20px;
        text-align: left;
    }
    
    .about-access h3 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .about-access p {
        font-size: 1rem;
    }
    
    .access-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .access-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .about-text .section-title {
        font-size: 1.5rem;
    }
    
    .about-description p {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .about-access h3 {
        font-size: 1.4rem;
    }
    
    .about-access p {
        font-size: 0.9rem;
    }
}

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

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

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

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

.system-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.system-header .section-subtitle {
    font-size: 1.2rem;
    color: #b8b8d1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* System Main Content */
.system-main {
    margin-bottom: 60px;
}

.system-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.system-text .content-block p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.system-text strong {
    color: #ff6b35;
    font-weight: 600;
}

.system-image {
    position: relative;
    text-align: center;
}

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

.system-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge-item {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

/* VIP Features */
.vip-features {
    margin-bottom: 60px;
}

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

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

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

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

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

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-header i {
    font-size: 2rem;
    color: #ff6b35;
    width: 50px;
    text-align: center;
}

.feature-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.feature-content p {
    font-size: 1rem;
    color: #b8b8d1;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.feature-content strong {
    color: #ff6b35;
    font-weight: 600;
}

.feature-highlights {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

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

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

.highlight-item span {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
}

/* Security Section */
.system-security {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(10px);
}

.security-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.security-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.security-text p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 30px;
}

.security-text strong {
    color: #ff6b35;
    font-weight: 600;
}

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

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

.security-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(5px);
}

.security-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    min-width: 60px;
    text-align: center;
}

.security-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.security-info p {
    font-size: 0.95rem;
    color: #b8b8d1;
    margin: 0;
}

/* Innovation Section */
.innovation-section {
    margin-bottom: 60px;
}

.innovation-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

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

.innovation-text p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
}

.innovation-text strong {
    color: #ff6b35;
    font-weight: 600;
}

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

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

.ai-feature:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(10px);
}

.ai-feature i {
    font-size: 2rem;
    color: #ff6b35;
    min-width: 50px;
    text-align: center;
}

.ai-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.ai-info p {
    font-size: 0.95rem;
    color: #b8b8d1;
    margin: 0;
}

/* System CTA */
.system-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.08) 100%);
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .system-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .system-text {
        order: 2;
    }
    
    .system-image {
        order: 1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .innovation-text {
        order: 2;
    }
    
    .ai-features {
        order: 1;
    }
}

@media (max-width: 768px) {
    .system-section {
        padding: 60px 0;
    }
    
    .system-container {
        padding: 0 15px;
    }
    
    .system-header .section-title {
        font-size: 2rem;
    }
    
    .system-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .system-badges {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .vip-feature-card {
        padding: 25px 20px;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-header i {
        font-size: 2.5rem;
    }
    
    .feature-highlights {
        justify-content: center;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .security-item {
        text-align: center;
        flex-direction: column;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .ai-features {
        gap: 15px;
    }
    
    .ai-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .system-header .section-title {
        font-size: 1.6rem;
    }
    
    .system-header .section-subtitle {
        font-size: 1rem;
    }
    
    .system-text .content-block p {
        font-size: 1rem;
    }
    
    .vip-feature-card {
        padding: 20px 15px;
    }
    
    .feature-header h3 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .highlight-item {
        padding: 6px 12px;
    }
    
    .highlight-item span {
        font-size: 0.8rem;
    }
    
    .security-text h3 {
        font-size: 1.5rem;
    }
    
    .security-text p {
        font-size: 1rem;
    }
    
    .innovation-section h3 {
        font-size: 1.6rem;
    }
    
    .innovation-text p {
        font-size: 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

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

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

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

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

.streaming-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.streaming-header .section-subtitle {
    font-size: 1.2rem;
    color: #b8b8d1;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Streaming Hero */
.streaming-hero {
    margin-bottom: 60px;
}

.streaming-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.streaming-image {
    position: relative;
    text-align: center;
}

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

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

.tech-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-badge {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.9));
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

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

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

.tech-badge i {
    font-size: 1.1rem;
}

.streaming-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.streaming-text p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
}

.streaming-text strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Studio Section */
.studio-section {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

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

.studio-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.studio-text p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
}

.studio-text strong {
    color: #ff6b35;
    font-weight: 600;
}

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

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

.studio-features .feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(10px);
}

.studio-features .feature-item i {
    font-size: 2rem;
    color: #ff6b35;
    min-width: 50px;
    text-align: center;
}

.feature-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 0.95rem;
    color: #b8b8d1;
    margin: 0;
}

/* Technology Grid */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

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

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

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

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

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

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

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

.tech-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.tech-card p {
    font-size: 1rem;
    color: #b8b8d1;
    line-height: 1.6;
    text-align: justify;
}

.tech-card strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Features Highlight */
.features-highlight {
    margin-bottom: 60px;
}

.features-highlight h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

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

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

.highlight-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

.highlight-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
    display: block;
}

.highlight-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.highlight-item p {
    font-size: 1rem;
    color: #b8b8d1;
    line-height: 1.6;
}

/* Service Guarantee */
.service-guarantee {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.08) 100%);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 60px;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

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

.guarantee-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.guarantee-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.guarantee-text p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
}

.guarantee-text strong {
    color: #ff6b35;
    font-weight: 600;
}

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

.dealer-stats .stat-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.dealer-stats .stat-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
}

.dealer-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.dealer-stats .stat-label {
    font-size: 1rem;
    color: #b8b8d1;
    font-weight: 500;
}

/* Technology CTA */
.technology-cta {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.technology-cta .cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.technology-cta .cta-content p {
    font-size: 1.2rem;
    color: #b8b8d1;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .streaming-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .streaming-image {
        order: 1;
    }
    
    .streaming-text {
        order: 2;
    }
    
    .studio-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .technology-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .dealer-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .streaming-section {
        padding: 60px 0;
    }
    
    .streaming-container {
        padding: 0 15px;
    }
    
    .streaming-header .section-title {
        font-size: 2rem;
    }
    
    .streaming-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .tech-badges {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .streaming-text h3 {
        font-size: 1.6rem;
    }
    
    .streaming-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .studio-section {
        padding: 40px 25px;
    }
    
    .studio-text h3 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .studio-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .studio-features .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .technology-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-card {
        padding: 25px 20px;
    }
    
    .features-highlight h3 {
        font-size: 1.8rem;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-item {
        padding: 25px 20px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .guarantee-icon {
        width: 80px;
        height: 80px;
    }
    
    .guarantee-icon i {
        font-size: 2.5rem;
    }
    
    .guarantee-text h3 {
        font-size: 1.6rem;
    }
    
    .guarantee-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .technology-cta .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .technology-cta .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .streaming-header .section-title {
        font-size: 1.6rem;
    }
    
    .streaming-header .section-subtitle {
        font-size: 1rem;
    }
    
    .tech-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .streaming-text h3 {
        font-size: 1.4rem;
    }
    
    .streaming-text p {
        font-size: 0.95rem;
    }
    
    .studio-text h3 {
        font-size: 1.4rem;
    }
    
    .studio-text p {
        font-size: 0.95rem;
    }
    
    .tech-card {
        padding: 20px 15px;
    }
    
    .tech-card h4 {
        font-size: 1.1rem;
    }
    
    .tech-card p {
        font-size: 0.9rem;
    }
    
    .highlight-item {
        padding: 20px 15px;
    }
    
    .highlight-item i {
        font-size: 2.5rem;
    }
    
    .highlight-item h4 {
        font-size: 1.1rem;
    }
    
    .highlight-item p {
        font-size: 0.9rem;
    }
    
    .guarantee-text h3 {
        font-size: 1.4rem;
    }
    
    .guarantee-text p {
        font-size: 0.95rem;
    }
    
    .dealer-stats .stat-number {
        font-size: 2rem;
    }
    
    .dealer-stats .stat-label {
        font-size: 0.9rem;
    }
    
    .technology-cta .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .technology-cta .cta-content p {
        font-size: 1rem;
    }
}

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

.login-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.06) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

.login-header .section-subtitle {
    font-size: 1.2rem;
    color: #b8b8d1;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Login Methods */
.login-methods {
    margin-bottom: 60px;
}

.method-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.method-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}

.method-text p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.method-text strong {
    color: #ff6b35;
    font-weight: 600;
}

.method-text a {
    color: #f7931e;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.method-text a:hover {
    color: #ff6b35;
}

.method-image {
    position: relative;
    text-align: center;
}

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

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

.login-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-badge {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.9));
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

/* Login Steps */
.login-steps {
    margin-bottom: 60px;
}

.login-steps h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

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

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

.step-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    transition: transform 0.3s ease;
}

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

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

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

/* Financial Features */
.financial-features {
    margin-bottom: 60px;
}

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

.financial-header h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.financial-header p {
    font-size: 1.1rem;
    color: #b8b8d1;
    max-width: 700px;
    margin: 0 auto;
}

.financial-header strong {
    color: #ff6b35;
    font-weight: 600;
}

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

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

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

.financial-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

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

.financial-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.financial-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.financial-card p {
    font-size: 1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
}

.financial-card strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Bonus System */
.bonus-system {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(10px);
}

.bonus-system h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

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

.bonus-text p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
}

.bonus-text strong {
    color: #ff6b35;
    font-weight: 600;
}

.bonus-text a {
    color: #f7931e;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.bonus-text a:hover {
    color: #ff6b35;
}

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

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

.bonus-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(10px);
}

.bonus-item i {
    font-size: 2rem;
    color: #ff6b35;
    min-width: 50px;
    text-align: center;
}

.bonus-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.bonus-info p {
    font-size: 0.95rem;
    color: #b8b8d1;
    margin: 0;
}

/* Security Assurance */
.security-assurance {
    margin-bottom: 60px;
}

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

.security-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.security-text p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
}

.security-text strong {
    color: #ff6b35;
    font-weight: 600;
}

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

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

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

.security-feature i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
    display: block;
}

.security-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.security-feature p {
    font-size: 0.95rem;
    color: #b8b8d1;
    line-height: 1.5;
}

/* Support System */
.support-system {
    margin-bottom: 60px;
}

.support-system h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.support-content p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.channel-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
}

.channel-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    min-width: 60px;
    text-align: center;
}

.channel-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.channel-info p {
    font-size: 1rem;
    color: #b8b8d1;
    margin: 0;
}

/* Login CTA */
.login-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.08) 100%);
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.login-cta .cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.login-cta .cta-content p {
    font-size: 1.2rem;
    color: #b8b8d1;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .method-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .method-text {
        order: 2;
    }
    
    .method-image {
        order: 1;
    }
    
    .financial-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bonus-text {
        order: 1;
        text-align: center;
    }
    
    .bonus-types {
        order: 2;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .login-section {
        padding: 60px 0;
    }
    
    .login-container {
        padding: 0 15px;
    }
    
    .login-header .section-title {
        font-size: 2rem;
    }
    
    .login-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .login-badges {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .method-text h3 {
        font-size: 1.6rem;
    }
    
    .method-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .login-steps h3 {
        font-size: 1.8rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-item {
        padding: 25px 20px;
    }
    
    .financial-header h3 {
        font-size: 1.8rem;
    }
    
    .financial-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .financial-card {
        padding: 30px 25px;
    }
    
    .bonus-system {
        padding: 40px 25px;
    }
    
    .bonus-system h3 {
        font-size: 1.8rem;
    }
    
    .bonus-types {
        gap: 15px;
    }
    
    .bonus-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .security-text h3 {
        font-size: 1.6rem;
    }
    
    .security-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .security-features {
        gap: 20px;
    }
    
    .security-feature {
        padding: 20px 15px;
    }
    
    .support-system h3 {
        font-size: 1.8rem;
    }
    
    .support-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .support-channels {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .channel-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .login-cta .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .login-cta .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .login-header .section-title {
        font-size: 1.6rem;
    }
    
    .login-header .section-subtitle {
        font-size: 1rem;
    }
    
    .login-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .method-text h3 {
        font-size: 1.4rem;
    }
    
    .method-text p {
        font-size: 0.95rem;
    }
    
    .login-steps h3 {
        font-size: 1.5rem;
    }
    
    .step-item {
        padding: 20px 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .financial-header h3 {
        font-size: 1.5rem;
    }
    
    .financial-card {
        padding: 25px 20px;
    }
    
    .financial-card h4 {
        font-size: 1.2rem;
    }
    
    .financial-card p {
        font-size: 0.95rem;
    }
    
    .bonus-system h3 {
        font-size: 1.5rem;
    }
    
    .bonus-text p {
        font-size: 1rem;
    }
    
    .security-text h3 {
        font-size: 1.4rem;
    }
    
    .security-text p {
        font-size: 0.95rem;
    }
    
    .support-system h3 {
        font-size: 1.5rem;
    }
    
    .support-content p {
        font-size: 0.95rem;
    }
    
    .login-cta .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .login-cta .cta-content p {
        font-size: 1rem;
    }
}

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

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

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

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

.demo-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.demo-header .section-subtitle {
    font-size: 1.2rem;
    color: #b8b8d1;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Demo Hero */
.demo-hero {
    margin-bottom: 60px;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.demo-image {
    position: relative;
    text-align: center;
}

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

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

.demo-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-badge {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.9));
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: slideInLeft 0.6s ease;
    animation-delay: var(--delay, 0s);
}

.demo-badge:nth-child(1) { --delay: 0s; }
.demo-badge:nth-child(2) { --delay: 0.2s; }
.demo-badge:nth-child(3) { --delay: 0.4s; }

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

.demo-badge i {
    font-size: 1.1rem;
}

.demo-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.demo-text p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
}

.demo-text strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Access Demo */
.access-demo {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.access-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.access-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.access-text p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
}

.access-text strong {
    color: #ff6b35;
    font-weight: 600;
}

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

.access-text a:hover {
    color: #ff6b35;
}

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

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

.access-step:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(10px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.step-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.step-info p {
    font-size: 0.95rem;
    color: #b8b8d1;
    margin: 0;
}

/* Demo Benefits */
.demo-benefits {
    margin-bottom: 60px;
}

.demo-benefits h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

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

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

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

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

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1rem;
    color: #b8b8d1;
    line-height: 1.6;
    text-align: justify;
}

.benefit-card strong {
    color: #ff6b35;
    font-weight: 600;
}

/* New Features */
.new-features {
    margin-bottom: 60px;
}

.features-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.features-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.features-text p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
}

.features-text strong {
    color: #ff6b35;
    font-weight: 600;
}

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

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

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

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

.feature-detail h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.feature-detail p {
    font-size: 0.95rem;
    color: #b8b8d1;
    margin: 0;
}

/* Preparation Tips */
.preparation-tips {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(10px);
}

.preparation-tips h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
}

.tips-content > p {
    font-size: 1.1rem;
    color: #b8b8d1;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.tip-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.tip-card:hover .tip-number {
    transform: scale(1.1);
}

.tip-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

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

/* VIP88 Section */
.vip88-section {
    margin-bottom: 60px;
}

.vip88-content {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.08) 100%);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.vip88-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.vip88-info p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vip88-info strong {
    color: #ff6b35;
    font-weight: 600;
}

.vip88-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

.vip88-feature:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

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

.vip88-feature span {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

/* Analysis System */
.analysis-system {
    margin-bottom: 60px;
}

.analysis-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.analysis-text p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
}

.analysis-text strong {
    color: #ff6b35;
    font-weight: 600;
}

.analysis-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.stat-box i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
    display: block;
}

.stat-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 0.95rem;
    color: #b8b8d1;
    margin: 0;
}

/* Important Reminder */
.important-reminder {
    margin-bottom: 60px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    padding: 40px;
}

-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.reminder-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reminder-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.reminder-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffc107;
    margin-bottom: 15px;
}

.reminder-text p {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    text-align: justify;
}

/* Demo CTA */
.demo-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.08) 100%);
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.demo-cta .cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .demo-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .demo-image {
        order: 1;
    }
    
    .demo-text {
        order: 2;
    }
    
    .access-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .access-text {
        order: 1;
        text-align: center;
    }
    
    .access-steps {
        order: 2;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-text {
        order: 1;
        text-align: center;
    }
    
    .features-list {
        order: 2;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .analysis-text {
        order: 1;
        text-align: center;
    }
    
    .analysis-stats {
        order: 2;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .demo-section {
        padding: 60px 0;
    }
    
    .demo-container {
        padding: 0 15px;
    }
    
    .demo-header .section-title {
        font-size: 2rem;
    }
    
    .demo-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .demo-badges {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .demo-text h3 {
        font-size: 1.6rem;
    }
    
    .demo-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .access-demo {
        padding: 40px 25px;
    }
    
    .access-content h3 {
        font-size: 1.8rem;
    }
    
    .access-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .access-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .demo-benefits h3 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .features-text h3 {
        font-size: 1.6rem;
    }
    
    .features-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .preparation-tips {
        padding: 40px 25px;
    }
    
    .preparation-tips h3 {
        font-size: 1.8rem;
    }
    
    .tips-content > p {
        font-size: 1rem;
        text-align: left;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tip-card {
        padding: 25px 20px;
    }
    
    .vip88-info h3 {
        font-size: 1.6rem;
    }
    
    .vip88-info p {
        font-size: 1rem;
        text-align: left;
    }
    
    .vip88-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .analysis-content h3 {
        font-size: 1.8rem;
    }
    
    .analysis-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .analysis-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .reminder-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .reminder-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .reminder-icon i {
        font-size: 2rem;
    }
    
    .reminder-text h3 {
        font-size: 1.5rem;
    }
    
    .reminder-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .demo-cta .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .demo-cta .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .demo-header .section-title {
        font-size: 1.6rem;
    }
    
    .demo-header .section-subtitle {
        font-size: 1rem;
    }
    
    .demo-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .demo-text h3 {
        font-size: 1.4rem;
    }
    
    .demo-text p {
        font-size: 0.95rem;
    }
    
    .access-content h3 {
        font-size: 1.5rem;
    }
    
    .access-text p {
        font-size: 0.95rem;
    }
    
    .access-step {
        padding: 20px 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    .demo-benefits h3 {
        font-size: 1.5rem;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .benefit-card h4 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    .features-text h3 {
        font-size: 1.4rem;
    }
    
    .features-text p {
        font-size: 0.95rem;
    }
    
    .preparation-tips h3 {
        font-size: 1.5rem;
    }
    
    .tips-content > p {
        font-size: 0.95rem;
    }
    
    .tip-card {
        padding: 20px 15px;
    }
    
    .tip-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .tip-content h4 {
        font-size: 1.1rem;
    }
    
    .tip-content p {
        font-size: 0.9rem;
    }
    
    .vip88-info h3 {
        font-size: 1.4rem;
    }
    
    .vip88-info p {
        font-size: 0.95rem;
    }
    
    .analysis-content h3 {
        font-size: 1.5rem;
    }
    
    .analysis-text p {
        font-size: 0.95rem;
    }
    
    .reminder-text h3 {
        font-size: 1.3rem;
    }
    
    .reminder-text p {
        font-size: 0.95rem;
    }
    
    .demo-cta .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .demo-cta .cta-content p {
        font-size: 1rem;
    }
}

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

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

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

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

/* Footer Brand */
.footer-brand {
    max-width: 400px;
}

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

.footer-logo i {
    font-size: 2.5rem;
    color: #ff6b35;
}

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

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

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

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

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

.contact-item a {
    color: #b8b8d1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

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

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #b8b8d1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

/* Footer Features */
.footer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

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

.footer-features .feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
}

.footer-features .feature-item i {
    font-size: 2rem;
    color: #ff6b35;
    min-width: 40px;
    text-align: center;
}

.feature-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 0.85rem;
    color: #b8b8d1;
    margin: 0;
    line-height: 1.4;
}

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

.footer-payments h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.payment-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.payment-item i {
    font-size: 1.3rem;
    color: #ff6b35;
}

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

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

.footer-certifications h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
}

.cert-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.cert-item i {
    font-size: 1.3rem;
    color: #ff6b35;
}

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

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}

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

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

.footer-social {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        padding: 50px 15px 25px;
    }
    
    .footer-top {
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 0;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-features {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 0;
    }
    
    .footer-features .feature-item {
        padding: 15px;
        text-align: center;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cert-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 25px;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 40px 15px 20px;
    }
    
    .footer-logo i {
        font-size: 2rem;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-column ul li a {
        font-size: 0.85rem;
    }
    
    .footer-features .feature-item {
        padding: 12px;
    }
    
    .footer-features .feature-item i {
        font-size: 1.5rem;
    }
    
    .feature-info h5 {
        font-size: 0.9rem;
    }
    
    .feature-info p {
        font-size: 0.8rem;
    }
    
    .footer-payments h4,
    .footer-certifications h4 {
        font-size: 1.1rem;
    }
    
    .payment-item,
    .cert-item {
        padding: 12px 15px;
    }
    
    .payment-item i,
    .cert-item i {
        font-size: 1.1rem;
    }
    
    .payment-item span,
    .cert-item span {
        font-size: 0.85rem;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
    
    .disclaimer {
        font-size: 0.75rem !important;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
}

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

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-decoration: none;
    color: #b8b8d1;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 107, 53, 0.2);
    min-height: 60px;
    position: relative;
    overflow: hidden;
}

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

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

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

.sticky-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
}

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

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

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

.sticky-btn:hover .btn-text {
    font-weight: 600;
}

/* Individual Button Colors */
.sticky-btn-login:hover {
    background: rgba(52, 152, 219, 0.15);
}

.sticky-btn-login:hover i {
    color: #3498db;
}

.sticky-btn-register:hover {
    background: rgba(46, 204, 113, 0.15);
}

.sticky-btn-register:hover i {
    color: #2ecc71;
}

.sticky-btn-bonus {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-left: 1px solid rgba(255, 107, 53, 0.3);
}

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    box-shadow: 0 -4px 15px rgba(255, 107, 53, 0.3);
}

.sticky-btn-bonus i {
    color: #ff6b35;
    animation: pulse 2s infinite;
}

.sticky-btn-bonus:hover i {
    color: #f7931e;
    animation: bounce 0.6s ease;
}

.sticky-btn-bonus .btn-text {
    color: #ff6b35;
    font-weight: 600;
}

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

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

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0) scale(1.1);
    }
    40% {
        transform: translateY(-8px) scale(1.2);
    }
    80% {
        transform: translateY(-4px) scale(1.15);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 6px 0;
    }
    
    .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-buttons {
        padding: 5px 0;
    }
    
    .sticky-btn {
        padding: 8px 4px;
        min-height: 50px;
    }
    
    .sticky-btn i {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .btn-text {
        font-size: 0.7rem;
        line-height: 1.1;
    }
}

/* Ensure main content doesn't overlap with sticky buttons */
body {
    padding-bottom: 76px;
}

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

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

/* Hide sticky buttons on very small screens if needed */
@media (max-width: 320px) {
    .btn-text {
        display: none;
    }
    
    .sticky-btn {
        min-height: 45px;
        padding: 10px 2px;
    }
    
    .sticky-btn i {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    body {
        padding-bottom: 53px;
    }
}

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

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

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

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

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

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

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

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

.login-logo:hover {
    transform: scale(1.05) rotate(2deg);
}

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

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

/* Error Message */
.error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 10px;
    color: #e74c3c;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: slideInDown 0.3s ease;
}

.error-message i {
    color: #e74c3c;
}

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

/* Form Styles */
.login-form {
    width: 100%;
}

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

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

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

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

.form-input::placeholder {
    color: #b8b8d1;
    opacity: 0.7;
}

.form-input.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.form-input.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

/* Password Input Container */
.password-input-container {
    position: relative;
}

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

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

/* Input Error */
.input-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.input-error.show {
    opacity: 1;
    transform: translateY(0);
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

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

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

.login-btn:hover {
    background: linear-gradient(45deg, #ff7b45, #f8a32e);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

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

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

.login-btn:disabled:hover {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    transform: none;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

/* Form Divider */
.form-divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
    color: #b8b8d1;
    font-size: 0.9rem;
}

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

.form-divider span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

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

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

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

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

/* Login Footer */
.login-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

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

.security-info i {
    color: #27ae60;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-page-section {
        padding: 15px 0;
    }
    
    .login-container {
        padding: 0 15px;
    }
    
    .login-card {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .login-logo {
        width: 70px;
        height: 70px;
    }
    
    .login-title {
        font-size: 1.7rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .login-btn {
        padding: 14px;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .login-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .login-logo {
        width: 60px;
        height: 60px;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .login-subtitle {
        font-size: 0.85rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 12px;
        font-size: 16px;
    }
    
    .login-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .register-btn {
        padding: 11px;
        font-size: 0.9rem;
    }
    
    .security-info {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .login-card {
        padding: 20px 15px;
    }
    
    .login-logo {
        width: 55px;
        height: 55px;
    }
    
    .login-title {
        font-size: 1.3rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
}

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

.register-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 30%, rgba(255, 107, 53, 0.12) 0%, transparent 70%),
                radial-gradient(circle at 60% 70%, rgba(247, 147, 30, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

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

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

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

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

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

.register-logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

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

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

/* Error & Success Messages */
.error-message, .success-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: slideInDown 0.3s ease;
}

.error-message {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.error-message i {
    color: #e74c3c;
}

.success-message {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.success-message i {
    color: #2ecc71;
}

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

/* Form Styles */
.register-form {
    width: 100%;
}

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

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

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

.form-input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1.1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

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

.form-input::placeholder {
    color: #b8b8d1;
    opacity: 0.7;
}

.form-input.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    animation: shake 0.5s ease-in-out;
}

.form-input.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.2);
}

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

/* Input Error */
.input-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 6px;
    min-height: 20px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.input-error.show {
    opacity: 1;
    transform: translateY(0);
}

.input-error::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #e74c3c;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Register Button */
.register-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    border-radius: 15px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.register-btn:hover {
    background: linear-gradient(45deg, #ff7b45, #f8a32e);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

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

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

.register-btn:disabled:hover {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    transform: none;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

/* Form Divider */
.form-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
    color: #b8b8d1;
    font-size: 0.9rem;
}

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

.form-divider span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0 20px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

/* Login Button (Outline Style) */
.login-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 15px;
    color: #ff6b35;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    transition: left 0.3s ease;
    z-index: -1;
}

.login-btn:hover::before {
    left: 0;
}

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

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

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

/* Register Footer */
.register-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
}

.terms-info, .security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #b8b8d1;
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.terms-info:last-child, .security-info:last-child {
    margin-bottom: 0;
}

.terms-info i {
    color: #3498db;
    font-size: 1rem;
    flex-shrink: 0;
}

.security-info i {
    color: #27ae60;
    font-size: 1rem;
    flex-shrink: 0;
}

.terms-info a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-info a:hover {
    color: #f7931e;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-page-section {
        padding: 15px 0;
    }
    
    .register-container {
        padding: 0 15px;
    }
    
    .register-card {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .register-logo {
        width: 70px;
        height: 70px;
    }
    
    .register-title {
        font-size: 1.7rem;
    }
    
    .register-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 12px;
    }
    
    .register-btn {
        padding: 16px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .login-btn {
        padding: 14px;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    
    .form-divider {
        margin: 25px 0;
    }
}

@media (max-width: 480px) {
    .register-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .register-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .register-logo {
        width: 60px;
        height: 60px;
    }
    
    .register-title {
        font-size: 1.5rem;
    }
    
    .register-subtitle {
        font-size: 0.85rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .form-input {
        padding: 14px;
        font-size: 16px;
    }
    
    .register-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
    
    .login-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .terms-info, .security-info {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    
    .terms-info i, .security-info i {
        font-size: 1.2rem;
    }
}

@media (max-width: 320px) {
    .register-card {
        padding: 20px 15px;
    }
    
    .register-logo {
        width: 55px;
        height: 55px;
    }
    
    .register-title {
        font-size: 1.3rem;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .register-btn {
        font-size: 0.9rem;
    }
    
    .login-btn {
        font-size: 0.85rem;
    }
}

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

.promotion-hero::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 70%),
                radial-gradient(circle at 30% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content {
    text-align: center;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: #b8b8d1;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.hero-cta-btn:hover {
    background: linear-gradient(45deg, #ff7b45, #f8a32e);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

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

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

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

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

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

/* Promotion Cards */
.promotion-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.promotion-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.vip-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

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

.card-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.vip-card .card-icon {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
}

.card-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

/* Card Body */
.card-body {
    position: relative;
    z-index: 2;
}

.promotion-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

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

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

.feature-item i {
    font-size: 1.3rem;
    color: #ff6b35;
    width: 25px;
    text-align: center;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    color: #b8b8d1;
    font-weight: 500;
    line-height: 1.4;
}

/* Promotion Buttons */
.promotion-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promotion-btn:hover {
    background: linear-gradient(45deg, #ff7b45, #f8a32e);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

.vip-btn {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.vip-btn:hover {
    background: linear-gradient(45deg, #ffe135, #ff7b45);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

/* Summary Section */
.summary-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

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

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

.summary-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-content:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.summary-text {
    font-size: 1.2rem;
    color: #b8b8d1;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.summary-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-btn:hover {
    background: linear-gradient(45deg, #ff7b45, #f8a32e);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.summary-btn i {
    font-size: 1.4rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .promotion-card {
        padding: 30px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .promotion-hero {
        padding: 80px 0 60px;
    }
    
    .hero-container,
    .promotion-container,
    .summary-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-cta-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .promotion-section {
        padding: 40px 0;
    }
    
    .promotion-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .feature-item {
        padding: 12px 15px;
    }
    
    .feature-item i {
        font-size: 1.1rem;
    }
    
    .feature-item span {
        font-size: 0.95rem;
    }
    
    .promotion-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .summary-section {
        padding: 60px 0;
    }
    
    .summary-content {
        padding: 35px 25px;
    }
    
    .summary-text {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .summary-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-btn {
        padding: 14px 25px;
        font-size: 1rem;
        gap: 8px;
    }
    
    .promotion-card {
        padding: 20px 15px;
    }
    
    .card-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .promotion-features {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .feature-item {
        padding: 10px 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .feature-item i {
        font-size: 1.3rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .promotion-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .summary-content {
        padding: 25px 20px;
    }
    
    .summary-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .summary-btn {
        padding: 14px 25px;
        font-size: 1rem;
        gap: 10px;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .promotion-card {
        padding: 15px 12px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .promotion-btn {
        font-size: 0.9rem;
    }
    
    .summary-text {
        font-size: 0.95rem;
    }
}