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

body {
    font-family: 'Sarabun', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 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;
    transition: all 0.3s ease;
}

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

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

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

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

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

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

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

.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="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="0.3" fill="%23ff6b35" opacity="0.1"/><circle cx="40" cy="80" r="0.4" fill="%23ffffff" opacity="0.05"/></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;
    position: relative;
    z-index: 2;
}

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

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

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

.hero-description {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

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

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

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

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

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

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

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffa726);
}

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

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

.stat-label {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 12px;
    }
}

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

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

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

.logo-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

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

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

.logo-tagline {
    font-size: 0.7rem;
    color: #b0b0b0;
    font-weight: 400;
    margin-top: -2px;
    text-align: center;
}

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

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

.nav-item {}

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

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

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

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

.nav-link i {
    font-size: 1rem;
    opacity: 0.8;
}

/* Header CTA Button */
.header-cta {
    flex-shrink: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

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

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

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.btn-cta i {
    animation: pulse 2s infinite;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    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;
}

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

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

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

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-left: 2px solid rgba(255, 107, 53, 0.3);
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

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

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

.mobile-logo .logo-text {
    font-size: 1.5rem;
}

.mobile-logo .logo-tagline {
    font-size: 0.65rem;
}

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

.mobile-menu-close:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

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

.mobile-nav-item {}

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

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff6b35, #ff4757);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

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

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

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

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

.mobile-cta-link {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%) !important;
    color: #ffffff !important;
    text-align: center;
    justify-content: center;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    border: none !important;
}

.mobile-cta-link:hover {
    transform: translateX(0) translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6) !important;
}

.mobile-cta-link::before {
    display: none;
}

.mobile-cta-link i {
    animation: pulse 2s infinite;
}

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

@media (max-width: 870px) {
    .header-container {
        height: 60px;
    }
    
    .nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        height: 55px;
    }
    
    .mobile-menu {
        width: 280px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
    }
    
    .mobile-nav-link {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .mobile-menu {
        width: 100%;
        border-left: none;
    }
    
    .header-container {
        padding: 0 12px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 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: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

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

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8) 0%, rgba(255, 71, 87, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    cursor: pointer;
}

.about-image:hover .about-overlay {
    opacity: 1;
}

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

.overlay-content {
    text-align: center;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.about-overlay:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 4rem;
    margin-bottom: 16px;
    display: block;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    animation: fadeInUp 0.8s ease-out;
}

.section-header {
    margin-bottom: 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 0;
}

.about-description {
    margin-bottom: 50px;
}

.description-text {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: justify;
}

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

.about-highlights {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

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

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b35, #ff4757);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.highlight-item:hover::before {
    transform: scaleY(1);
}

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

.highlight-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.highlight-icon i {
    font-size: 1.5rem;
}

.highlight-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.highlight-content p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.5;
    margin: 0;
}

.about-cta {
    text-align: left;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: 60px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-text {
        order: -1;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .description-text {
        text-align: center;
    }
    
    .about-highlights {
        text-align: left;
    }
    
    .highlight-item {
        padding: 20px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
    }
    
    .highlight-icon i {
        font-size: 1.2rem;
    }
    
    .highlight-content h3 {
        font-size: 1.1rem;
    }
    
    .about-cta {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .description-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }
    
    .highlight-icon {
        align-self: center;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .overlay-content i {
        font-size: 3rem;
    }
    
    .overlay-content span {
        font-size: 1rem;
    }
}

/* Direct Platform Section */
.direct-platform-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

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

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

/* Section Header Center */
.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge-center {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.section-title-center {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Platform Features */
.platform-features {
    margin-bottom: 80px;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.feature-highlight {
    position: relative;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Prompt', sans-serif;
}

.feature-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.8;
    text-align: justify;
}

.platform-image {
    position: relative;
}

.platform-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.floating-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-float {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.stat-float:nth-child(2) {
    animation-delay: 1.5s;
}

.stat-float i {
    font-size: 1.5rem;
    color: #ff6b35;
}

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

.stat-unit {
    font-size: 0.9rem;
    color: #b0b0b0;
    display: block;
}

/* Wallet Features */
.wallet-features {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.wallet-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4757, #ffa726);
}

.wallet-info {
    margin-bottom: 50px;
}

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

.wallet-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.wallet-icon i {
    font-size: 2rem;
}

.wallet-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Prompt', sans-serif;
}

.wallet-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin: 4px 0 0 0;
}

.wallet-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.8;
    text-align: justify;
}

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

.service-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

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

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

.service-icon i {
    font-size: 1.5rem;
}

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

.service-item p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.5;
    margin: 0;
}

/* Platform CTA */
.platform-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

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

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Prompt', sans-serif;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title-center {
        font-size: 2.5rem;
    }
    
    .platform-content {
        gap: 60px;
    }
    
    .feature-title {
        font-size: 1.6rem;
    }
    
    .service-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .direct-platform-section {
        padding: 80px 0;
    }
    
    .section-title-center {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .platform-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .platform-text {
        order: 2;
        gap: 40px;
        text-align: left;
    }
    
    .floating-stats {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
    
    .wallet-features {
        padding: 30px;
    }
    
    .wallet-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-cta {
        padding: 40px 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .direct-platform-section {
        padding: 60px 0;
    }
    
    .direct-platform-container {
        padding: 0 15px;
    }
    
    .section-title-center {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 1.4rem;
    }
    
    .feature-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .floating-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-float {
        padding: 12px;
    }
    
    .wallet-features {
        padding: 20px;
    }
    
    .wallet-icon {
        width: 60px;
        height: 60px;
    }
    
    .wallet-icon i {
        font-size: 1.5rem;
    }
    
    .wallet-title {
        font-size: 1.6rem;
    }
    
    .service-item {
        padding: 24px 20px;
    }
    
    .platform-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Slots Section */
.slots-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

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

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

/* Slots Content */
.slots-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.slots-description {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.description-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.description-card:hover::before {
    transform: scaleX(1);
}

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

.description-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.description-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.description-icon i {
    font-size: 1.2rem;
}

.description-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Prompt', sans-serif;
}

.description-card p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.slots-image {
    position: relative;
}

.slots-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

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

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.badge-item i {
    color: #ff6b35;
}

/* Providers Section */
.providers-section {
    margin-bottom: 80px;
}

.providers-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Prompt', sans-serif;
}

.providers-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

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

.provider-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.provider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff4757, #ffa726);
}

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

.provider-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.provider-icon i {
    font-size: 2rem;
}

.provider-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Prompt', sans-serif;
}

.provider-card p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 20px;
}

.provider-features {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Game Features */
.game-features {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.game-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4757, #ffa726);
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Prompt', sans-serif;
}

.features-description {
    margin-bottom: 40px;
}

.features-description p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

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

.type-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.type-item:hover::before {
    transform: scaleX(1);
}

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

.type-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 16px;
    display: block;
}

.type-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Prompt', sans-serif;
}

.type-item p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.5;
    margin: 0;
}

/* Slots CTA */
.slots-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

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

.slots-cta .cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.slots-cta .cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Prompt', sans-serif;
}

.slots-cta .cta-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin: 0;
}

.slots-cta .cta-buttons {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slots-content {
        gap: 60px;
    }
    
    .providers-title {
        font-size: 2rem;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .game-features {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .slots-section {
        padding: 80px 0;
    }
    
    .slots-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .slots-description {
        order: 2;
        text-align: left;
    }
    
    .image-badges {
        position: relative;
        top: auto;
        left: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .game-features {
        padding: 30px;
    }
    
    .game-types {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .slots-cta {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .slots-section {
        padding: 60px 0;
    }
    
    .slots-container {
        padding: 0 15px;
    }
    
    .section-title-center {
        font-size: 1.8rem;
    }
    
    .description-card {
        padding: 24px;
    }
    
    .description-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .description-card p {
        text-align: left;
    }
    
    .image-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .providers-title {
        font-size: 1.8rem;
    }
    
    .provider-card {
        padding: 25px 20px;
    }
    
    .game-features {
        padding: 25px 20px;
    }
    
    .features-title {
        font-size: 1.6rem;
    }
    
    .features-description p {
        font-size: 1rem;
        text-align: left;
    }
    
    .game-types {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .type-item {
        padding: 20px;
    }
    
    .type-item i {
        font-size: 2rem;
    }
    
    .slots-cta {
        padding: 30px 20px;
    }
    
    .slots-cta .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 16px 32px;
    }
}

/* Baccarat Section */
.baccarat-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

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

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

/* Baccarat Content */
.baccarat-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.baccarat-text {
    animation: fadeInLeft 0.8s ease-out;
}

.baccarat-description {
    margin-bottom: 40px;
}

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

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

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff6b35, #ff4757);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.feature-item:hover::before {
    transform: scaleY(1);
}

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

.feature-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.feature-icon i {
    font-size: 1.1rem;
}

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

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

.baccarat-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.baccarat-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.live-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 0, 0, 0.9);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.table-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 16px;
}

.table-stats {
    display: flex;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #b0b0b0;
    margin-bottom: 4px;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    font-family: 'Prompt', sans-serif;
}

/* Baccarat System */
.baccarat-system {
    margin-bottom: 80px;
}

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

.system-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Prompt', sans-serif;
}

.system-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.system-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.system-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.system-item:hover::before {
    transform: scaleX(1);
}

.system-item:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
}

.system-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.system-icon i {
    font-size: 1.5rem;
}

.system-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Prompt', sans-serif;
}

.system-item p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

/* Betting Options */
.betting-options {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.betting-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4757, #ffa726);
}

.options-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Prompt', sans-serif;
}

.options-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

.betting-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.bet-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bet-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.bet-option:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.bet-name {
    font-weight: 600;
    color: #ffffff;
}

.bet-payout {
    font-weight: 700;
    color: #ff6b35;
    font-family: 'Prompt', sans-serif;
}

/* Quality Assurance */
.quality-assurance {
    margin-bottom: 80px;
}

.quality-content {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.quality-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Prompt', sans-serif;
}

.quality-text p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.reference-link {
    background: rgba(255, 107, 53, 0.05);
    border-left: 4px solid #ff6b35;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
}

.reference-link p {
    margin: 0;
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
}

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

.reference-link a:hover {
    color: #ff4757;
}

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

.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

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

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

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

/* Baccarat CTA */
.baccarat-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.baccarat-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
    pointer-events: none;
}

.baccarat-cta .cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.baccarat-cta .cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Prompt', sans-serif;
}

.baccarat-cta .cta-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin: 0;
}

.baccarat-cta .cta-buttons {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .baccarat-content {
        gap: 60px;
    }
    
    .system-title {
        font-size: 2rem;
    }
    
    .system-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .betting-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .baccarat-section {
        padding: 80px 0;
    }
    
    .baccarat-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .baccarat-text {
        order: 2;
    }
    
    .table-info {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
    
    .table-stats {
        justify-content: center;
    }
    
    .system-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .betting-options {
        padding: 30px;
    }
    
    .quality-content {
        padding: 30px;
    }
    
    .certifications {
        grid-template-columns: 1fr;
    }
    
    .baccarat-cta {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .baccarat-section {
        padding: 60px 0;
    }
    
    .baccarat-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .description-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .live-indicator {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .system-title {
        font-size: 1.8rem;
    }
    
    .system-item {
        padding: 25px 20px;
    }
    
    .betting-options {
        padding: 25px 20px;
    }
    
    .options-title {
        font-size: 1.6rem;
    }
    
    .betting-category {
        padding: 20px;
    }
    
    .quality-content {
        padding: 25px 20px;
    }
    
    .baccarat-cta {
        padding: 30px 20px;
    }
    
    .baccarat-cta .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 16px 32px;
    }
}

/* Sports Betting Section */
.sports-betting-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.sports-betting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 71, 87, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Sports Content */
.sports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.sports-image {
    position: relative;
    animation: fadeInLeft 0.8s ease-out;
}

.sports-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

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

.sports-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sports-badge i {
    color: #ff6b35;
}

.sports-description {
    animation: fadeInRight 0.8s ease-out;
}

.intro-text {
    margin-bottom: 40px;
}

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

.sports-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff6b35, #ff4757);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.feature-highlight:hover::before {
    transform: scaleY(1);
}

.feature-highlight:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(8px);
    border-color: rgba(255, 107, 53, 0.3);
}

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

.highlight-icon i {
    font-size: 1.2rem;
}

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

.highlight-content p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.5;
    margin: 0;
}

/* Betting Features */
.betting-features {
    margin-bottom: 80px;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Prompt', sans-serif;
}

.features-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.type-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.type-card:hover::before {
    transform: scaleX(1);
}

.type-card:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
}

.type-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.type-icon i {
    font-size: 1.5rem;
}

.type-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Prompt', sans-serif;
}

.type-card p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.5;
    margin: 0;
}

/* Live Betting */
.live-betting {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.live-betting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ff6b35, #ff4757);
}

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

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.9);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.live-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Prompt', sans-serif;
}

.live-text p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

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

.live-feature:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

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

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

/* Sports Categories */
.sports-categories {
    margin-bottom: 80px;
}

.categories-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Prompt', sans-serif;
}

.categories-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

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

.sport-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sport-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff4757, #ffa726);
}

.sport-item:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.sport-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.sport-icon i {
    font-size: 2rem;
}

.sport-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Prompt', sans-serif;
}

.sport-item p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

/* Analysis Section */
.analysis-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.analysis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4757, #ffa726);
}

.analysis-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Prompt', sans-serif;
}

.analysis-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

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

.analysis-item:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(8px);
}

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

.analysis-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    font-family: 'Prompt', sans-serif;
}

.analysis-item p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.5;
    margin: 0;
}

/* Special Features */
.special-features {
    margin-bottom: 80px;
}

.special-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Prompt', sans-serif;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
}

.feature-card .feature-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.feature-card .feature-icon i {
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Prompt', sans-serif;
}

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

.feature-card a {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.feature-card a:hover {
    color: #ff4757;
}

/* Sports CTA */
.sports-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.sports-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

.sports-cta .cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.sports-cta .cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Prompt', sans-serif;
}

.sports-cta .cta-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin: 0;
}

.sports-cta .cta-buttons {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sports-content {
        gap: 60px;
    }
    
    .features-title, .categories-title, .special-title {
        font-size: 2rem;
    }
    
    .betting-types {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
    
    .sports-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .sports-betting-section {
        padding: 80px 0;
    }
    
    .sports-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .sports-description {
        text-align: left;
    }
    
    .sports-badges {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
    
    .betting-types {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .live-betting {
        padding: 40px 30px;
    }
    
    .live-features {
        grid-template-columns: 1fr;
    }
    
    .sports-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .analysis-section {
        padding: 30px;
    }
    
    .analysis-features {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sports-cta {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .sports-betting-section {
        padding: 60px 0;
    }
    
    .sports-betting-container {
        padding: 0 15px;
    }
    
    .section-title-center {
        font-size: 1.8rem;
    }
    
    .intro-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .sports-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .features-title, .categories-title, .special-title {
        font-size: 1.8rem;
    }
    
    .type-card {
        padding: 25px 20px;
    }
    
    .live-betting {
        padding: 30px 20px;
    }
    
    .live-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .sport-item {
        padding: 25px 20px;
    }
    
    .analysis-section {
        padding: 25px 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .sports-cta {
        padding: 30px 20px;
    }
    
    .sports-cta .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 16px 32px;
    }
}

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

.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.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 71, 87, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
}

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

/* Footer About */
.footer-about {}

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

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

.footer-logo .logo-tagline {
    font-size: 0.8rem;
    color: #b0b0b0;
    font-weight: 400;
    margin-top: 4px;
    display: block;
}

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

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

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

.contact-item:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

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

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

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

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

.footer-menu li {}

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

.footer-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-menu a:hover::before {
    width: 20px;
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 25px;
}

.footer-menu a i {
    color: #ff6b35;
    font-size: 0.9rem;
    opacity: 0.8;
    width: 16px;
    text-align: center;
}

/* Security Badges */
.security-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.security-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.security-text {
    display: flex;
    flex-direction: column;
}

.security-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.security-desc {
    font-size: 0.8rem;
    color: #b0b0b0;
    line-height: 1.2;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 30px;
    }
    
    .footer-games {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 50px 0 30px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-title {
        text-align: center;
        font-size: 1.2rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-menu {
        text-align: center;
    }
    
    .footer-menu a:hover {
        padding-left: 0;
    }
    
    .footer-menu a::before {
        display: none;
    }
    
    .security-badges {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 25px;
    }
    
    .footer-about {
        grid-column: auto;
    }
    
    .footer-logo .logo-text {
        font-size: 1.8rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-menu a {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .security-item {
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .security-text {
        text-align: center;
    }
    
    .footer-bottom-content {
        gap: 16px;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .footer-container {
        padding: 0 12px;
    }
    
    .footer-content {
        gap: 25px;
        padding: 35px 0 20px;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .footer-menu a {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.contact-item i,
.footer-menu a i {
    animation: pulse 3s ease-in-out infinite;
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 30%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 10px 0 15px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.sticky-buttons.hidden {
    transform: translateY(100%);
}

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

.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    border: 1px solid transparent;
}

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

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

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

.sticky-btn span {
    line-height: 1.2;
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.sticky-btn:hover span {
    transform: scale(1.05);
}

/* Login Button */
.sticky-btn-login {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    border-color: rgba(52, 73, 94, 0.3);
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border-color: rgba(52, 73, 94, 0.5);
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.4);
}

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

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-color: rgba(39, 174, 96, 0.5);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

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

.sticky-btn-bonus::after {
    content: 'HOT';
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

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

.sticky-btn-bonus i {
    animation: bounce 2s ease-in-out infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 8px 0 12px;
    }
    
    .sticky-buttons-container {
        padding: 0 15px;
        gap: 10px;
    }
    
    .sticky-btn {
        padding: 10px 6px;
        font-size: 0.8rem;
        min-height: 55px;
        border-radius: 10px;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }
    
    .sticky-btn span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sticky-buttons {
        padding: 6px 0 10px;
    }
    
    .sticky-buttons-container {
        padding: 0 12px;
        gap: 8px;
    }
    
    .sticky-btn {
        padding: 8px 4px;
        font-size: 0.75rem;
        min-height: 50px;
        border-radius: 8px;
    }
    
    .sticky-btn i {
        font-size: 1rem;
    }
    
    .sticky-btn span {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .sticky-btn-bonus::after {
        font-size: 0.55rem;
        padding: 1px 4px;
        top: -3px;
        right: -3px;
    }
}

@media (max-width: 360px) {
    .sticky-buttons-container {
        padding: 0 10px;
        gap: 6px;
    }
    
    .sticky-btn {
        padding: 6px 2px;
        min-height: 45px;
    }
    
    .sticky-btn span {
        font-size: 0.65rem;
    }
}

/* Ensure sticky buttons don't overlap with content */
body {
    padding-bottom: 90px;
}

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

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

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

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

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

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

.login-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.login-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4757, #ffa726);
}

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

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

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

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

.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 50%, #ffa726 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

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

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

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

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

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

.form-input.success {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
}

/* Password Wrapper */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-toggle {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: #b0b0b0;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
    z-index: 2;
}

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

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

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

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

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

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    border-color: #ff6b35;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.forgot-password {
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #ff4757;
    text-decoration: underline;
}

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

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

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

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

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

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

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

.btn-loader {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: spin 1s linear infinite;
}

.divider {
    text-align: center;
    position: relative;
    margin: 8px 0;
}

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

.divider span {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #b0b0b0;
    padding: 0 16px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.register-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

/* Error Messages */
.error-message {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    border-radius: 8px;
    padding: 12px 16px;
    color: #e74c3c;
    font-size: 0.9rem;
    display: none;
    align-items: center;
    gap: 8px;
}

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

.error-message::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
}

.field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    min-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.field-error::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
}

/* Login Footer */
.login-footer {
    margin-top: 30px;
    text-align: center;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #b0b0b0;
    font-size: 0.85rem;
    margin: 0;
}

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

/* Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

.shake {
    animation: shake 0.5s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 120px 15px 15px 15px;
        min-height: calc(100vh - 60px);
    }
    
    .login-box {
        padding: 30px 25px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .login-subtitle {
        font-size: 0.95rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 120px 12px 12px 12px;
    }
    
    .login-box {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .login-logo {
        width: 70px;
        height: 70px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .login-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .login-container {
        max-width: 100%;
    }
    
    .login-box {
        padding: 20px 15px;
    }
    
    .login-title {
        font-size: 1.4rem;
    }
    
    .checkbox-text,
    .forgot-password {
        font-size: 0.85rem;
    }
}

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

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

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

.register-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.register-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4757, #ffa726);
}

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

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

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

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

.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 50%, #ffa726 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Form Styles */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

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

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

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

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

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

.form-input.success {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
}

/* Form Terms */
.form-terms {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

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

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    border-color: #ff6b35;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.terms-link,
.privacy-link {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover,
.privacy-link:hover {
    color: #ff4757;
    text-decoration: underline;
}

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

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

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

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

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

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

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

.btn-loader {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: spin 1s linear infinite;
}

.divider {
    text-align: center;
    position: relative;
    margin: 8px 0;
}

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

.divider span {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #b0b0b0;
    padding: 0 16px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

/* Error and Success Messages */
.error-message,
.success-message {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    display: none;
    align-items: center;
    gap: 8px;
}

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

.success-message {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid #27ae60;
    color: #27ae60;
}

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

.error-message::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
}

.success-message::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
}

.field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    min-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.field-error::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
}

/* Register Footer */
.register-footer {
    margin-top: 30px;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 8px 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-1px);
}

.feature-item i {
    color: #ff6b35;
    font-size: 1rem;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #b0b0b0;
    font-size: 0.85rem;
    margin: 0;
}

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

/* Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

.shake {
    animation: shake 0.5s ease-in-out;
}

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

.register-box {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-section {
        padding: 120px 15px 15px 15px;
        min-height: calc(100vh - 60px);
    }
    
    .register-box {
        padding: 30px 25px;
    }
    
    .register-title {
        font-size: 1.8rem;
    }
    
    .register-subtitle {
        font-size: 0.95rem;
    }
    
    .checkbox-text {
        font-size: 0.85rem;
    }
    
    .features-list {
        gap: 10px;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 120px 12px 12px 12px;
    }
    
    .register-box {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .register-logo {
        width: 70px;
        height: 70px;
    }
    
    .register-title {
        font-size: 1.6rem;
    }
    
    .register-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .register-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .checkbox-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .register-container {
        max-width: 100%;
    }
    
    .register-box {
        padding: 20px 15px;
    }
    
    .register-title {
        font-size: 1.4rem;
    }
    
    .checkbox-text {
        font-size: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

/* Hero Section */
.hero-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

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

.hero-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.hero-badge i {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #ffa726 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

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

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.7);
}

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

/* Promotion Sections */
.promotion-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
}

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

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

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

.promotion-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff4757, #ffa726);
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 107, 53, 0.4);
}

.promotion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.promotion-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.promotion-icon i {
    font-size: 2.2rem;
}

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

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

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

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

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff6b35, #ff4757);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.feature-item:hover::before {
    transform: scaleY(1);
}

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

.feature-item i {
    color: #27ae60;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

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

.promotion-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 32px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
    border: 2px solid transparent;
}

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

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

.promotion-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .promotion-card {
        padding: 40px;
    }
    
    .promotion-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta-btn {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
    
    .promotion-section {
        padding: 60px 0;
    }
    
    .promotion-card {
        padding: 30px;
    }
    
    .promotion-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .promotion-icon {
        width: 70px;
        height: 70px;
    }
    
    .promotion-icon i {
        font-size: 2rem;
    }
    
    .promotion-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .feature-item span {
        font-size: 1rem;
    }
    
    .promotion-cta-btn {
        align-self: center;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-container,
    .promotion-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-btn {
        font-size: 1rem;
        padding: 14px 26px;
        width: 100%;
        max-width: 280px;
    }
    
    .promotion-section {
        padding: 50px 0;
    }
    
    .promotion-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .promotion-icon {
        width: 60px;
        height: 60px;
    }
    
    .promotion-icon i {
        font-size: 1.8rem;
    }
    
    .promotion-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .feature-item {
        padding: 14px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-item span {
        font-size: 0.95rem;
    }
    
    .promotion-cta-btn {
        font-size: 1rem;
        padding: 14px 28px;
        width: 100%;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .promotion-card {
        padding: 20px 15px;
    }
    
    .promotion-title {
        font-size: 1.4rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}