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

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

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

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

a:hover {
    color: #ffed4e;
}

/* Button Base Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    color: #000;
}

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

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

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 1rem;
}

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

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

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

.hero-text {
    padding-right: 2rem;
}

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

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #cccccc;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

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

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(45, 45, 45, 0.6);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

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

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

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.feature-text {
    font-size: 0.95rem;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
}

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

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.logo-link {
    text-decoration: none;
    display: block;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.logo-text:hover {
    color: #ffed4e;
    text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.4);
}

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

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

.nav-item {
    position: relative;
}

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

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

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

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

.header-cta {
    display: flex;
    align-items: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    color: #000;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

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

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

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

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

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

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow-y: auto;
}

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

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

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

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

.mobile-nav {
    flex: 1;
    padding: 2rem 0;
}

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

.mobile-nav-item {
    padding: 0 1.5rem;
}

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

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

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

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

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    color: #ffd700;
}

.mobile-cta-item {
    margin-top: 2rem;
    padding: 0 1.5rem;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.mobile-cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    color: #000;
}

/* Add top margin to main content to account for fixed header */
body {
    padding-top: 80px;
}

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

@media (max-width: 768px) {
    .main-nav,
    .desktop-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-container {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    body {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.8rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .mobile-menu-header {
        padding: 1rem;
    }
    
    .mobile-logo {
        font-size: 1.3rem;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .mobile-cta-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    body {
        padding-top: 60px;
    }
}

/* Modern Lottery Section */
.modern-lottery-section {
    padding: 5rem 1rem;
    background: #1a1a1a;
    position: relative;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.lottery-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.lottery-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.lottery-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.lottery-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(45, 45, 45, 0.3);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-item strong {
    color: #ffd700;
    font-weight: 600;
}

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

.lottery-details strong {
    color: #ffd700;
    font-weight: 600;
}

.lottery-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 2rem;
}

.lottery-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.lottery-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .lottery-content {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
    
    .lottery-img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .modern-lottery-section {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .lottery-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .lottery-image {
        order: -1;
        position: static;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .lottery-img {
        max-width: 100%;
    }
    
    .lottery-features {
        padding: 1.5rem;
    }
    
    .feature-item {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }
    
    .lottery-intro p,
    .lottery-details p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modern-lottery-section {
        padding: 3rem 0.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .lottery-features {
        padding: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.5rem;
    }
    
    .feature-item i {
        margin-bottom: 0.5rem;
    }
    
    .lottery-intro p,
    .lottery-details p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* Buying Guide Section */
.buying-guide-section {
    padding: 5rem 1rem;
    background: #0f0f0f;
    position: relative;
}

.buying-guide-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%, rgba(255, 215, 0, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.buying-guide-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.guide-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.guide-image {
    position: sticky;
    top: 2rem;
}

.guide-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    backdrop-filter: blur(5px);
}

.guide-img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.guide-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.guide-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
    background: rgba(45, 45, 45, 0.2);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.guide-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.guide-factors {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.factor-card {
    display: flex;
    gap: 2rem;
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.6), rgba(30, 30, 30, 0.8));
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.factor-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.factor-card:hover::before {
    opacity: 1;
}

.factor-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.factor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
}

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

.factor-title {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.factor-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.factor-content strong {
    color: #ffd700;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .guide-content {
        grid-template-columns: 350px 1fr;
        gap: 3rem;
    }
    
    .factor-card {
        padding: 2rem;
    }
    
    .factor-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .buying-guide-section {
        padding: 4rem 1rem;
    }
    
    .guide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide-image {
        position: static;
        order: -1;
    }
    
    .guide-img {
        max-width: 100%;
    }
    
    .factor-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .factor-icon {
        align-self: center;
        margin-bottom: 1rem;
    }
    
    .guide-intro p {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .factor-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .factor-title {
        font-size: 1.25rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .buying-guide-section {
        padding: 3rem 0.5rem;
    }
    
    .guide-factors {
        gap: 1.5rem;
    }
    
    .factor-card {
        padding: 1.5rem 1rem;
    }
    
    .factor-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .factor-title {
        font-size: 1.1rem;
    }
    
    .factor-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .guide-intro p {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
}

/* Cat888 Platform Section */
.cat888-platform-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.cat888-platform-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(-2%, -2%) rotate(0deg); }
    100% { transform: translate(2%, 2%) rotate(1deg); }
}

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

.platform-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}

.platform-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.platform-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 2rem;
    background: rgba(45, 45, 45, 0.3);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.platform-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.8), rgba(30, 30, 30, 0.9));
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.feature-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

.platform-details {
    margin-top: 3rem;
}

.detail-section {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 4rem;
    align-items: center;
}

.detail-image {
    position: relative;
}

.cat888-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.cat888-img:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d0d0d0;
    padding: 1.5rem;
    background: rgba(45, 45, 45, 0.4);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.detail-text p:hover {
    background: rgba(45, 45, 45, 0.6);
    transform: translateX(10px);
}

.detail-text strong {
    color: #ffd700;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        gap: 1.5rem;
    }
    
    .detail-section {
        grid-template-columns: 400px 1fr;
        gap: 3rem;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cat888-platform-section {
        padding: 4rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detail-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .detail-image {
        order: -1;
    }
    
    .platform-intro p {
        font-size: 1rem;
        padding: 1.5rem;
        text-align: left;
    }
    
    .detail-text {
        text-align: left;
    }
    
    .detail-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cat888-platform-section {
        padding: 3rem 0.5rem;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .feature-number {
        align-self: center;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .feature-info h4 {
        font-size: 1rem;
        text-align: left;
    }
    
    .platform-intro p {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
    
    .detail-text p {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
}

/* Ruay Platform Section */
.ruay-platform-section {
    padding: 5rem 1rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.ruay-platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.ruay-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}

.ruay-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.ruay-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.6), rgba(30, 30, 30, 0.8));
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.ruay-intro p::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.3);
    font-family: serif;
}

.ruay-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.ruay-features {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.ruay-feature-main {
    width: 100%;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.highlight-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

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

.highlight-content h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

.highlight-content strong {
    color: #ffd700;
    font-weight: 600;
}

.ruay-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.7), rgba(25, 25, 25, 0.9));
    padding: 2.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, transparent, #ffd700);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.9), rgba(25, 25, 25, 1));
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.feature-card h4 {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.feature-card strong {
    color: #ffd700;
    font-weight: 600;
}

.ruay-image-section {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.ruay-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease;
}

.ruay-img:hover {
    transform: scale(1.02) rotate(-0.5deg);
    box-shadow: 0 40px 90px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ruay-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-highlight {
        padding: 2.5rem;
        gap: 1.5rem;
    }
    
    .highlight-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .highlight-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .ruay-platform-section {
        padding: 4rem 1rem;
    }
    
    .ruay-feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .highlight-content {
        text-align: center;
    }
    
    .ruay-intro p {
        font-size: 1rem;
        padding: 2rem;
        text-align: left;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ruay-platform-section {
        padding: 3rem 0.5rem;
    }
    
    .ruay-intro p {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    .ruay-intro p::before {
        font-size: 3rem;
        top: 0.5rem;
        left: 1rem;
    }
    
    .feature-highlight {
        padding: 1.5rem;
    }
    
    .highlight-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .highlight-content h3 {
        font-size: 1.4rem;
    }
    
    .highlight-content p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
}

/* Lotto888 Platform Section */
.lotto888-platform-section {
    padding: 5rem 1rem;
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.lotto888-platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg at 50% 50%, rgba(255, 215, 0, 0.08) 0deg, transparent 60deg, rgba(255, 215, 0, 0.05) 120deg, transparent 180deg, rgba(255, 215, 0, 0.08) 240deg, transparent 300deg);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

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

.lotto888-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}

.platform-overview {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.overview-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
    background: rgba(45, 45, 45, 0.5);
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid #ffd700;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.overview-text p:hover {
    transform: translateX(10px);
    background: rgba(45, 45, 45, 0.7);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.overview-text strong {
    color: #ffd700;
    font-weight: 700;
}

.overview-image {
    position: relative;
}

.lotto888-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.lotto888-img:hover {
    transform: rotateY(5deg) rotateX(2deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-highlight-item::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.6s ease;
}

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

.feature-highlight-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.highlight-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.highlight-text strong {
    color: #ffd700;
    font-weight: 600;
}

.lottery-types-section {
    background: rgba(45, 45, 45, 0.3);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.types-title {
    font-size: 2rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
}

.types-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.lottery-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lottery-type-card {
    background: linear-gradient(145deg, rgba(60, 60, 60, 0.6), rgba(40, 40, 40, 0.8));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.lottery-type-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.1);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.lottery-type-card h4 {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.lottery-type-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    text-align: left;
    margin: 0;
}

.lottery-type-card strong {
    color: #ffd700;
    font-weight: 600;
}

.financial-management {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.financial-content h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.financial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.financial-content strong {
    color: #ffd700;
    font-weight: 600;
}

.other-platforms {
    background: rgba(30, 30, 30, 0.7);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.other-platforms h3 {
    font-size: 1.8rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.platforms-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.platform-item {
    background: rgba(45, 45, 45, 0.6);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.platform-item:hover {
    background: rgba(45, 45, 45, 0.8);
    border-color: rgba(255, 215, 0, 0.4);
    transform: scale(1.02);
}

.platform-name {
    color: #d0d0d0;
    font-size: 0.95rem;
    font-weight: 500;
}

.platforms-conclusion p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    text-align: center;
    font-style: italic;
    background: rgba(45, 45, 45, 0.4);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .platform-overview {
        grid-template-columns: 1fr 350px;
        gap: 2rem;
    }
    
    .lottery-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platforms-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lotto888-platform-section {
        padding: 4rem 1rem;
    }
    
    .platform-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-image {
        order: -1;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lottery-types-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-list {
        grid-template-columns: 1fr;
    }
    
    .overview-text p {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .lottery-types-section,
    .financial-management,
    .other-platforms {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .lotto888-platform-section {
        padding: 3rem 0.5rem;
    }
    
    .feature-highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .highlight-text {
        text-align: center;
    }
    
    .overview-text p {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
    
    .lottery-types-section,
    .financial-management,
    .other-platforms {
        padding: 1.5rem;
    }
    
    .types-title {
        font-size: 1.5rem;
    }
    
    .lottery-type-card {
        padding: 1.5rem;
    }
    
    .type-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .platform-item {
        padding: 0.8rem;
    }
    
    .platform-name {
        font-size: 0.9rem;
    }
}

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

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

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 1rem 2rem;
}

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

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

.contact-item i {
    width: 20px;
    color: #ffd700;
    font-size: 1rem;
}

.footer-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

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

.footer-nav li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
    position: relative;
}

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

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

.footer-nav li a:hover {
    color: #ffd700;
    transform: translateX(8px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.social-link:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.payment-methods {
    margin-top: 1rem;
}

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

.payment-icons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #cccccc;
    transition: all 0.3s ease;
}

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

.payment-icon i {
    width: 20px;
    color: #ffd700;
    font-size: 1rem;
}

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

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

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

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

.disclaimer-text {
    font-size: 0.85rem;
    color: #999999;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 2rem;
        padding: 3rem 1rem 2rem;
    }
    
    .footer-services {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-services .footer-title {
        grid-column: span 2;
    }
    
    .footer-services .footer-nav {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 3rem 1rem 2rem;
    }
    
    .footer-about {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-contact {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-services {
        grid-column: span 1;
        display: block;
    }
    
    .footer-social {
        grid-column: span 2;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .payment-icons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-disclaimer {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .footer-about,
    .footer-links,
    .footer-services,
    .footer-legal,
    .footer-social {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-logo-text {
        font-size: 1.6rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-item:hover {
        transform: scale(1.05);
    }
    
    .footer-nav li a:hover {
        transform: scale(1.05);
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .payment-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .copyright p {
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.5;
    }
    
    .disclaimer-text {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 215, 0, 0.2);
    min-height: 70px;
}

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

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

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

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

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

/* Individual button colors */
.sticky-login {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8), rgba(21, 101, 192, 0.8));
}

.sticky-login:hover,
.sticky-login:active {
    background: linear-gradient(135deg, rgba(33, 150, 243, 1), rgba(21, 101, 192, 1));
    transform: translateY(-2px);
    color: #ffffff;
}

.sticky-login i {
    color: #64b5f6;
}

.sticky-login:hover i,
.sticky-login:active i {
    color: #ffffff;
    transform: scale(1.1);
}

.sticky-register {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8), rgba(56, 142, 60, 0.8));
}

.sticky-register:hover,
.sticky-register:active {
    background: linear-gradient(135deg, rgba(76, 175, 80, 1), rgba(56, 142, 60, 1));
    transform: translateY(-2px);
    color: #ffffff;
}

.sticky-register i {
    color: #81c784;
}

.sticky-register:hover i,
.sticky-register:active i {
    color: #ffffff;
    transform: scale(1.1);
}

.sticky-bonus {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 193, 7, 0.9));
    color: #000;
    animation: pulse-glow 2s infinite;
}

.sticky-bonus:hover,
.sticky-bonus:active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 1), rgba(255, 193, 7, 1));
    transform: translateY(-3px);
    color: #000;
    box-shadow: 0 -8px 25px rgba(255, 215, 0, 0.4);
    animation: none;
}

.sticky-bonus i {
    color: #f57f17;
}

.sticky-bonus:hover i,
.sticky-bonus:active i {
    color: #000;
    transform: scale(1.2) rotate(10deg);
}

.sticky-bonus .btn-text {
    color: #000;
    font-weight: 700;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 -2px 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 -4px 20px rgba(255, 215, 0, 0.6);
    }
    100% {
        box-shadow: 0 -2px 10px rgba(255, 215, 0, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-buttons {
        border-top-width: 1px;
    }
    
    .sticky-btn {
        padding: 0.8rem 0.3rem;
        font-size: 0.85rem;
        min-height: 65px;
    }
    
    .sticky-btn i {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }
    
    .btn-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 0.7rem 0.2rem;
        font-size: 0.8rem;
        min-height: 60px;
    }
    
    .sticky-btn i {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .btn-text {
        font-size: 0.7rem;
        line-height: 1.1;
    }
}

@media (max-width: 360px) {
    .sticky-btn {
        padding: 0.6rem 0.1rem;
        min-height: 55px;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
    }
    
    .btn-text {
        font-size: 0.65rem;
    }
}

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

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

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

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

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

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

@keyframes backgroundFloat {
    0% { transform: translate(-2%, -2%) rotate(0deg); }
    100% { transform: translate(2%, 2%) rotate(1deg); }
}

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

.login-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.9), rgba(30, 30, 30, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, transparent, #ffd700, transparent, #ffd700);
    border-radius: 24px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
    opacity: 0.7;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-logo {
    margin-bottom: 1.5rem;
}

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 215, 0, 0.4);
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.error-message {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.9), rgba(211, 47, 47, 0.9));
    border: 1px solid rgba(244, 67, 54, 0.6);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: none;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
}

.error-message.show {
    display: flex;
    animation: errorSlideIn 0.3s ease;
}

@keyframes errorSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #ffd700;
    font-size: 1.1rem;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(60, 60, 60, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(60, 60, 60, 0.9);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #999999;
    font-size: 0.95rem;
}

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

.form-input:valid {
    border-color: rgba(76, 175, 80, 0.5);
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #ffd700;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 2;
    padding: 0.5rem;
}

.toggle-password:hover {
    color: #ffed4e;
    transform: scale(1.1);
}

.field-error {
    color: #f44336;
    font-size: 0.85rem;
    margin-left: 0.5rem;
    min-height: 1.2rem;
    display: block;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.login-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
}

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

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

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

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

.btn-text {
    transition: opacity 0.3s ease;
}

.btn-loader {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.register-btn {
    background: transparent;
    color: #ffd700;
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.register-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.8);
    transform: translateY(-2px);
    color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #999999;
    font-size: 0.85rem;
    padding: 1rem;
    background: rgba(45, 45, 45, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.security-note i {
    color: #4caf50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 1rem 0.5rem;
        min-height: calc(100vh - 160px);
    }
    
    .login-container {
        max-width: 400px;
    }
    
    .login-card {
        padding: 2rem;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 1rem 0.5rem;
    }
    
    .login-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .login-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 0.9rem 1rem 0.9rem 2.8rem;
        font-size: 0.95rem;
    }
    
    .input-icon {
        left: 0.8rem;
        font-size: 1rem;
    }
    
    .login-btn,
    .register-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .security-note {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
}

@media (max-width: 360px) {
    .login-card {
        padding: 1.25rem;
    }
    
    .login-title {
        font-size: 1.4rem;
    }
    
    .form-input {
        padding: 0.8rem 1rem 0.8rem 2.6rem;
    }
}

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

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        conic-gradient(from 0deg at 50% 50%, rgba(255, 215, 0, 0.05) 0deg, transparent 60deg, rgba(255, 215, 0, 0.03) 120deg, transparent 180deg);
    animation: backgroundPulse 25s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0% { 
        transform: translate(-1%, -1%) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    100% { 
        transform: translate(1%, 1%) rotate(2deg) scale(1.02);
        opacity: 1;
    }
}

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

.register-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.95), rgba(30, 30, 30, 0.98));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.register-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #ffd700 0%, transparent 25%, 
        #ffd700 50%, transparent 75%, 
        #ffd700 100%);
    border-radius: 28px;
    z-index: -1;
    animation: borderRotate 4s linear infinite;
    opacity: 0.8;
}

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

.register-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 50px 120px rgba(0, 0, 0, 0.9),
        0 20px 60px rgba(255, 215, 0, 0.2);
}

.register-header {
    text-align: center;
    margin-bottom: 3rem;
}

.register-logo {
    margin-bottom: 2rem;
    position: relative;
}

.logo-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease;
    border: 4px solid rgba(255, 215, 0, 0.5);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { 
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
        transform: scale(1.02);
    }
}

.logo-image:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.7);
}

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.8rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    position: relative;
}

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

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

.error-message {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.95), rgba(211, 47, 47, 0.95));
    border: 2px solid rgba(244, 67, 54, 0.7);
    color: #ffffff;
    padding: 1.2rem 1.8rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: none;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.error-message.show {
    display: flex;
    animation: messageSlideIn 0.4s ease;
}

.success-message {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.95), rgba(56, 142, 60, 0.95));
    border: 2px solid rgba(76, 175, 80, 0.7);
    color: #ffffff;
    padding: 1.2rem 1.8rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: none;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.success-message.show {
    display: flex;
    animation: messageSlideIn 0.4s ease;
}

@keyframes messageSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-label {
    font-weight: 700;
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1.2rem;
    color: #ffd700;
    font-size: 1.2rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.form-input {
    width: 100%;
    padding: 1.3rem 1.2rem 1.3rem 3.5rem;
    background: rgba(60, 60, 60, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.8);
    background: rgba(60, 60, 60, 1);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.form-input:focus + .input-icon {
    color: #ffed4e;
    transform: scale(1.1);
}

.form-input::placeholder {
    color: #999999;
    font-size: 1rem;
}

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

.form-input:valid {
    border-color: rgba(76, 175, 80, 0.6);
}

.field-error {
    color: #f44336;
    font-size: 0.9rem;
    margin-left: 0.8rem;
    min-height: 1.3rem;
    display: block;
    font-weight: 500;
}

.field-help {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999999;
    font-size: 0.85rem;
    margin-left: 0.8rem;
    line-height: 1.4;
}

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

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.register-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 1.3rem 2.5rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.register-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.register-btn:active {
    transform: translateY(-2px) scale(0.98);
}

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

.btn-text {
    transition: opacity 0.3s ease;
}

.btn-loader {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.login-btn {
    background: transparent;
    color: #ffd700;
    border: 2px solid rgba(255, 215, 0, 0.6);
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

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

.login-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 1);
    transform: translateY(-3px);
    color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.register-footer {
    margin-top: 2.5rem;
    text-align: center;
}

.terms-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.8rem;
    color: #999999;
    font-size: 0.85rem;
    padding: 1.2rem;
    background: rgba(45, 45, 45, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 2rem;
    line-height: 1.5;
    text-align: left;
}

.terms-note i {
    color: #4caf50;
    margin-top: 2px;
    flex-shrink: 0;
}

.security-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.8rem;
    text-align: center;
    padding: 1rem;
    background: rgba(45, 45, 45, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

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

.security-item i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-section {
        padding: 1.5rem 0.5rem;
        min-height: calc(100vh - 160px);
    }
    
    .register-container {
        max-width: 420px;
    }
    
    .register-card {
        padding: 2.5rem;
    }
    
    .register-title {
        font-size: 2rem;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .security-features {
        flex-direction: column;
    }
    
    .security-item {
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 1rem 0.5rem;
    }
    
    .register-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .register-card {
        padding: 2rem;
        margin: 1rem 0;
        border-radius: 20px;
    }
    
    .register-title {
        font-size: 1.8rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-input {
        padding: 1.1rem 1rem 1.1rem 3.2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .input-icon {
        left: 1rem;
        font-size: 1.1rem;
    }
    
    .register-btn,
    .login-btn {
        padding: 1.1rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .terms-note {
        font-size: 0.8rem;
        padding: 1rem;
        text-align: center;
        flex-direction: column;
    }
    
    .security-item {
        font-size: 0.75rem;
        padding: 0.8rem;
    }
}

@media (max-width: 360px) {
    .register-card {
        padding: 1.5rem;
    }
    
    .register-title {
        font-size: 1.6rem;
    }
    
    .form-input {
        padding: 1rem 1rem 1rem 3rem;
    }
    
    .register-btn {
        font-size: 0.95rem;
    }
    
    .logo-image {
        width: 65px;
        height: 65px;
    }
}

/* Hero Section */
.hero-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 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, 215, 0, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.12) 0%, transparent 60%),
        conic-gradient(from 45deg at 50% 50%, rgba(255, 215, 0, 0.08) 0deg, transparent 90deg, rgba(255, 215, 0, 0.06) 180deg, transparent 270deg);
    animation: heroGlow 20s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        transform: translate(-3%, -3%) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(3%, 3%) rotate(5deg) scale(1.05);
        opacity: 1;
    }
}

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

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

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    animation: titlePulse 3s ease-in-out infinite alternate;
}

@keyframes titlePulse {
    0% {
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow: 3px 3px 16px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
    }
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 193, 7, 0.9));
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.8);
    animation: badgeBounce 2s ease-in-out infinite alternate;
}

@keyframes badgeBounce {
    0% {
        transform: translateY(0px) scale(1);
    }
    100% {
        transform: translateY(-5px) scale(1.02);
    }
}

.hero-badge i {
    font-size: 1.5rem;
    animation: iconSpin 4s linear infinite;
}

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

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.hero-cta:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    color: #000;
}

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

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

/* Promotion Sections */
.promotion-section {
    padding: 4rem 1rem;
    background: #1a1a1a;
    position: relative;
}

.promotion-section:nth-child(even) {
    background: #0f0f0f;
}

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

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

.promotion-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.9), rgba(30, 30, 30, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #ffd700 0%, transparent 20%, 
        #ffd700 40%, transparent 60%, 
        #ffd700 80%, transparent 100%);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promotion-card:hover::before {
    opacity: 0.6;
    animation: borderFlow 2s linear infinite;
}

@keyframes borderFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.promotion-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 35px 80px rgba(255, 215, 0, 0.2);
}

.promotion-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.promotion-card:hover .promotion-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

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

.promotion-content {
    margin-bottom: 2.5rem;
}

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

.promotion-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    padding: 1rem;
    background: rgba(45, 45, 45, 0.5);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.promotion-item:hover {
    background: rgba(45, 45, 45, 0.7);
    transform: translateX(10px);
    border-left-width: 6px;
}

.promotion-item i {
    color: #4caf50;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.promotion-item:hover i {
    color: #66bb6a;
    transform: scale(1.1);
}

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

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.promo-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    color: #000;
}

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

.promo-btn:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .promotion-header {
        gap: 1.5rem;
    }
    
    .promotion-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .promotion-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .hero-cta {
        font-size: 1.2rem;
        padding: 1.25rem 2.5rem;
    }
    
    .promotion-section {
        padding: 3rem 1rem;
    }
    
    .promotion-card {
        padding: 2rem;
    }
    
    .promotion-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .promotion-icon {
        align-self: center;
    }
    
    .promotion-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-cta {
        font-size: 1rem;
        padding: 1rem 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .promotion-section {
        padding: 2rem 0.5rem;
    }
    
    .promotion-card {
        padding: 1.5rem;
    }
    
    .promotion-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .promotion-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .promotion-item {
        font-size: 0.95rem;
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .promotion-item:hover {
        transform: scale(1.02);
    }
    
    .promo-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .promotion-title {
        font-size: 1.2rem;
    }
    
    .promotion-item {
        font-size: 0.9rem;
    }
    
    .promo-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}