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

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

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

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

a:hover {
    color: #ffed4e;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.hero-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(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

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

.hero-description {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 32px;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    color: #000;
}

.btn-secondary {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.4);
    color: #fff;
}

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

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

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    border-radius: 0 0 20px 20px;
    padding: 30px;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 8px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #e0e0e0;
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stat-item i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-overlay {
        padding: 20px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item i {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

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

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #8a2be2;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

/* Header CTA Button */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #000;
}

.header-cta-btn i {
    font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
}

.hamburger {
    width: 24px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

.mobile-menu-toggle.active .hamburger: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);
    z-index: 9999;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

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

.mobile-menu-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(-50px);
    transition: transform 0.3s ease 0.1s;
}

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

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

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

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

.mobile-menu-close:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.mobile-nav-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #e0e0e0;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
    border: 2px solid transparent;
}

.mobile-nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.mobile-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 250px;
}

.mobile-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    color: #000;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 40px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .nav-menu {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        height: 65px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-subtitle {
        font-size: 1rem;
    }
    
    .mobile-nav-link {
        font-size: 1.2rem;
        min-width: 180px;
        padding: 12px 25px;
    }
    
    .mobile-cta-btn {
        font-size: 1.1rem;
        min-width: 220px;
        padding: 14px 28px;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-nav {
        padding: 30px 15px;
    }
    
    .mobile-nav-list {
        gap: 25px;
        margin-bottom: 40px;
    }
}

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

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

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

/* Network Section Styles */
.network-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

.network-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 32px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.network-description strong {
    color: #ffd700;
    font-weight: 700;
}

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

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

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.feature-item i {
    font-size: 2rem;
    color: #ffd700;
    min-width: 40px;
}

.feature-content h3 {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 4px;
    font-weight: 700;
}

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

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

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

.network-img:hover {
    transform: scale(1.02) rotate(1deg);
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1rem;
}

.overlay-content i {
    font-size: 1.5rem;
}

/* Arrest Information Card */
.arrest-info {
    margin-bottom: 60px;
}

.arrest-card {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.arrest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.arrest-header i {
    font-size: 2rem;
    color: #dc143c;
}

.arrest-header h3 {
    font-size: 1.8rem;
    color: #dc143c;
    margin: 0;
}

.arrest-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-align: justify;
}

.arrest-details strong {
    color: #ffd700;
}

.arrest-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 15px;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #dc143c;
    margin-bottom: 8px;
}

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

/* Impact Section */
.impact-section h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 24px;
    text-align: center;
}

.impact-section > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: justify;
    margin-bottom: 40px;
}

.impact-section strong {
    color: #ffd700;
}

.key-points {
    display: grid;
    gap: 20px;
}

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

.point-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.point-item i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-top: 4px;
    min-width: 24px;
}

.point-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.point-content strong {
    color: #ffd700;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .network-container {
        padding: 0 40px;
    }
    
    .network-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .network-section {
        padding: 80px 20px;
    }
    
    .network-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .network-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .network-features {
        grid-template-columns: 1fr;
    }
    
    .arrest-card {
        padding: 30px 20px;
    }
    
    .arrest-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .arrest-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .impact-section h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .network-section {
        padding: 60px 15px;
    }
    
    .network-container {
        padding: 0 15px;
    }
    
    .network-title {
        font-size: 1.8rem;
    }
    
    .network-description p {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .arrest-card {
        padding: 20px 15px;
    }
    
    .arrest-header h3 {
        font-size: 1.5rem;
    }
    
    .overlay-content {
        flex-direction: column;
        gap: 8px;
        font-size: 0.9rem;
    }
    
    .point-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .impact-section h3 {
        font-size: 1.6rem;
    }
}

/* Status Section Styles */
.status-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.status-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(220, 20, 60, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255, 69, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.status-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #dc143c 0%, #ff4500 50%, #dc143c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.status-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.status-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: justify;
}

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

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

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

.status-img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    animation: pulse 2s infinite;
}

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

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

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc143c, #ff4500, #dc143c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.problem-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.major-problem {
    border-left: 4px solid #dc143c;
}

.safety-concern {
    border-left: 4px solid #ff4500;
}

.access-issue {
    border-left: 4px solid #ffd700;
}

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

.problem-header i {
    font-size: 2rem;
    color: #dc143c;
}

.safety-concern .problem-header i {
    color: #ff4500;
}

.access-issue .problem-header i {
    color: #ffd700;
}

.problem-header h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.problem-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
    text-align: justify;
    margin: 0;
}

.problem-content strong {
    color: #ffd700;
    font-weight: 700;
}

/* Lifestyle Impact Section */
.lifestyle-impact {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 50px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.lifestyle-impact h3 {
    font-size: 2rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.lifestyle-impact h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

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

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

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

.impact-stats {
    display: grid;
    gap: 25px;
}

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

.impact-stat:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: scale(1.05);
}

.impact-stat i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 12px;
    display: block;
}

.impact-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .status-container {
        padding: 0 40px;
    }
    
    .status-title {
        font-size: 2.2rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .status-section {
        padding: 80px 20px;
    }
    
    .status-title {
        font-size: 2rem;
    }
    
    .status-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card {
        padding: 25px 20px;
    }
    
    .lifestyle-impact {
        padding: 30px 20px;
    }
    
    .impact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lifestyle-impact h3 {
        font-size: 1.8rem;
    }
    
    .impact-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .status-section {
        padding: 60px 15px;
    }
    
    .status-container {
        padding: 0 15px;
    }
    
    .status-title {
        font-size: 1.8rem;
    }
    
    .problem-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .problem-header h3 {
        font-size: 1.2rem;
    }
    
    .lifestyle-impact {
        padding: 20px 15px;
    }
    
    .lifestyle-impact h3 {
        font-size: 1.6rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .impact-stat {
        padding: 20px 15px;
    }
    
    .impact-stat i {
        font-size: 2rem;
    }
    
    .impact-stat .stat-number {
        font-size: 1.3rem;
    }
    
    .status-badge {
        position: static;
        margin: 20px auto 0;
        display: inline-flex;
    }
}

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

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

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

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

.system-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* System Introduction */
.system-intro {
    margin-bottom: 80px;
}

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

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: justify;
}

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

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

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

.intro-img:hover {
    transform: scale(1.02) rotate(-1deg);
}

.intro-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffd700;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.intro-overlay i {
    font-size: 1.2rem;
}

/* Service Features */
.service-features {
    margin-bottom: 80px;
}

.service-features h3 {
    font-size: 2rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.service-features h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.features-grid {
    display: grid;
    gap: 30px;
}

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

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

.feature-icon {
    min-width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

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

.feature-content h4 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
    text-align: justify;
    margin: 0;
}

.feature-content strong {
    color: #ffd700;
    font-weight: 700;
}

/* Game Variety Section */
.game-variety {
    margin-bottom: 80px;
    text-align: center;
}

.game-variety h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 24px;
}

.game-variety > p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.game-variety strong {
    color: #ffd700;
    font-weight: 700;
}

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

.game-type {
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.game-type:hover {
    transform: translateY(-5px);
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
}

.game-type i {
    font-size: 3rem;
    color: #8a2be2;
    margin-bottom: 20px;
    display: block;
}

.game-type h4 {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 12px;
    font-weight: 700;
}

.game-type p {
    font-size: 1rem;
    color: #e0e0e0;
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 80px;
}

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

.review-points {
    display: grid;
    gap: 25px;
}

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

.review-point:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.review-point i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-top: 2px;
    min-width: 24px;
}

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

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

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

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

/* System Highlights */
.system-highlights {
    margin-bottom: 40px;
}

.highlight-grid {
    display: grid;
    gap: 30px;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::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;
}

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

.highlight-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.highlight-header i {
    font-size: 2rem;
    color: #ffd700;
}

.highlight-header h4 {
    font-size: 1.4rem;
    color: #ffd700;
    margin: 0;
    font-weight: 700;
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .system-container {
        padding: 0 40px;
    }
    
    .system-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .system-section {
        padding: 80px 20px;
    }
    
    .system-title {
        font-size: 2rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-content {
        order: 2;
    }
    
    .intro-image {
        order: 1;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .game-types {
        grid-template-columns: 1fr;
    }
    
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reviews-content .review-image {
        order: -1;
    }
    
    .service-features h3,
    .game-variety h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .system-section {
        padding: 60px 15px;
    }
    
    .system-container {
        padding: 0 15px;
    }
    
    .system-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-content h4 {
        font-size: 1.3rem;
    }
    
    .game-type {
        padding: 25px 20px;
    }
    
    .game-type i {
        font-size: 2.5rem;
    }
    
    .highlight-card {
        padding: 25px 20px;
    }
    
    .highlight-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .review-point {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-features h3,
    .game-variety h3 {
        font-size: 1.6rem;
    }
}

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

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

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

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

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #dc143c 0%, #ff4500 50%, #dc143c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Login Introduction */
.login-intro {
    margin-bottom: 80px;
}

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

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: justify;
}

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

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

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

.intro-img:hover {
    filter: grayscale(30%) brightness(0.9);
    transform: scale(1.02);
}

.blocked-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 20, 60, 0.9);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.5);
    backdrop-filter: blur(10px);
    animation: pulse-red 2s infinite;
}

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

.blocked-overlay i {
    font-size: 1.5rem;
}

/* Blocked Domains Section */
.blocked-domains {
    margin-bottom: 80px;
    text-align: center;
}

.blocked-domains h3 {
    font-size: 2rem;
    color: #dc143c;
    margin-bottom: 24px;
}

.blocked-domains > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blocked-domains strong {
    color: #ffd700;
    font-weight: 700;
}

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

.domain-card {
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.domain-card:hover {
    background: rgba(220, 20, 60, 0.15);
    border-color: rgba(220, 20, 60, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 20, 60, 0.2);
}

.domain-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.domain-icon i {
    font-size: 1.5rem;
    color: white;
}

.domain-info h4 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.blocked-status {
    color: #dc143c;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Technical Challenges */
.technical-challenges {
    margin-bottom: 80px;
}

.technical-challenges h3 {
    font-size: 2rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.technical-challenges h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.challenges-grid {
    display: grid;
    gap: 30px;
}

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

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

.challenge-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4500 0%, #dc143c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.3);
}

.challenge-icon i {
    font-size: 2rem;
    color: white;
}

.challenge-content h4 {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 16px;
    font-weight: 700;
}

.challenge-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
    text-align: justify;
    margin: 0;
}

.challenge-content strong {
    color: #ffd700;
    font-weight: 700;
}

/* Fake Sites Warning */
.fake-sites-warning {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
    border: 2px solid rgba(255, 69, 0, 0.3);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.fake-sites-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.1), transparent);
    animation: warning-shine 4s infinite;
}

@keyframes warning-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.warning-header i {
    font-size: 2.5rem;
    color: #ff4500;
    animation: warning-pulse 1.5s infinite;
}

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

.warning-header h3 {
    font-size: 2rem;
    color: #ff4500;
    margin: 0;
    font-weight: 700;
}

.warning-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: justify;
    margin-bottom: 40px;
}

.warning-content strong {
    color: #ffd700;
    font-weight: 700;
}

.warning-tips {
    display: grid;
    gap: 20px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 69, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #ff4500;
    transition: all 0.3s ease;
}

.tip-item:hover {
    background: rgba(255, 69, 0, 0.15);
    transform: translateX(10px);
}

.tip-item i {
    font-size: 1.4rem;
    color: #ff4500;
    margin-top: 2px;
    min-width: 20px;
}

.tip-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.tip-content strong {
    color: #ffd700;
    font-weight: 700;
}

/* Current Situation */
.current-situation h3 {
    font-size: 2rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
}

.situation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

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

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

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

.login-link:hover {
    color: #ffed4e;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.impact-stats {
    display: grid;
    gap: 30px;
}

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

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.stat-icon i {
    font-size: 2rem;
    color: #000;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .login-container {
        padding: 0 40px;
    }
    
    .login-title {
        font-size: 2.2rem;
    }
    
    .domain-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .login-section {
        padding: 80px 20px;
    }
    
    .login-title {
        font-size: 2rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image {
        order: -1;
    }
    
    .domain-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .challenge-icon {
        margin: 0 auto;
    }
    
    .fake-sites-warning {
        padding: 30px 20px;
    }
    
    .warning-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .warning-header h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .situation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .technical-challenges h3,
    .blocked-domains h3,
    .current-situation h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 60px 15px;
    }
    
    .login-container {
        padding: 0 15px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .domain-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .challenge-card {
        padding: 25px 15px;
    }
    
    .challenge-icon {
        width: 60px;
        height: 60px;
    }
    
    .challenge-icon i {
        font-size: 1.5rem;
    }
    
    .fake-sites-warning {
        padding: 25px 15px;
    }
    
    .tip-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .technical-challenges h3,
    .blocked-domains h3,
    .current-situation h3 {
        font-size: 1.6rem;
    }
    
    .warning-header h3 {
        font-size: 1.6rem;
    }
}

/* Alternatives Section Styles */
.alternatives-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.alternatives-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(34, 139, 34, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(138, 43, 226, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.alternatives-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #228b22 0%, #32cd32 50%, #228b22 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Alternatives Introduction */
.alternatives-intro {
    margin-bottom: 80px;
    text-align: center;
}

.alternatives-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

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

.henghuay-link {
    color: #32cd32;
    font-weight: 700;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.henghuay-link:hover {
    color: #90ee90;
    text-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
}

.signup-link,
.credit-link {
    color: #ffd700;
    font-weight: 700;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.signup-link:hover,
.credit-link:hover {
    color: #ffed4e;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Analysis Section */
.analysis-section {
    margin-bottom: 80px;
}

.analysis-section h3 {
    font-size: 2rem;
    color: #32cd32;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.analysis-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #32cd32, transparent);
}

.analysis-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

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

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

.analysis-checklist {
    display: grid;
    gap: 25px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(50, 205, 50, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(50, 205, 50, 0.3);
    transition: all 0.3s ease;
}

.check-item:hover {
    background: rgba(50, 205, 50, 0.15);
    border-color: rgba(50, 205, 50, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(50, 205, 50, 0.2);
}

.check-item i {
    font-size: 1.8rem;
    color: #32cd32;
    margin-top: 2px;
    min-width: 28px;
}

.check-content h4 {
    font-size: 1.2rem;
    color: #32cd32;
    margin-bottom: 8px;
    font-weight: 700;
}

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

/* Reviews Importance Section */
.reviews-importance {
    margin-bottom: 80px;
}

.reviews-importance h3 {
    font-size: 2rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
}

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

.reviews-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: justify;
}

.reviews-sources {
    display: grid;
    gap: 20px;
}

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

.source-item:nth-child(2) {
    border-left-color: #ffd700;
}

.source-item:nth-child(3) {
    border-left-color: #ff0000;
}

.source-item:nth-child(4) {
    border-left-color: #32cd32;
}

.source-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.source-item i {
    font-size: 1.5rem;
    color: #1877f2;
}

.source-item:nth-child(2) i {
    color: #ffd700;
}

.source-item:nth-child(3) i {
    color: #ff0000;
}

.source-item:nth-child(4) i {
    color: #32cd32;
}

.source-item span {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 600;
}

/* Promotions Warning */
.promotions-warning {
    margin-bottom: 80px;
}

.warning-card {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.1), transparent);
    animation: warning-glow 3s infinite;
}

@keyframes warning-glow {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.warning-header i {
    font-size: 2rem;
    color: #ffa500;
}

.warning-header h4 {
    font-size: 1.5rem;
    color: #ffa500;
    margin: 0;
    font-weight: 700;
}

.warning-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: justify;
    margin-bottom: 30px;
}

.warning-tips {
    display: grid;
    gap: 15px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 165, 0, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tip-item:hover {
    background: rgba(255, 165, 0, 0.15);
    transform: translateX(5px);
}

.tip-item i {
    font-size: 1.2rem;
    color: #ffa500;
    min-width: 20px;
}

.tip-item span {
    font-size: 1rem;
    color: #e0e0e0;
}

/* Testing Strategy Section */
.testing-strategy {
    margin-bottom: 80px;
}

.testing-strategy h3 {
    font-size: 2rem;
    color: #8a2be2;
    text-align: center;
    margin-bottom: 50px;
}

.strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.strategy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: justify;
}

.strategy-steps {
    display: grid;
    gap: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(138, 43, 226, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    background: rgba(138, 43, 226, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.step-content h4 {
    font-size: 1.2rem;
    color: #8a2be2;
    margin-bottom: 8px;
    font-weight: 700;
}

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

/* Key Considerations */
.key-considerations h3 {
    font-size: 2rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
}

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

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

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

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

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.consideration-card:hover .card-icon {
    transform: rotateY(360deg);
}

.card-icon i {
    font-size: 2rem;
    color: #000;
}

.card-content h4 {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .alternatives-container {
        padding: 0 40px;
    }
    
    .alternatives-title {
        font-size: 2.2rem;
    }
    
    .considerations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .alternatives-section {
        padding: 80px 20px;
    }
    
    .alternatives-title {
        font-size: 2rem;
    }
    
    .analysis-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .analysis-checklist {
        order: -1;
    }
    
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reviews-sources {
        order: -1;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .strategy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .strategy-steps {
        order: -1;
    }
    
    .warning-card {
        padding: 30px 20px;
    }
    
    .considerations-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-section h3,
    .reviews-importance h3,
    .testing-strategy h3,
    .key-considerations h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .alternatives-section {
        padding: 60px 15px;
    }
    
    .alternatives-container {
        padding: 0 15px;
    }
    
    .alternatives-title {
        font-size: 1.8rem;
    }
    
    .check-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .source-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .reviews-sources {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .warning-card {
        padding: 25px 15px;
    }
    
    .warning-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .warning-header h4 {
        font-size: 1.3rem;
    }
    
    .consideration-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .card-content h4 {
        font-size: 1.2rem;
    }
    
    .analysis-section h3,
    .reviews-importance h3,
    .testing-strategy h3,
    .key-considerations h3 {
        font-size: 1.6rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f23 100%);
    color: #e0e0e0;
    padding: 60px 20px 20px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.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.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Brand Section */
.brand-section {
    max-width: 400px;
}

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

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

.footer-logo-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #8a2be2;
}

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

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

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

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

/* Footer Sections */
.footer-section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffb300);
}

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

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

.footer-links li a:hover {
    color: #ffd700;
    transform: translateX(8px);
    padding-left: 5px;
    border-left: 2px solid #ffd700;
}

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

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

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.feature-icon i {
    font-size: 1.3rem;
    color: #000;
}

.feature-content h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
}

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

/* Footer Bottom */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin-bottom: 30px;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center;
}

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

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

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

.payment-methods {
    text-align: right;
}

.payment-label {
    display: block;
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.payment-icons i {
    font-size: 1.5rem;
    color: #ffd700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icons i:hover {
    color: #ffed4e;
    transform: scale(1.2) translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-container {
        padding: 0 40px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .brand-section {
        max-width: none;
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
    
    .footer-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .payment-methods {
        text-align: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .footer-logo-text {
        font-size: 2rem;
    }
    
    .footer-logo-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 15px 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .feature-icon {
        margin: 0 auto 15px auto;
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 1.1rem;
    }
    
    .footer-logo-text {
        font-size: 1.8rem;
    }
    
    .footer-logo-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .footer-features {
        margin-bottom: 40px;
    }
    
    .footer-bottom-content {
        gap: 20px;
    }
    
    .payment-icons {
        gap: 12px;
    }
    
    .payment-icons i {
        font-size: 1.3rem;
    }
    
    .disclaimer-text {
        font-size: 0.75rem;
    }
    
    .copyright p {
        font-size: 0.85rem;
    }
}

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

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Sarabun', sans-serif;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 70px;
    position: relative;
    overflow: hidden;
}

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

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

.sticky-btn:hover::before {
    transform: translateX(0);
}

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

.sticky-btn span {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Login Button */
.login-btn {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(147, 112, 219, 0.1) 100%);
    color: #8a2be2;
    border-color: rgba(138, 43, 226, 0.2);
}

.login-btn:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(147, 112, 219, 0.2) 100%);
    color: #9370db;
    transform: translateY(-2px);
}

/* Register Button */
.register-btn {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1) 0%, rgba(50, 205, 50, 0.1) 100%);
    color: #32cd32;
    border-color: rgba(50, 205, 50, 0.2);
}

.register-btn:hover {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.2) 0%, rgba(50, 205, 50, 0.2) 100%);
    color: #90ee90;
    transform: translateY(-2px);
}

/* Credit Button */
.credit-btn {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.1) 100%);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.2);
    animation: credit-pulse 2s infinite;
}

.credit-btn:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 179, 0, 0.2) 100%);
    color: #ffed4e;
    transform: translateY(-2px);
    animation: none;
}

/* Credit Button Pulse Animation */
@keyframes credit-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
    }
}

/* Hover Effects for Icons */
.sticky-btn:hover i {
    transform: scale(1.2);
}

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

.register-btn:hover i {
    color: #90ee90;
}

.credit-btn:hover i {
    color: #ffed4e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 0;
    }
    
    .sticky-btn {
        padding: 12px 8px;
        min-height: 65px;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }
    
    .sticky-btn span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 10px 5px;
        min-height: 60px;
    }
    
    .sticky-btn i {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .sticky-btn span {
        font-size: 0.7rem;
        line-height: 1.1;
    }
}

@media (max-width: 360px) {
    .sticky-btn span {
        font-size: 0.65rem;
    }
    
    .sticky-btn i {
        font-size: 0.9rem;
    }
    
    .sticky-btn {
        min-height: 55px;
    }
}

/* Ensure sticky buttons don't interfere with scroll */
body {
    padding-bottom: 70px;
}

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

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

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

/* Login Page Section */
.login-page-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    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(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(34, 139, 34, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: bg-shift 20s ease-in-out infinite;
}

@keyframes bg-shift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.login-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.login-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: card-entrance 0.8s ease-out;
}

@keyframes card-entrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #8a2be2, #32cd32, #ffd700);
    background-size: 300% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

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

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

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Error Message */
.error-message {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: error-shake 0.5s ease-out;
}

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

.error-message i {
    color: #dc143c;
    font-size: 1.1rem;
}

.error-message span {
    color: #dc143c;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 8px;
}

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

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.form-input:valid {
    border-color: #32cd32;
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #dc143c;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

/* Input Feedback */
.input-feedback {
    font-size: 0.8rem;
    margin-top: 5px;
    min-height: 20px;
    transition: all 0.3s ease;
}

.input-feedback.error {
    color: #dc143c;
}

.input-feedback.success {
    color: #32cd32;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

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

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

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

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

/* Form Divider */
.form-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

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

.form-divider span {
    background: rgba(26, 26, 46, 0.8);
    color: rgba(255, 255, 255, 0.6);
    padding: 0 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Register Button */
.register-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(50, 205, 50, 0.1);
    border: 2px solid rgba(50, 205, 50, 0.3);
    border-radius: 12px;
    color: #32cd32;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

.register-btn:hover {
    background: rgba(50, 205, 50, 0.15);
    border-color: rgba(50, 205, 50, 0.5);
    color: #90ee90;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.2);
}

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

/* Form Footer */
.form-footer {
    text-align: center;
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.security-notice i {
    color: #32cd32;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-page-section {
        padding: 20px 15px;
    }
    
    .login-card {
        padding: 40px 25px;
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-input {
        padding: 14px 18px;
    }
    
    .login-btn {
        padding: 16px;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
        max-width: none;
        margin: 0 5px;
        border-radius: 18px;
    }
    
    .login-title {
        font-size: 1.4rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .login-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
    
    .register-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
    
    .security-notice {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 360px) {
    .login-card {
        padding: 25px 15px;
    }
    
    .login-title {
        font-size: 1.3rem;
    }
    
    .form-input {
        padding: 12px 14px;
    }
}

/* Register Page Section */
.register-page-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    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(circle at 30% 20%, rgba(34, 139, 34, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(50, 205, 50, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: bg-shift 20s ease-in-out infinite;
}

@keyframes bg-shift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.register-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.register-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(34, 139, 34, 0.1);
    position: relative;
    overflow: hidden;
    animation: card-entrance 0.8s ease-out;
}

@keyframes card-entrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #32cd32, #228b22, #50C878, #32cd32);
    background-size: 300% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

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

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

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(34, 139, 34, 0.2);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 35px rgba(34, 139, 34, 0.3);
}

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #32cd32 0%, #228b22 50%, #32cd32 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Error Message */
.error-message {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: error-shake 0.5s ease-out;
}

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

.error-message i {
    color: #dc143c;
    font-size: 1.1rem;
}

.error-message span {
    color: #dc143c;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.form-label i {
    color: #32cd32;
    font-size: 1rem;
    width: 16px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    border-color: #32cd32;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.1);
    transform: translateY(-2px);
}

.form-input:valid {
    border-color: #32cd32;
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #dc143c;
}

/* Input Feedback */
.input-feedback {
    font-size: 0.8rem;
    margin-top: 5px;
    min-height: 20px;
    transition: all 0.3s ease;
}

.input-feedback.error {
    color: #dc143c;
}

.input-feedback.success {
    color: #32cd32;
}

/* Register Button */
.register-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 139, 34, 0.4);
    background: linear-gradient(135deg, #50C878 0%, #32cd32 100%);
}

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

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

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

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

/* Form Divider */
.form-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

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

.form-divider span {
    background: rgba(26, 26, 46, 0.8);
    color: rgba(255, 255, 255, 0.6);
    padding: 0 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Login Button (Outline Style) */
.login-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: transparent;
    border: 2px solid rgba(138, 43, 226, 0.5);
    border-radius: 12px;
    color: #8a2be2;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(147, 112, 219, 0.1) 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

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

.login-btn:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.7);
    color: #9370db;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.2);
}

.login-btn i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.login-btn span {
    position: relative;
    z-index: 1;
}

/* Form Footer */
.form-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.terms-notice {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.terms-notice i {
    color: #ffd700;
    font-size: 0.85rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.security-notice i {
    color: #32cd32;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-page-section {
        padding: 20px 15px;
    }
    
    .register-card {
        padding: 40px 25px;
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .register-title {
        font-size: 1.6rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .form-input {
        padding: 14px 18px;
    }
    
    .register-btn {
        padding: 16px;
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .register-card {
        padding: 30px 20px;
        max-width: none;
        margin: 0 5px;
        border-radius: 18px;
    }
    
    .register-title {
        font-size: 1.4rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .register-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
    
    .login-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
    
    .terms-notice,
    .security-notice {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 360px) {
    .register-card {
        padding: 25px 15px;
    }
    
    .register-title {
        font-size: 1.3rem;
    }
    
    .form-input {
        padding: 12px 14px;
    }
    
    .terms-notice,
    .security-notice {
        font-size: 0.7rem;
    }
}

/* Hero Promo Section */
.hero-promo-section {
    min-height: 60vh;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 25%, #ff8c00 50%, #ff6600 75%, #ffd700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: hero-glow 4s ease-in-out infinite alternate;
}

@keyframes hero-glow {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

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

.hero-content {
    text-align: center;
    color: #000;
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: hero-bounce 2s ease-out;
}

@keyframes hero-bounce {
    0% { transform: translateY(30px); opacity: 0; }
    60% { transform: translateY(-10px); opacity: 1; }
    100% { transform: translateY(0); }
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0;
    animation: hero-fade-in 2s ease-out 0.5s forwards;
}

@keyframes hero-fade-in {
    to { opacity: 1; }
}

.hero-subtitle i {
    font-size: 1.8rem;
    animation: gift-bounce 1.5s ease-in-out infinite;
}

@keyframes gift-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #000;
    color: #ffd700;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    animation: hero-slide-up 2s ease-out 1s forwards;
}

@keyframes hero-slide-up {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #1a1a1a;
}

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

/* Promo Sections */
.promo-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

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

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

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.promo-card.new-member {
    border-left: 5px solid #32cd32;
}

.promo-card.first-deposit {
    border-left: 5px solid #ffd700;
}

.promo-card.existing-member {
    border-left: 5px solid #8a2be2;
}

.promo-card.holiday {
    border-left: 5px solid #ff6b6b;
}

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

.promo-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

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

.new-member .promo-icon {
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
}

.first-deposit .promo-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
}

.existing-member .promo-icon {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
}

.holiday .promo-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.promo-icon i {
    font-size: 2.5rem;
    color: #000;
}

.existing-member .promo-icon i,
.holiday .promo-icon i {
    color: #fff;
}

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

.promo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

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

.promo-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.promo-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.promo-list li i {
    color: #32cd32;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.promo-highlight {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.promo-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: highlight-shine 3s infinite;
}

@keyframes highlight-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.highlight-amount {
    display: block;
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 600;
}

.promo-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

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

/* Conclusion Section */
.conclusion-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.conclusion-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.05) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.conclusion-text {
    margin-bottom: 50px;
}

.conclusion-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.lottery-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.lottery-type {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lottery-type:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.lottery-type i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.lottery-type:hover i {
    transform: scale(1.2);
}

.lottery-type span {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 600;
}

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

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 50%, #dc3545 100%);
    color: #fff;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    padding: 25px 50px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: final-cta-pulse 2s ease-in-out infinite;
}

@keyframes final-cta-pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6), 0 0 0 10px rgba(255, 107, 107, 0.1);
    }
}

.final-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff8a80 0%, #ff6b6b 50%, #ee5a52 100%);
    animation: none;
}

.final-cta-btn i {
    font-size: 1.7rem;
    animation: fire-flicker 1s ease-in-out infinite alternate;
}

@keyframes fire-flicker {
    from { transform: scale(1) rotate(-2deg); }
    to { transform: scale(1.1) rotate(2deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container,
    .promo-container,
    .conclusion-container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .promo-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-promo-section {
        padding: 80px 20px;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta-btn {
        font-size: 1.2rem;
        padding: 18px 35px;
    }
    
    .promo-section {
        padding: 60px 20px;
    }
    
    .promo-card {
        padding: 40px 25px;
    }
    
    .promo-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .promo-title {
        font-size: 1.8rem;
    }
    
    .promo-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lottery-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .final-cta-btn {
        font-size: 1.3rem;
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-btn {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
    
    .promo-card {
        padding: 30px 20px;
    }
    
    .promo-title {
        font-size: 1.6rem;
    }
    
    .promo-icon {
        width: 60px;
        height: 60px;
    }
    
    .promo-icon i {
        font-size: 2rem;
    }
    
    .promo-list li {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .highlight-amount {
        font-size: 2.5rem;
    }
    
    .lottery-types {
        grid-template-columns: 1fr;
    }
    
    .lottery-type {
        padding: 25px 15px;
    }
    
    .lottery-type i {
        font-size: 2rem;
    }
    
    .final-cta-btn {
        font-size: 1.2rem;
        padding: 18px 35px;
    }
    
    .conclusion-text p {
        font-size: 1.1rem;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .promo-card {
        padding: 25px 15px;
    }
    
    .promo-title {
        font-size: 1.4rem;
    }
    
    .promo-list li {
        font-size: 0.95rem;
    }
    
    .final-cta-btn {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
}