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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-icon {
    font-size: 1.2rem;
    color: #ffd700;
    width: 24px;
    text-align: center;
}

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

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

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

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

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

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

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

.image-overlay {
    position: absolute;
    top: -10px;
    right: -10px;
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e35 100%);
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

.stat-label {
    font-size: 0.9rem;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    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;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@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-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 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%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .overlay-badge {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 58, 0.95) 50%, rgba(45, 45, 90, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    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-section {
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 40px;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    filter: brightness(1.1);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #ffd700;
    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;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d2d5a 100%);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.mobile-logo {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.mobile-nav {
    padding: 30px 20px;
}

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

.mobile-nav-menu li {
    margin-bottom: 5px;
}

.mobile-nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ffd700;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

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

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

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

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    filter: brightness(1.1);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .header-container {
        height: 65px;
    }
}

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

/* Utility Classes */
.desktop-only {
    display: inline-flex;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* Lottery Platform Section */
.lottery-platform-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2d2d5a 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.content-block {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.content-block:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.platform-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
}

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

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

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

.image-features {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e35 100%);
    border-radius: 25px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: slideInRight 0.6s ease-out;
}

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

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

.types-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 40px;
    text-align: center;
}

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

.type-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.type-card:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.type-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    color: #000;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.type-content {
    flex: 1;
}

.type-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.type-payout {
    font-size: 0.95rem;
    color: #b8b8b8;
    margin: 0;
    line-height: 1.4;
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .platform-content {
        gap: 40px;
    }
    
    .lottery-types {
        padding: 40px 30px;
    }
    
    .types-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lottery-platform-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .platform-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .platform-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .image-features {
        position: static;
        margin-top: 20px;
        flex-direction: row;
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .lottery-types {
        padding: 30px 20px;
    }
    
    .types-title {
        font-size: 1.5rem;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .type-card {
        padding: 20px;
        gap: 15px;
    }
    
    .type-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .type-name {
        font-size: 1rem;
    }
    
    .type-payout {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .lottery-platform-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .content-block {
        padding: 20px;
    }
    
    .platform-description {
        font-size: 0.95rem;
    }
    
    .lottery-types {
        padding: 25px 15px;
    }
    
    .types-title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .type-card {
        padding: 15px;
        gap: 12px;
    }
    
    .type-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .feature-badge {
        flex-direction: column;
        gap: 4px;
        padding: 6px 10px;
        font-size: 0.75rem;
        text-align: center;
    }
    
    .feature-badge i {
        font-size: 0.9rem;
    }
}

/* Online System Section */
.online-system-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d5a 0%, #0f0f23 50%, #1a1a3a 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.system-img:hover {
    transform: scale(1.02) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.system-features {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    backdrop-filter: blur(10px);
    animation: slideInLeft 0.6s ease-out;
}

.feature-chip i {
    font-size: 0.9rem;
}

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

.content-paragraph {
    padding: 25px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.content-paragraph::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 15px;
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
    opacity: 0.7;
}

.content-paragraph:hover {
    background: rgba(255, 215, 0, 0.06);
    border-left-color: #ffed4e;
    transform: translateX(5px);
}

.system-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin: 0;
}

.system-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.highlight-card:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

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

.highlight-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    color: #000;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

.highlight-content {
    text-align: left;
}

.highlight-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.highlight-desc {
    font-size: 1rem;
    color: #b8b8b8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.highlight-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-features li {
    font-size: 0.95rem;
    color: #d0d0d0;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.highlight-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 1rem;
}

.highlight-features li:last-child {
    margin-bottom: 0;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .system-content {
        gap: 40px;
    }
    
    .system-highlights {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .highlight-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .online-system-section {
        padding: 60px 0;
    }
    
    .system-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-paragraph {
        padding: 20px;
    }
    
    .system-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .system-features {
        position: static;
        margin-top: 20px;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-chip {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .system-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .highlight-card {
        padding: 25px 20px;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .highlight-title {
        font-size: 1.2rem;
    }
    
    .highlight-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .online-system-container {
        padding: 0 15px;
    }
    
    .content-paragraph {
        padding: 18px;
    }
    
    .system-description {
        font-size: 0.95rem;
    }
    
    .feature-chip {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .highlight-card {
        padding: 20px 15px;
    }
    
    .highlight-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .highlight-title {
        font-size: 1.1rem;
    }
    
    .highlight-desc {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .highlight-features li {
        font-size: 0.9rem;
    }
}

/* Comprehensive Platform Section */
.comprehensive-platform-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d2d5a 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.intro-text {
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 215, 0, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
}

.intro-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    border-radius: 20px 20px 0 0;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin: 0;
}

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

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

.platform-intro-img:hover {
    transform: scale(1.05) rotateY(10deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.rtp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    border-radius: 25px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    animation: pulse 2s infinite;
}

.games-content {
    margin-bottom: 60px;
}

.content-text {
    display: grid;
    gap: 25px;
}

.text-block {
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.text-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    transition: left 0.3s ease;
}

.text-block:hover {
    background: rgba(255, 215, 0, 0.06);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(10px);
}

.text-block:hover::before {
    left: 0;
}

.games-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
}

.games-description a {
    color: #ffd700;
    text-decoration: underline;
    text-decoration-color: rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.games-description a:hover {
    color: #ffed4e;
    text-decoration-color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.games-showcase {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 215, 0, 0.04));
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(20px);
}

.showcase-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    line-height: 1.3;
}

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

.game-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.game-category:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.game-category:hover::before {
    transform: scaleX(1);
}

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

.category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    color: #000;
    font-size: 1.4rem;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.game-category:hover .category-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
    line-height: 1.3;
}

.category-games {
    display: grid;
    gap: 12px;
}

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

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

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

.game-item span {
    color: #d0d0d0;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-content {
        gap: 40px;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .games-categories {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .games-showcase {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .comprehensive-platform-section {
        padding: 60px 0;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-text {
        padding: 25px;
    }
    
    .intro-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .text-block {
        padding: 25px;
    }
    
    .games-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .showcase-title {
        font-size: 1.6rem;
    }
    
    .games-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .games-showcase {
        padding: 30px 20px;
    }
    
    .game-category {
        padding: 25px 20px;
    }
    
    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .rtp-badge {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .comprehensive-platform-container {
        padding: 0 15px;
    }
    
    .intro-text {
        padding: 20px;
    }
    
    .intro-description {
        font-size: 0.95rem;
    }
    
    .text-block {
        padding: 20px;
    }
    
    .games-description {
        font-size: 0.95rem;
    }
    
    .showcase-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .games-showcase {
        padding: 25px 15px;
    }
    
    .game-category {
        padding: 20px 15px;
    }
    
    .category-header {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .game-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .game-item span {
        font-size: 0.9rem;
    }
    
    .rtp-badge {
        position: static;
        margin: 15px auto 0;
        display: inline-flex;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

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

.system-access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.access-text {
    display: grid;
    gap: 25px;
}

.content-block {
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(74, 144, 226, 0.04));
    border-radius: 15px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 15px 0 0 15px;
}

.content-block:hover {
    background: rgba(74, 144, 226, 0.08);
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
}

.access-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e5e5e5;
    margin: 0;
}

.access-description a {
    color: #4a90e2;
    text-decoration: underline;
    text-decoration-color: rgba(74, 144, 226, 0.5);
    transition: all 0.3s ease;
}

.access-description a:hover {
    color: #6bb6ff;
    text-decoration-color: #4a90e2;
    text-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
}

.access-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
    text-align: center;
}

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

.access-img:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    animation: slideInLeft 0.6s ease-out;
}

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

.access-solutions {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(74, 144, 226, 0.04));
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(20px);
}

.solutions-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 50%, #4a90e2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    line-height: 1.3;
}

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

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 30px 25px;
    border: 1px solid rgba(74, 144, 226, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.solution-card:hover {
    background: rgba(74, 144, 226, 0.08);
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.2);
}

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

.solution-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.5);
}

.solution-content {
    text-align: left;
}

.solution-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 10px;
    line-height: 1.3;
}

.solution-desc {
    font-size: 0.95rem;
    color: #b8b8b8;
    margin-bottom: 15px;
    line-height: 1.5;
}

.solution-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-steps li {
    font-size: 0.9rem;
    color: #d0d0d0;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.solution-steps li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-size: 0.7rem;
    top: 2px;
}

.solution-steps li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .access-content {
        gap: 40px;
    }
    
    .solutions-title {
        font-size: 1.8rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .access-solutions {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .system-access-section {
        padding: 60px 0;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-block {
        padding: 20px;
    }
    
    .access-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .security-badges {
        position: static;
        margin-top: 20px;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .security-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .solutions-title {
        font-size: 1.6rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .access-solutions {
        padding: 30px 20px;
    }
    
    .solution-card {
        padding: 25px 20px;
    }
    
    .solution-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .solution-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .system-access-container {
        padding: 0 15px;
    }
    
    .content-block {
        padding: 18px;
    }
    
    .access-description {
        font-size: 0.95rem;
    }
    
    .security-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .solutions-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .access-solutions {
        padding: 25px 15px;
    }
    
    .solution-card {
        padding: 20px 15px;
    }
    
    .solution-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .solution-title {
        font-size: 1rem;
    }
    
    .solution-desc {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .solution-steps li {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
}

/* Promotions & Bonuses Section */
.promotions-bonuses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d5a 0%, #0f0f23 50%, #1a1a3a 100%);
    position: relative;
    overflow: hidden;
}

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

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

.promotions-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.promotions-image {
    position: relative;
    text-align: center;
    animation: fadeInLeft 0.8s ease-out;
}

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

.promotions-img:hover {
    transform: scale(1.03) rotateY(-5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.promo-highlights {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e35 100%);
    border-radius: 25px;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: slideInRight 0.6s ease-out;
}

.promo-highlight i {
    font-size: 1rem;
}

.promotions-text {
    display: grid;
    gap: 25px;
}

.promo-block {
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 107, 53, 0.04));
    border-radius: 18px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
}

.promo-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e35 100%);
    border-radius: 18px 0 0 18px;
}

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

.promo-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin: 0;
}

.promo-description a {
    color: #ff6b35;
    text-decoration: underline;
    text-decoration-color: rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
}

.promo-description a:hover {
    color: #ff8e35;
    text-decoration-color: #ff6b35;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

.monthly-promotions {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 107, 53, 0.05));
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(20px);
    margin-bottom: 60px;
}

.monthly-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e35 50%, #ff6b35 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    line-height: 1.3;
}

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

.monthly-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.monthly-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e35 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.monthly-card:hover .monthly-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

.monthly-content {
    flex: 1;
}

.monthly-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
    line-height: 1.3;
}

.monthly-detail {
    font-size: 0.95rem;
    color: #b8b8b8;
    margin: 0;
    line-height: 1.5;
}

.monthly-icon {
    color: #ff6b35;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.monthly-card:hover .monthly-icon {
    opacity: 1;
    transform: scale(1.2);
}

.additional-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 107, 53, 0.02));
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(10px);
}

.info-content {
    text-align: center;
}

.final-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promotions-content {
        gap: 40px;
    }
    
    .monthly-title {
        font-size: 1.6rem;
    }
    
    .monthly-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .monthly-promotions {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .promotions-bonuses-section {
        padding: 60px 0;
    }
    
    .promotions-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .promo-block {
        padding: 25px;
    }
    
    .promo-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .promo-highlights {
        position: static;
        margin-top: 20px;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .promo-highlight {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .monthly-title {
        font-size: 1.4rem;
    }
    
    .monthly-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .monthly-promotions {
        padding: 30px 20px;
    }
    
    .monthly-card {
        padding: 25px 20px;
        gap: 15px;
    }
    
    .monthly-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .monthly-name {
        font-size: 1.1rem;
    }
    
    .monthly-detail {
        font-size: 0.9rem;
    }
    
    .monthly-icon {
        font-size: 1.3rem;
    }
    
    .additional-info {
        padding: 30px 25px;
    }
    
    .final-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .promotions-bonuses-container {
        padding: 0 15px;
    }
    
    .promo-block {
        padding: 20px;
    }
    
    .promo-description {
        font-size: 0.95rem;
    }
    
    .promo-highlight {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .promo-highlight i {
        font-size: 0.9rem;
    }
    
    .monthly-title {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .monthly-promotions {
        padding: 25px 15px;
    }
    
    .monthly-card {
        padding: 20px 15px;
        gap: 12px;
    }
    
    .monthly-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .monthly-name {
        font-size: 1rem;
    }
    
    .monthly-detail {
        font-size: 0.85rem;
    }
    
    .monthly-icon {
        font-size: 1.2rem;
    }
    
    .additional-info {
        padding: 25px 20px;
    }
    
    .final-description {
        font-size: 0.95rem;
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #2d2d5a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(255, 215, 0, 0.05) 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-section {
    animation: fadeInUp 0.6s ease-out;
}

.company-info {
    padding-right: 20px;
}

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

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

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

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

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

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

.footer-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    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, #ffd700, #ffed4e);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 5px 0;
}

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

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

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

.security-badges-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

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

.security-badge-footer:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.security-badge-footer i {
    color: #4caf50;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

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

.payment-methods {
    margin-top: 20px;
}

.payment-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: #ffd700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icons i:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    color: #ffed4e;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.disclaimer-text i {
    color: #ff8e35;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 30px;
    }
    
    .company-info {
        grid-column: 1 / -1;
        margin-bottom: 20px;
        padding-right: 0;
    }
    
    .footer-logo-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 50px 0 30px;
    }
    
    .company-info {
        grid-column: 1 / -1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-disclaimer {
        text-align: center;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .payment-icons {
        justify-content: flex-start;
    }
    
    .payment-icons i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 25px;
    }
    
    .company-info {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .footer-logo-text {
        font-size: 1.6rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .footer-title {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: translateY(-2px);
    }
    
    .security-badges-footer {
        align-items: center;
    }
    
    .security-badge-footer {
        justify-content: center;
        text-align: center;
    }
    
    .payment-methods {
        text-align: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .payment-icons i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .copyright {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .disclaimer-text {
        justify-content: center;
        font-size: 0.85rem;
        text-align: center;
    }
}

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

/* Sticky Bottom Buttons */
.sticky-bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 58, 0.95) 50%, rgba(45, 45, 90, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.5s ease-out;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 65px;
    gap: 4px;
}

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

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

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

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

.sticky-btn:hover {
    transform: translateY(-3px);
}

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

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

/* Button Specific Styles */
.sticky-btn-login {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #5ba0f2 0%, #4589cd 100%);
    box-shadow: 0 -6px 20px rgba(74, 144, 226, 0.3);
    color: #ffffff;
}

.sticky-btn-register {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #5cbf60 0%, #55b059 100%);
    box-shadow: 0 -6px 20px rgba(76, 175, 80, 0.3);
    color: #ffffff;
}

.sticky-btn-bonus {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e35 100%);
    position: relative;
    overflow: hidden;
}

.sticky-btn-bonus::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #ff7b45 0%, #ff9e45 100%);
    box-shadow: 0 -6px 20px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

/* Shimmer animation for bonus button */
@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Slide in animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-btn {
        padding: 10px 6px;
        min-height: 60px;
        font-size: 0.8rem;
    }
    
    .sticky-btn i {
        font-size: 1.3rem;
    }
    
    .sticky-btn span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 8px 4px;
        min-height: 55px;
        font-size: 0.75rem;
    }
    
    .sticky-btn i {
        font-size: 1.2rem;
        margin-bottom: 1px;
    }
    
    .sticky-btn span {
        font-size: 0.7rem;
        line-height: 1.1;
    }
}

@media (max-width: 360px) {
    .sticky-btn {
        padding: 8px 2px;
        min-height: 50px;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
    }
    
    .sticky-btn span {
        font-size: 0.65rem;
    }
}

/* Ensure main content has bottom padding to avoid overlap */
body {
    padding-bottom: 75px;
}

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

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

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

/* Hide on very large screens if needed */
@media (min-width: 1400px) {
    .sticky-bottom-buttons {
        max-width: 500px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 15px 15px 0 0;
    }
}

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

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

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

.login-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

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

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

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

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

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

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

.error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(244, 67, 54, 0.1) 100%);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 10px;
    margin-bottom: 25px;
    color: #ff6b6b;
    font-size: 0.9rem;
    animation: shake 0.5s ease-in-out;
}

.error-message i {
    color: #f44336;
    font-size: 1rem;
}

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

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

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

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

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

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

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

.form-input:invalid {
    border-color: rgba(244, 67, 54, 0.5);
}

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

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

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

.password-toggle i {
    font-size: 1rem;
}

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

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

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

.login-btn {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

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

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

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

.register-btn i {
    font-size: 1rem;
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
}

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

.forgot-link:hover {
    color: #ffd700;
    text-decoration: underline;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 100px 15px;
    }
    
    .login-card {
        padding: 30px 25px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .logo-img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 100px 10px;
    }
    
    .login-card {
        padding: 25px 20px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 12px 15px;
    }
    
    .login-btn {
        padding: 14px 18px;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .login-container {
        max-width: 100%;
    }
    
    .login-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .login-title {
        font-size: 1.4rem;
    }
    
    .logo-img {
        width: 55px;
        height: 55px;
    }
}

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

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

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

.register-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

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

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

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

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

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

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

.error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(244, 67, 54, 0.1) 100%);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 10px;
    margin-bottom: 25px;
    color: #ff6b6b;
    font-size: 0.9rem;
    animation: shake 0.5s ease-in-out;
}

.error-message i {
    color: #f44336;
    font-size: 1rem;
}

.success-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.1) 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    margin-bottom: 25px;
    color: #4caf50;
    font-size: 0.9rem;
    animation: fadeIn 0.5s ease-in-out;
}

.success-message i {
    color: #4caf50;
    font-size: 1rem;
}

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

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

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

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

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

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

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

.form-input:invalid {
    border-color: rgba(244, 67, 54, 0.5);
}

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

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

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

.register-btn {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.register-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    filter: brightness(1.1);
}

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

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

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

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

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

.terms-notice {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #b8b8b8;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
    flex-wrap: wrap;
}

.terms-text i {
    color: #ffd700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

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

.terms-link:hover {
    color: #ffed4e;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-section {
        padding: 100px 15px;
    }
    
    .register-card {
        padding: 30px 25px;
    }
    
    .register-title {
        font-size: 1.8rem;
    }
    
    .logo-img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 100px 10px;
    }
    
    .register-card {
        padding: 25px 20px;
    }
    
    .register-title {
        font-size: 1.6rem;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 12px 15px;
    }
    
    .register-btn {
        padding: 14px 18px;
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .terms-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .register-container {
        max-width: 100%;
    }
    
    .register-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .register-title {
        font-size: 1.4rem;
    }
    
    .logo-img {
        width: 55px;
        height: 55px;
    }
    
    .terms-text {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 5px;
    }
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d2d5a 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(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content {
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

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

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

.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);
    animation: shimmer 2s infinite;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    filter: brightness(1.1);
}

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

/* Promotion Sections */
.new-member-bonus-section,
.first-deposit-bonus-section,
.daily-cashback-section,
.referral-program-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.new-member-bonus-section {
    background: linear-gradient(135deg, #1a1a3a 0%, #2d2d5a 100%);
}

.first-deposit-bonus-section {
    background: linear-gradient(135deg, #2d2d5a 0%, #0f0f23 100%);
}

.daily-cashback-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 100%);
}

.referral-program-section {
    background: linear-gradient(135deg, #1a1a3a 0%, #2d2d5a 100%);
}

.new-member-bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(76, 175, 80, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.first-deposit-bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(255, 193, 7, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.daily-cashback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom left, rgba(33, 150, 243, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.referral-program-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(156, 39, 176, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.promotion-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

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

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

.promotion-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    color: #000;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.promotion-card:hover .promotion-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

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

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

.promotion-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.benefit-item i {
    color: #4caf50;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.first-deposit-bonus-section .benefit-item i {
    color: #ffc107;
}

.daily-cashback-section .benefit-item i {
    color: #2196f3;
}

.referral-program-section .benefit-item i {
    color: #9c27b0;
}

.benefit-item span {
    color: #e8e8e8;
    font-size: 1.1rem;
    line-height: 1.6;
    flex: 1;
}

.promotion-cta {
    text-align: center;
    margin-top: 20px;
}

.promotion-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotion-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    filter: brightness(1.1);
}

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

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .promotion-card {
        padding: 40px 30px;
    }
    
    .promotion-title {
        font-size: 1.8rem;
    }
    
    .promotion-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-cta-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .new-member-bonus-section,
    .first-deposit-bonus-section,
    .daily-cashback-section,
    .referral-program-section {
        padding: 60px 0;
    }
    
    .promotion-card {
        padding: 30px 25px;
    }
    
    .promotion-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .promotion-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .promotion-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-item span {
        font-size: 1rem;
    }
    
    .promotion-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .promotion-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .promotion-card {
        padding: 25px 20px;
    }
    
    .promotion-title {
        font-size: 1.4rem;
    }
    
    .promotion-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .benefit-item {
        padding: 12px;
        gap: 12px;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .promotion-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .promotion-title {
        font-size: 1.2rem;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
}