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

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

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

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

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

/* Button Base Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

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

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

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

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

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: #c7d2fe;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #a78bfa;
    background: rgba(139, 92, 246, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.feature-item i {
    color: #8b5cf6;
    font-size: 16px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-content {
        gap: 40px;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-features {
        gap: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image {
        padding-left: 0;
        order: 1;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        font-size: 15px;
        padding: 14px 24px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 15px;
    }
    
    .feature-item {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .hero-img {
        max-width: 400px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .feature-item {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .hero-img {
        max-width: 100%;
        border-radius: 12px;
    }
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.header-logo i {
    font-size: 2rem;
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

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

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

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

.nav-link {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #e2e8f0;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

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

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

.header-cta .btn-cta {
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.header-cta .btn-cta:hover {
    background: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

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

.mobile-menu-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
}

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

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

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

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

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

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

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

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

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

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

.mobile-logo i {
    font-size: 1.5rem;
    color: #3b82f6;
}

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

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

.mobile-menu-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

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

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:last-child {
    border-bottom: none;
    margin-top: 20px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #e2e8f0;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 20px;
    color: #3b82f6;
}

.mobile-cta .cta-link {
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
    margin: 0 20px;
    border-radius: 25px;
    color: #ffffff;
    font-weight: 700;
    justify-content: center;
}

.mobile-cta .cta-link:hover {
    background: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
    transform: scale(1.02);
}

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

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    
    .header-content {
        min-height: 60px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .header-logo i {
        font-size: 1.8rem;
    }
    
    .mobile-menu {
        width: 100%;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2px;
    }
}

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

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

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

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

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

.lottery-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #10b981 0%, #f59e0b 50%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

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

.lottery-description p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.lottery-description strong {
    color: #10b981;
    font-weight: 700;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
}

.feature-card i {
    font-size: 2rem;
    color: #10b981;
    min-width: 40px;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.9rem;
    color: #a78bfa;
    margin: 0;
}

.lottery-summary {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    font-style: italic;
    border-left: 4px solid #10b981;
    padding-left: 20px;
    margin-top: 20px;
}

.lottery-summary strong {
    color: #10b981;
    font-weight: 700;
}

.lottery-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}

.lottery-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .lottery-section {
        padding: 60px 20px;
    }
    
    .lottery-content {
        gap: 40px;
    }
    
    .lottery-title {
        font-size: 2.2rem;
    }
    
    .lottery-description p {
        font-size: 1rem;
    }
    
    .lottery-features {
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-card i {
        font-size: 1.8rem;
        min-width: 35px;
    }
    
    .lottery-summary {
        font-size: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .lottery-section {
        padding: 40px 15px;
    }
    
    .lottery-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .lottery-text {
        padding-right: 0;
        order: 2;
    }
    
    .lottery-image {
        padding-left: 0;
        order: 1;
    }
    
    .lottery-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .lottery-description {
        margin-bottom: 30px;
    }
    
    .lottery-description p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .lottery-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .feature-card {
        padding: 12px;
        gap: 12px;
    }
    
    .feature-card i {
        font-size: 1.5rem;
        min-width: 30px;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .lottery-summary {
        font-size: 0.95rem;
        padding-left: 15px;
    }
    
    .lottery-img {
        max-width: 400px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .lottery-section {
        padding: 30px 10px;
    }
    
    .lottery-title {
        font-size: 1.6rem;
    }
    
    .lottery-description p {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 10px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-card i {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .lottery-summary {
        font-size: 0.9rem;
        padding-left: 12px;
    }
    
    .lottery-img {
        max-width: 100%;
        border-radius: 12px;
    }
}

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

.gaming-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.gaming-text {
    padding-left: 20px;
}

.gaming-title {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.gaming-description {
    margin-bottom: 30px;
}

.gaming-description p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.gaming-description strong {
    color: #f59e0b;
    font-weight: 700;
}

.gaming-link {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
}

.gaming-link p {
    margin: 0;
    font-size: 1rem;
    color: #cbd5e1;
    text-align: center;
}

.backlink {
    color: #f59e0b;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.backlink:hover {
    color: #fbbf24;
}

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

.game-type {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    padding: 18px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.game-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
}

.game-type i {
    font-size: 1.8rem;
    color: #f59e0b;
    min-width: 35px;
}

.type-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.type-content p {
    font-size: 0.85rem;
    color: #a78bfa;
    margin: 0;
}

.gaming-benefits {
    border-top: 2px solid rgba(245, 158, 11, 0.3);
    padding-top: 25px;
}

.gaming-benefits p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 15px;
}

.gaming-benefits p:last-child {
    margin-bottom: 0;
}

.gaming-benefits strong {
    color: #f59e0b;
    font-weight: 700;
}

.gaming-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.gaming-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .gaming-section {
        padding: 60px 20px;
    }
    
    .gaming-content {
        gap: 40px;
    }
    
    .gaming-title {
        font-size: 2rem;
    }
    
    .gaming-description p {
        font-size: 1rem;
    }
    
    .gaming-features {
        gap: 12px;
    }
    
    .game-type {
        padding: 15px 12px;
    }
    
    .game-type i {
        font-size: 1.6rem;
        min-width: 30px;
    }
    
    .gaming-benefits p {
        font-size: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .gaming-section {
        padding: 40px 15px;
    }
    
    .gaming-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .gaming-text {
        padding-left: 0;
        order: 2;
    }
    
    .gaming-image {
        padding-right: 0;
        order: 1;
    }
    
    .gaming-title {
        font-size: 1.7rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .gaming-description {
        margin-bottom: 25px;
    }
    
    .gaming-description p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .gaming-link {
        margin-bottom: 25px;
        padding: 12px;
    }
    
    .gaming-link p {
        font-size: 0.9rem;
    }
    
    .gaming-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .game-type {
        padding: 12px;
        gap: 10px;
    }
    
    .game-type i {
        font-size: 1.4rem;
        min-width: 28px;
    }
    
    .type-content h3 {
        font-size: 0.95rem;
    }
    
    .type-content p {
        font-size: 0.8rem;
    }
    
    .gaming-benefits {
        padding-top: 20px;
    }
    
    .gaming-benefits p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .gaming-img {
        max-width: 400px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .gaming-section {
        padding: 30px 10px;
    }
    
    .gaming-title {
        font-size: 1.5rem;
    }
    
    .gaming-description p {
        font-size: 0.9rem;
    }
    
    .gaming-link p {
        font-size: 0.85rem;
    }
    
    .game-type {
        padding: 10px;
        gap: 8px;
    }
    
    .game-type i {
        font-size: 1.2rem;
        min-width: 25px;
    }
    
    .type-content h3 {
        font-size: 0.9rem;
    }
    
    .type-content p {
        font-size: 0.75rem;
    }
    
    .gaming-benefits p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .gaming-img {
        max-width: 100%;
        border-radius: 12px;
    }
}

/* Login Section */
.login-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 50%, #1a1a2e 100%);
    padding: 80px 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(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

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

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

.login-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

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

.login-description p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.login-description strong {
    color: #3b82f6;
    font-weight: 700;
}

.inline-link {
    color: #06b6d4;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #0891b2;
}

.login-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.login-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.login-feature i {
    font-size: 1.5rem;
    color: #3b82f6;
    min-width: 35px;
}

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

.login-additional-info {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-left: 4px solid #06b6d4;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.login-additional-info p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 15px;
}

.login-additional-info p:last-child {
    margin-bottom: 0;
}

.login-additional-info strong {
    color: #06b6d4;
    font-weight: 700;
}

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

.login-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}

.login-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .login-section {
        padding: 60px 20px;
    }
    
    .login-content {
        gap: 40px;
    }
    
    .login-title {
        font-size: 2.1rem;
    }
    
    .login-description p {
        font-size: 1rem;
    }
    
    .login-features {
        padding: 20px;
        gap: 15px;
    }
    
    .login-feature i {
        font-size: 1.3rem;
        min-width: 30px;
    }
    
    .feature-info h3 {
        font-size: 0.95rem;
    }
    
    .login-additional-info {
        padding: 15px;
    }
    
    .login-additional-info p {
        font-size: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .login-section {
        padding: 40px 15px;
    }
    
    .login-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .login-text {
        padding-right: 0;
        order: 2;
    }
    
    .login-image {
        padding-left: 0;
        order: 1;
    }
    
    .login-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .login-description {
        margin-bottom: 30px;
    }
    
    .login-description p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .login-features {
        padding: 15px;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .login-feature {
        padding: 8px 0;
        gap: 12px;
    }
    
    .login-feature i {
        font-size: 1.2rem;
        min-width: 28px;
    }
    
    .feature-info h3 {
        font-size: 0.9rem;
    }
    
    .login-additional-info {
        padding: 12px;
        margin-bottom: 25px;
    }
    
    .login-additional-info p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .login-cta {
        margin-top: 20px;
    }
    
    .login-img {
        max-width: 400px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 30px 10px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .login-description p {
        font-size: 0.9rem;
    }
    
    .login-features {
        padding: 12px;
        gap: 10px;
    }
    
    .login-feature {
        padding: 6px 0;
        gap: 10px;
    }
    
    .login-feature i {
        font-size: 1.1rem;
        min-width: 25px;
    }
    
    .feature-info h3 {
        font-size: 0.85rem;
    }
    
    .login-additional-info {
        padding: 10px;
    }
    
    .login-additional-info p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .login-img {
        max-width: 100%;
        border-radius: 12px;
    }
}

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

.tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.tech-text {
    padding-left: 20px;
}

.tech-title {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

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

.tech-description p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.tech-description strong {
    color: #8b5cf6;
    font-weight: 700;
}

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

.tech-feature {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.tech-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.tech-feature i {
    font-size: 1.8rem;
    color: #8b5cf6;
    min-width: 35px;
}

.feature-detail h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

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

.tech-security {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-left: 4px solid #8b5cf6;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.security-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-title::before {
    content: '\f3ed';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.1rem;
}

.tech-security p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 15px;
}

.tech-security p:last-child {
    margin-bottom: 0;
}

.tech-security strong {
    color: #8b5cf6;
    font-weight: 700;
}

.tech-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.tech-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .tech-section {
        padding: 60px 20px;
    }
    
    .tech-content {
        gap: 40px;
    }
    
    .tech-title {
        font-size: 2rem;
    }
    
    .tech-description p {
        font-size: 1rem;
    }
    
    .tech-features {
        gap: 12px;
    }
    
    .tech-feature {
        padding: 15px;
    }
    
    .tech-feature i {
        font-size: 1.6rem;
        min-width: 30px;
    }
    
    .tech-security {
        padding: 20px;
    }
    
    .security-title {
        font-size: 1.2rem;
    }
    
    .tech-security p {
        font-size: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .tech-section {
        padding: 40px 15px;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .tech-text {
        padding-left: 0;
        order: 2;
    }
    
    .tech-image {
        padding-right: 0;
        order: 1;
    }
    
    .tech-title {
        font-size: 1.7rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .tech-description {
        margin-bottom: 30px;
    }
    
    .tech-description p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .tech-feature {
        padding: 12px;
        gap: 12px;
    }
    
    .tech-feature i {
        font-size: 1.4rem;
        min-width: 28px;
    }
    
    .feature-detail h3 {
        font-size: 0.95rem;
    }
    
    .feature-detail p {
        font-size: 0.8rem;
    }
    
    .tech-security {
        padding: 15px;
    }
    
    .security-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .tech-security p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .tech-img {
        max-width: 400px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .tech-section {
        padding: 30px 10px;
    }
    
    .tech-title {
        font-size: 1.5rem;
    }
    
    .tech-description p {
        font-size: 0.9rem;
    }
    
    .tech-feature {
        padding: 10px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .tech-feature i {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .feature-detail h3 {
        font-size: 0.9rem;
    }
    
    .feature-detail p {
        font-size: 0.75rem;
    }
    
    .tech-security {
        padding: 12px;
    }
    
    .security-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .tech-security p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .tech-img {
        max-width: 100%;
        border-radius: 12px;
    }
}

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

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

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

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

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

.premier-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 50%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

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

.premier-description p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.premier-description strong {
    color: #ef4444;
    font-weight: 700;
}

.premier-standards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.standard-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 0;
}

.standard-item i {
    font-size: 1.5rem;
    color: #ef4444;
    min-width: 35px;
}

.standard-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.premier-service {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-title::before {
    content: '\f0c0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.1rem;
}

.premier-service p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

.premier-service strong {
    color: #f59e0b;
    font-weight: 700;
}

.premier-membership {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-left: 4px solid #10b981;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.premier-membership p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 15px;
}

.premier-membership p:last-child {
    margin-bottom: 0;
}

.premier-membership strong {
    color: #10b981;
    font-weight: 700;
}

.inline-link {
    color: #10b981;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #14b8a6;
}

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

.premier-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}

.premier-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .premier-section {
        padding: 60px 20px;
    }
    
    .premier-content {
        gap: 40px;
    }
    
    .premier-title {
        font-size: 2.1rem;
    }
    
    .premier-description p {
        font-size: 1rem;
    }
    
    .premier-standards {
        padding: 20px;
        gap: 12px;
    }
    
    .standard-item i {
        font-size: 1.3rem;
        min-width: 30px;
    }
    
    .standard-content h3 {
        font-size: 0.95rem;
    }
    
    .premier-service {
        padding: 15px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .premier-service p,
    .premier-membership p {
        font-size: 1rem;
    }
    
    .premier-membership {
        padding: 15px;
    }
    
    .premier-cta {
        gap: 15px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .premier-section {
        padding: 40px 15px;
    }
    
    .premier-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .premier-text {
        padding-right: 0;
        order: 2;
    }
    
    .premier-image {
        padding-left: 0;
        order: 1;
    }
    
    .premier-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .premier-description {
        margin-bottom: 30px;
    }
    
    .premier-description p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .premier-standards {
        padding: 15px;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .standard-item {
        padding: 6px 0;
        gap: 12px;
    }
    
    .standard-item i {
        font-size: 1.2rem;
        min-width: 28px;
    }
    
    .standard-content h3 {
        font-size: 0.9rem;
    }
    
    .premier-service {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .premier-service p,
    .premier-membership p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .premier-membership {
        padding: 12px;
        margin-bottom: 25px;
    }
    
    .premier-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .premier-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .premier-img {
        max-width: 400px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .premier-section {
        padding: 30px 10px;
    }
    
    .premier-title {
        font-size: 1.6rem;
    }
    
    .premier-description p {
        font-size: 0.9rem;
    }
    
    .premier-standards {
        padding: 12px;
        gap: 8px;
    }
    
    .standard-item {
        padding: 4px 0;
        gap: 10px;
    }
    
    .standard-item i {
        font-size: 1.1rem;
        min-width: 25px;
    }
    
    .standard-content h3 {
        font-size: 0.85rem;
    }
    
    .premier-service {
        padding: 10px;
    }
    
    .service-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .premier-service p,
    .premier-membership p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .premier-membership {
        padding: 10px;
    }
    
    .premier-img {
        max-width: 100%;
        border-radius: 12px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

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

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

.footer-logo i {
    font-size: 2.5rem;
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.footer-logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

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

.contact-item i {
    color: #10b981;
    font-size: 1rem;
    width: 16px;
}

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

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

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

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 5px 0;
}

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

.footer-link i {
    color: #3b82f6;
    font-size: 0.9rem;
    width: 14px;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
    margin: 20px 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
}

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

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

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

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

/* Footer Disclaimer */
.footer-disclaimer {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.disclaimer-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fbbf24;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.disclaimer-text i {
    color: #ef4444;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 50px 0 30px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo-text {
        font-size: 1.8rem;
    }
    
    .footer-logo i {
        font-size: 2.2rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 25px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .disclaimer-text {
        font-size: 0.8rem;
        text-align: left;
        flex-direction: column;
        gap: 8px;
    }
    
    .disclaimer-text i {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 10px;
    }
    
    .footer-content {
        padding: 30px 0 20px;
        gap: 25px;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer-logo-text {
        font-size: 1.6rem;
    }
    
    .footer-logo i {
        font-size: 2rem;
    }
    
    .footer-description {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-title {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
    }
    
    .footer-links {
        align-items: center;
        gap: 10px;
    }
    
    .footer-link {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-social {
        gap: 10px;
        justify-content: center;
    }
    
    .footer-disclaimer {
        padding: 12px 15px;
        margin-bottom: 15px;
    }
    
    .disclaimer-text {
        font-size: 0.75rem;
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

.sticky-btn-text {
    font-family: 'Prompt', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
}

/* Login Button */
.sticky-btn-login {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

/* Register Button */
.sticky-btn-register {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

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

/* Bonus Button */
.sticky-btn-bonus {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.sticky-btn-bonus::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ef4444, #f59e0b, #ef4444, #f59e0b);
    background-size: 200% 200%;
    animation: gradientShift 2s ease infinite;
    z-index: -1;
    border-radius: inherit;
}

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

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

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

/* Pulse animation for bonus button */
.sticky-btn-bonus {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

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

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

@media (max-width: 320px) {
    .sticky-btn {
        padding: 6px 2px;
        min-height: 45px;
    }
    
    .sticky-btn i {
        font-size: 0.9rem;
        margin-bottom: 1px;
    }
    
    .sticky-btn-text {
        font-size: 0.65rem;
        line-height: 1;
    }
}

/* Add bottom padding to body to account for sticky buttons */
body {
    padding-bottom: 60px;
}

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

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

@media (max-width: 320px) {
    body {
        padding-bottom: 45px;
    }
}

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

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

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

.login-page-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.login-form-wrapper {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 35, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
    overflow: hidden;
}

.login-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b, #ef4444);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

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

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

.login-page-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

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

.login-form-container {
    width: 100%;
}

.login-form-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-form-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 30px;
}

.login-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fca5a5;
    font-size: 0.9rem;
}

.login-error i {
    color: #ef4444;
    font-size: 1rem;
}

.login-form {
    width: 100%;
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 8px;
    cursor: pointer;
}

.form-label i {
    color: #3b82f6;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: #6b7280;
}

.form-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(15, 15, 35, 0.9);
}

.form-input:invalid {
    border-color: rgba(239, 68, 68, 0.3);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

.password-input {
    padding-right: 50px;
}

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

.password-toggle:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.form-error {
    color: #fca5a5;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 20px;
}

.form-error:empty {
    display: none;
}

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

.login-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    position: relative;
    overflow: hidden;
}

.login-submit-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

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

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

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.register-btn {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #10b981;
    border-radius: 10px;
    color: #10b981;
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
}

.register-btn:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-help-text {
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.login-help-text i {
    color: #3b82f6;
    font-size: 0.85rem;
}

.help-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .login-page-section {
        padding: 20px 15px;
    }
    
    .login-page-content {
        min-height: calc(100vh - 40px);
    }
    
    .login-form-wrapper {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .login-page-logo {
        width: 70px;
        height: 70px;
    }
    
    .login-form-title {
        font-size: 1.6rem;
    }
    
    .login-form-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .password-input {
        padding-right: 45px;
    }
    
    .password-toggle {
        right: 10px;
    }
    
    .login-submit-btn {
        padding: 12px 18px;
        min-height: 46px;
    }
    
    .register-btn {
        padding: 10px 18px;
        min-height: 42px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .login-page-section {
        padding: 15px 10px;
    }
    
    .login-form-wrapper {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .login-page-logo {
        width: 60px;
        height: 60px;
    }
    
    .login-form-title {
        font-size: 1.4rem;
    }
    
    .login-form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-input {
        padding: 11px 12px;
    }
    
    .login-help-text {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 320px) {
    .login-form-wrapper {
        padding: 20px 15px;
    }
    
    .login-page-logo {
        width: 50px;
        height: 50px;
    }
    
    .login-form-title {
        font-size: 1.2rem;
    }
    
    .form-input {
        padding: 10px;
    }
    
    .login-submit-btn,
    .register-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

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

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

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

.register-page-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.register-form-wrapper {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 35, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
    overflow: hidden;
}

.register-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669, #047857, #10b981);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

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

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

.register-page-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s ease;
}

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

.register-form-container {
    width: 100%;
}

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

.register-form-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 30px;
}

.register-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fca5a5;
    font-size: 0.9rem;
}

.register-error i {
    color: #ef4444;
    font-size: 1rem;
}

.register-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #86efac;
    font-size: 0.9rem;
}

.register-success i {
    color: #10b981;
    font-size: 1rem;
}

.register-form {
    width: 100%;
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 8px;
    cursor: pointer;
}

.form-label i {
    color: #10b981;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: #6b7280;
}

.form-input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background: rgba(15, 15, 35, 0.9);
}

.form-input:invalid {
    border-color: rgba(239, 68, 68, 0.3);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-error {
    color: #fca5a5;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 20px;
}

.form-error:empty {
    display: none;
}

.form-help {
    color: #6b7280;
    font-size: 0.8rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-help i {
    color: #10b981;
    font-size: 0.75rem;
}

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

.register-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    position: relative;
    overflow: hidden;
}

.register-submit-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

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

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

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

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #3b82f6;
    border-radius: 10px;
    color: #3b82f6;
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
}

.login-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.register-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.register-help-text {
    color: #94a3b8;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 10px 0;
}

.register-help-text i {
    color: #10b981;
    font-size: 0.8rem;
}

.register-terms {
    color: #94a3b8;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    flex-wrap: wrap;
}

.register-terms i {
    color: #3b82f6;
    font-size: 0.75rem;
}

.terms-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .register-page-section {
        padding: 20px 15px;
    }
    
    .register-page-content {
        min-height: calc(100vh - 40px);
    }
    
    .register-form-wrapper {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .register-page-logo {
        width: 70px;
        height: 70px;
    }
    
    .register-form-title {
        font-size: 1.6rem;
    }
    
    .register-form-subtitle {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .register-submit-btn {
        padding: 12px 18px;
        min-height: 46px;
    }
    
    .login-btn {
        padding: 10px 18px;
        min-height: 42px;
        font-size: 0.9rem;
    }
    
    .register-terms {
        flex-direction: column;
        gap: 8px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .register-page-section {
        padding: 15px 10px;
    }
    
    .register-form-wrapper {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .register-page-logo {
        width: 60px;
        height: 60px;
    }
    
    .register-form-title {
        font-size: 1.4rem;
    }
    
    .register-form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-input {
        padding: 11px 12px;
    }
    
    .register-help-text,
    .register-terms {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 320px) {
    .register-form-wrapper {
        padding: 20px 15px;
    }
    
    .register-page-logo {
        width: 50px;
        height: 50px;
    }
    
    .register-form-title {
        font-size: 1.2rem;
    }
    
    .form-input {
        padding: 10px;
    }
    
    .register-submit-btn,
    .login-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Promotion Page Styles */

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

.promo-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(239, 68, 68, 0.15) 0%, rgba(245, 158, 11, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

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

.promo-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.promo-hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 50%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
}

.promo-hero-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.promo-hero-cta {
    margin-top: 40px;
}

/* Promotion Sections */
.promo-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.promo-section:nth-child(odd) {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

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

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

.promo-alt::before {
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

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

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

.promo-header {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.promo-icon {
    font-size: 3rem;
    color: #ef4444;
    animation: bounce 2s infinite;
}

.promo-alt .promo-icon {
    color: #10b981;
}

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

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

.promo-features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.promo-alt .feature-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-item i {
    font-size: 1.3rem;
    color: #ef4444;
    margin-top: 2px;
    min-width: 20px;
}

.promo-alt .feature-item i {
    color: #10b981;
}

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

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .promo-hero-section {
        padding: 80px 20px 60px;
    }
    
    .promo-hero-title {
        font-size: 2.5rem;
    }
    
    .promo-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .promo-section {
        padding: 60px 20px;
    }
    
    .promo-icon {
        font-size: 2.5rem;
    }
    
    .promo-title {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 18px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .promo-hero-section {
        padding: 60px 15px 50px;
    }
    
    .promo-hero-title {
        font-size: 2.2rem;
    }
    
    .promo-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .promo-section {
        padding: 50px 15px;
    }
    
    .promo-header {
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .promo-icon {
        font-size: 2.2rem;
    }
    
    .promo-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .promo-features {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 15px;
        gap: 12px;
    }
    
    .feature-item i {
        font-size: 1.2rem;
        min-width: 18px;
    }
    
    .feature-item span {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .promo-hero-section {
        padding: 50px 10px 40px;
    }
    
    .promo-hero-title {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .promo-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .promo-section {
        padding: 40px 10px;
    }
    
    .promo-header {
        margin-bottom: 25px;
        gap: 12px;
    }
    
    .promo-icon {
        font-size: 2rem;
    }
    
    .promo-title {
        font-size: 1.6rem;
    }
    
    .promo-features {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .feature-item {
        padding: 12px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        font-size: 1.5rem;
        margin-top: 0;
        margin-bottom: 5px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        gap: 8px;
    }
}

@media (max-width: 320px) {
    .promo-hero-title {
        font-size: 1.7rem;
    }
    
    .promo-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .promo-title {
        font-size: 1.4rem;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}