/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.nav-link.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 4px;
    z-index: 1001;
}

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

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    border-top: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.mobile-menu-content {
    padding: 2rem 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding-left: 2.5rem;
}

.mobile-nav-link.cta-mobile {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    font-weight: 700;
    margin: 1rem 2rem;
    border-radius: 25px;
    justify-content: center;
    border: none;
}

.mobile-nav-link.cta-mobile:hover {
    transform: scale(1.05);
    padding-left: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-list {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 15px;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        height: 60px;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .mobile-menu {
        top: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header-content {
        height: 55px;
        gap: 1rem;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-img {
        width: 30px;
        height: 30px;
    }

    .mobile-menu {
        top: 55px;
    }

    .mobile-nav-link {
        font-size: 16px;
        padding: 0.75rem 1.5rem;
    }

    .mobile-nav-link.cta-mobile {
        margin: 1rem 1.5rem;
    }
}

/* Smooth scroll offset for fixed header */
main {
    padding-top: 70px;
}

@media (max-width: 768px) {
    main {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    main {
        padding-top: 55px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for keyboard navigation */
.nav-link:focus,
.mobile-nav-link:focus,
.cta-button:focus,
.mobile-menu-btn:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

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

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    background: linear-gradient(45deg, #ffd700, #ff6b35, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.hero-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: justify;
}

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

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

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

/* Responsive Design for Hero Section */
@media (max-width: 1024px) {
    .hero {
        padding: 60px 0;
    }

    .hero-content {
        gap: 3rem;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-img {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-img {
        max-width: 350px;
        border-radius: 15px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-img {
        max-width: 300px;
        border-radius: 12px;
    }
}

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

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

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.about-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: justify;
}

.about-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about {
        padding: 80px 0;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-content {
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .about-item {
        padding: 2rem;
    }

    .about-subtitle {
        font-size: 1.3rem;
    }

    .about-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .about-header {
        margin-bottom: 3rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-content {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .about-item {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .about-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .about-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .about-image {
        max-width: 500px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }

    .about-header {
        margin-bottom: 2rem;
    }

    .about-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .about-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .about-item {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .about-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .about-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .about-image {
        max-width: 400px;
        border-radius: 12px;
    }
}

@media (max-width: 360px) {
    .about-title {
        font-size: 1.3rem;
    }

    .about-item {
        padding: 1rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-description {
        font-size: 0.8rem;
    }

    .about-image {
        max-width: 350px;
    }
}

/* Games Section */
.games {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.games-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.games-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.games-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.games-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.games-row:last-child {
    grid-template-columns: 1fr;
}

.game-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.game-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-item.full-width {
    max-width: none;
}

.game-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1.4;
    margin-bottom: 0;
}

.game-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: justify;
    margin-bottom: 0;
}

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

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

.game-description a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.games-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.games-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.games-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
}

/* Responsive Design for Games Section */
@media (max-width: 1024px) {
    .games {
        padding: 80px 0;
    }

    .games-title {
        font-size: 2.2rem;
    }

    .games-content {
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .games-row {
        gap: 2.5rem;
    }

    .game-item {
        padding: 2rem;
        gap: 1.2rem;
    }

    .game-subtitle {
        font-size: 1.3rem;
    }

    .game-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .games {
        padding: 60px 0;
    }

    .games-header {
        margin-bottom: 3rem;
    }

    .games-title {
        font-size: 1.8rem;
    }

    .games-content {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .games-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-item {
        padding: 1.5rem;
        border-radius: 15px;
        gap: 1rem;
    }

    .game-subtitle {
        font-size: 1.2rem;
    }

    .game-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .games-image {
        max-width: 500px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .games {
        padding: 40px 0;
    }

    .games-header {
        margin-bottom: 2rem;
    }

    .games-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .games-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .games-row {
        gap: 1.5rem;
    }

    .game-item {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .game-subtitle {
        font-size: 1.1rem;
    }

    .game-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .games-image {
        max-width: 400px;
        border-radius: 12px;
    }
}

@media (max-width: 360px) {
    .games-title {
        font-size: 1.3rem;
    }

    .game-item {
        padding: 1rem;
    }

    .game-subtitle {
        font-size: 1rem;
    }

    .game-description {
        font-size: 0.8rem;
    }

    .games-image {
        max-width: 350px;
    }
}

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

.login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.login-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.login-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.login-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.login-row:last-child {
    grid-template-columns: 1fr;
}

.login-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.login-item.full-width {
    max-width: none;
}

.login-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1.4;
    margin-bottom: 0;
}

.login-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: justify;
    margin-bottom: 0;
}

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

.login-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.login-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.login-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
}

/* Responsive Design for Login Section */
@media (max-width: 1024px) {
    .login {
        padding: 80px 0;
    }

    .login-title {
        font-size: 2.2rem;
    }

    .login-content {
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .login-row {
        gap: 2.5rem;
    }

    .login-item {
        padding: 2rem;
        gap: 1.2rem;
    }

    .login-subtitle {
        font-size: 1.3rem;
    }

    .login-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .login {
        padding: 60px 0;
    }

    .login-header {
        margin-bottom: 3rem;
    }

    .login-title {
        font-size: 1.8rem;
    }

    .login-content {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .login-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .login-item {
        padding: 1.5rem;
        border-radius: 15px;
        gap: 1rem;
    }

    .login-subtitle {
        font-size: 1.2rem;
    }

    .login-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .login-image {
        max-width: 500px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .login {
        padding: 40px 0;
    }

    .login-header {
        margin-bottom: 2rem;
    }

    .login-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .login-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .login-row {
        gap: 1.5rem;
    }

    .login-item {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .login-subtitle {
        font-size: 1.1rem;
    }

    .login-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .login-image {
        max-width: 400px;
        border-radius: 12px;
    }
}

@media (max-width: 360px) {
    .login-title {
        font-size: 1.3rem;
    }

    .login-item {
        padding: 1rem;
    }

    .login-subtitle {
        font-size: 1rem;
    }

    .login-description {
        font-size: 0.8rem;
    }

    .login-image {
        max-width: 350px;
    }
}

/* Promotions Section */
.promotions {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.promotions-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.promotions-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.promotions-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.promo-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.promo-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.promo-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1.4;
    margin-bottom: 0;
}

.promo-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: justify;
    margin-bottom: 0;
}

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

.promotions-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.promotions-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.promotions-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
}

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

.responsibility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.responsibility-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.responsibility-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.responsibility-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.responsibility-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.responsibility-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.responsibility-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1.4;
    margin-bottom: 0;
}

.responsibility-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: justify;
    margin-bottom: 0;
}

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 25% 75%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    background: linear-gradient(45deg, #ffd700, #ff6b35, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.cta-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: justify;
}

.cta-button-wrapper {
    margin: 1rem 0;
}

.cta-main-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-main-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.cta-main-button i {
    animation: pulse 2s infinite;
    font-size: 20px;
}

.cta-contact {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
}

.cta-contact-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    color: #cccccc;
}

.contact-item i {
    color: #ffd700;
    width: 20px;
    text-align: center;
}

.cta-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cta-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.cta-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

/* Responsive Design for All New Sections */
@media (max-width: 1024px) {
    .promotions,
    .responsibility {
        padding: 80px 0;
    }

    .cta {
        padding: 80px 0;
    }

    .promotions-title,
    .responsibility-title {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .promotions-content,
    .responsibility-content {
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .promo-item,
    .responsibility-item {
        padding: 2rem;
        gap: 1.2rem;
    }

    .promo-subtitle,
    .responsibility-subtitle {
        font-size: 1.3rem;
    }

    .promo-description,
    .responsibility-description {
        font-size: 0.95rem;
    }

    .cta .container {
        gap: 3rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-main-button {
        font-size: 16px;
        padding: 16px 32px;
    }
}

@media (max-width: 768px) {
    .promotions,
    .responsibility,
    .cta {
        padding: 60px 0;
    }

    .promotions-header,
    .responsibility-header {
        margin-bottom: 3rem;
    }

    .promotions-title,
    .responsibility-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .promotions-content,
    .responsibility-content {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .promo-item,
    .responsibility-item {
        padding: 1.5rem;
        border-radius: 15px;
        gap: 1rem;
    }

    .promo-subtitle,
    .responsibility-subtitle {
        font-size: 1.2rem;
    }

    .promo-description,
    .responsibility-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .promotions-image {
        max-width: 500px;
        border-radius: 15px;
    }

    .cta .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .cta-description {
        font-size: 0.95rem;
    }

    .cta-main-button {
        font-size: 16px;
        padding: 15px 30px;
    }

    .cta-image {
        max-width: 400px;
        border-radius: 15px;
    }

    .contact-list {
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .promotions,
    .responsibility,
    .cta {
        padding: 40px 0;
    }

    .promotions-header,
    .responsibility-header {
        margin-bottom: 2rem;
    }

    .promotions-title,
    .responsibility-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .promotions-content,
    .responsibility-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .promo-item,
    .responsibility-item {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .promo-subtitle,
    .responsibility-subtitle {
        font-size: 1.1rem;
    }

    .promo-description,
    .responsibility-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .promotions-image {
        max-width: 400px;
        border-radius: 12px;
    }

    .cta .container {
        gap: 2rem;
    }

    .cta-description {
        font-size: 0.85rem;
    }

    .cta-main-button {
        font-size: 15px;
        padding: 14px 28px;
        gap: 8px;
    }

    .cta-contact {
        padding: 1.5rem;
    }

    .cta-contact-title {
        font-size: 1.1rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .cta-image {
        max-width: 350px;
        border-radius: 12px;
    }
}

@media (max-width: 360px) {
    .promotions-title,
    .responsibility-title {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.2rem;
    }

    .promo-item,
    .responsibility-item {
        padding: 1rem;
    }

    .promo-subtitle,
    .responsibility-subtitle {
        font-size: 1rem;
    }

    .promo-description,
    .responsibility-description {
        font-size: 0.8rem;
    }

    .promotions-image {
        max-width: 350px;
    }

    .cta-main-button {
        font-size: 14px;
        padding: 12px 24px;
    }

    .cta-contact {
        padding: 1.2rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .cta-image {
        max-width: 300px;
    }
}

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

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 107, 53, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.faq-content {
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.faq-question {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1.4;
    margin-bottom: 0;
}

.faq-answer {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cccccc;
    text-align: justify;
    margin-bottom: 0;
}

/* Responsive Design for FAQ Section */
@media (max-width: 1024px) {
    .faq {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .faq-grid {
        gap: 1.8rem;
    }

    .faq-item {
        padding: 1.8rem;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-header {
        margin-bottom: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.88rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-grid {
        gap: 1.2rem;
    }

    .faq-item {
        padding: 1.2rem;
        border-radius: 10px;
        gap: 0.8rem;
    }

    .faq-question {
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .faq-answer {
        font-size: 0.82rem;
        line-height: 1.5;
    }
}

@media (max-width: 360px) {
    .faq-title {
        font-size: 1.3rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    .faq-answer {
        font-size: 0.78rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-top: 1px solid #333;
    padding: 2rem 0;
    margin-top: 4rem;
}

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

.footer-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
}

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-top: 1px solid #333;
    padding: 1rem 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, #333, #222);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #444, #333);
    color: #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.sticky-btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.sticky-btn-primary:hover {
    color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
        margin-top: 3rem;
    }

    .footer-links {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1rem 0;
        margin-top: 2rem;
    }

    .footer-links {
        gap: 0.8rem;
    }

    .footer-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .sticky-buttons {
        padding: 0.8rem 0.5rem;
        gap: 0.5rem;
    }

    .sticky-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 100px;
        border-radius: 20px;
    }
}

@media (max-width: 360px) {
    .footer-link {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .sticky-buttons {
        padding: 0.6rem 0.25rem;
        gap: 0.25rem;
    }

    .sticky-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 90px;
        border-radius: 18px;
    }
}

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

.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.login-page-title {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.login-form-container {
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
}

.login-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.form-label {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

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

.input-icon {
    position: absolute;
    left: 16px;
    color: #888;
    font-size: 18px;
    z-index: 2;
    transition: color 0.3s ease;
}

.form-input {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    padding: 16px 20px 16px 50px;
    width: 100%;
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid #333;
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

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

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

.form-input:focus + .input-icon,
.form-input:focus ~ .input-icon {
    color: #ff6b35;
}

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

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

.password-toggle:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
    border-radius: 4px;
}

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

.login-btn,
.register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.login-btn {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

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

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

.register-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333;
}

.register-btn:hover {
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

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

/* Loading state for form submission */
.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.login-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

/* Form validation styles */
.form-input:invalid:not(:placeholder-shown) {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.2);
}

.form-input:valid:not(:placeholder-shown) {
    border-color: #44ff44;
    box-shadow: 0 0 0 3px rgba(68, 255, 68, 0.2);
}

/* Responsive Design for Login Page */
@media (max-width: 768px) {
    .login-page {
        padding: 80px 0 30px;
    }

    .login-page-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }

    .login-form-container {
        padding: 30px 24px;
        border-radius: 16px;
    }

    .form-input {
        font-size: 16px;
        padding: 14px 18px 14px 46px;
    }

    .input-icon {
        left: 14px;
        font-size: 16px;
    }

    .password-toggle {
        right: 14px;
        font-size: 16px;
    }

    .login-btn,
    .register-btn {
        font-size: 16px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .login-page {
        padding: 70px 0 20px;
    }

    .login-page-title {
        font-size: 24px;
        margin-bottom: 1.5rem;
    }

    .login-form-container {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .form-input {
        font-size: 15px;
        padding: 12px 16px 12px 42px;
    }

    .input-icon {
        left: 12px;
        font-size: 15px;
    }

    .password-toggle {
        right: 12px;
        font-size: 15px;
    }

    .login-btn,
    .register-btn {
        font-size: 15px;
        padding: 12px 18px;
    }
}

/* Accessibility improvements for Login Page */
@media (prefers-reduced-motion: reduce) {
    .login-btn,
    .register-btn,
    .form-input,
    .password-toggle {
        transition: none;
    }

    .login-btn:hover,
    .register-btn:hover {
        transform: none;
    }
}

/* High contrast mode support for Login Page */
@media (prefers-contrast: high) {
    .login-form-container {
        border: 2px solid #ffffff;
        background: #000000;
    }

    .form-input {
        border: 2px solid #ffffff;
        background: #000000;
    }

    .form-input:focus {
        border-color: #ffffff;
        box-shadow: 0 0 0 3px #ffffff;
    }
}

/* ==============================================
   REGISTER PAGE STYLES
   ============================================== */

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

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

.register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.register-form-container {
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.register-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ffd700, #ff6b35);
    opacity: 0.8;
}

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

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

.form-label {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #333;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.form-input::placeholder {
    color: #888;
    font-style: italic;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow:
        0 0 0 3px rgba(255, 107, 53, 0.2),
        0 4px 12px rgba(255, 107, 53, 0.1);
    background: rgba(26, 26, 26, 0.95);
}

.form-input:valid {
    border-color: #4CAF50;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 56px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #ff7d47, #ffe14d);
}

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

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

.btn-outline:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

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

.btn i {
    font-size: 1.1em;
}

/* Active navigation link for register page */
.nav-link.active {
    color: #ffd700;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ffd700);
    border-radius: 1px;
}

.mobile-nav-link.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
}

/* Form loading state */
.form-loading .btn-primary {
    pointer-events: none;
    opacity: 0.7;
}

.form-loading .btn-primary::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #000000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive design for Register Page */
@media (max-width: 768px) {
    .register-section {
        padding: 100px 0 60px;
    }

    .register-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .register-form-container {
        padding: 2rem;
        margin: 0 20px;
    }

    .form-input {
        padding: 14px 16px;
        font-size: 16px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 16px;
        min-height: 52px;
    }
}

@media (max-width: 480px) {
    .register-title {
        font-size: 1.75rem;
    }

    .register-form-container {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .form-input {
        padding: 12px 16px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 15px;
        min-height: 48px;
    }
}

/* Accessibility improvements for Register Page */
@media (prefers-reduced-motion: reduce) {
    .register-section,
    .register-form-container,
    .form-input,
    .btn {
        transition: none;
    }

    .register-section::before {
        animation: none;
    }

    .form-loading .btn-primary::after {
        animation: none;
    }
}

/* High contrast mode support for Register Page */
@media (prefers-contrast: high) {
    .register-form-container {
        border: 2px solid #ffffff;
        background: #000000;
    }

    .form-input {
        border: 2px solid #ffffff;
        background: #000000;
    }

    .form-input:focus {
        border-color: #ffffff;
        box-shadow: 0 0 0 3px #ffffff;
    }

    .btn-primary {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }

    .btn-outline {
        border: 2px solid #ffffff;
        color: #ffffff;
    }
}

/* ============================================
   PROMOTION PAGE STYLES
   ============================================ */

/* Promotion Hero Section */
.promotion-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.promotion-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.promotion-hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.promotion-hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Welcome Bonus Section */
.welcome-bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bonus-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

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

.bonus-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.bonus-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.bonus-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bonus-list {
    list-style: none;
    margin: 1.5rem 0;
}

.bonus-list li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.bonus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.bonus-conditions h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.bonus-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-align: center;
    width: 100%;
}

.bonus-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    background: linear-gradient(45deg, #ff6b35, #ffd700);
}

/* VIP Program Section */
.vip-program {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.vip-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.vip-icon {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.vip-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.vip-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.vip-benefits {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.vip-benefits li {
    padding: 0.75rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.vip-benefits li::before {
    content: '👑';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.vip-upgrade {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.vip-upgrade h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.vip-steps {
    list-style: none;
    counter-reset: step-counter;
    text-align: left;
}

.vip-steps li {
    counter-increment: step-counter;
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 2.5rem;
}

.vip-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background: #ffd700;
    color: #000000;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.vip-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000000;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.vip-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Slot Promotions Section */
.slot-promotions {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.slot-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.slot-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.slot-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

.slot-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.slot-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slot-benefits,
.tournament-prizes {
    list-style: none;
    margin: 1.5rem 0;
}

.slot-benefits li,
.tournament-prizes li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.slot-benefits li::before {
    content: '🎰';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.tournament-prizes li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.tournament-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.tournament-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Daily Promotions Section */
.daily-promotions {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.daily-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.daily-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.daily-card:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.daily-header {
    margin-bottom: 1rem;
}

.daily-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.daily-benefits {
    list-style: none;
}

.daily-benefits li {
    padding: 0.3rem 0;
    color: #cccccc;
    font-size: 0.95rem;
}

.daily-cta-section {
    text-align: center;
    margin-top: 3rem;
}

.daily-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000000;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.daily-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Bonus Access Section */
.bonus-access {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.access-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.access-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.access-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.access-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.access-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.access-list {
    list-style: none;
    counter-reset: access-counter;
    margin: 1.5rem 0;
}

.access-list li {
    counter-increment: access-counter;
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 2.5rem;
}

.access-list li::before {
    content: counter(access-counter);
    position: absolute;
    left: 0;
    background: #ffd700;
    color: #000000;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.app-benefits {
    list-style: none;
    margin: 1.5rem 0;
}

.app-benefits li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.app-benefits li::before {
    content: '📱';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.app-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.app-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Special Promotions Section */
.special-promotions {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.special-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.special-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.special-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

.special-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.special-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.special-benefits,
.points-rewards {
    list-style: none;
    margin: 1.5rem 0;
}

.special-benefits li,
.points-rewards li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.special-benefits li::before {
    content: '🎊';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.points-rewards li::before {
    content: '🏅';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.points-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.points-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Fun Zone Section */
.fun-zone {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.fun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fun-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.fun-card:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.fun-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.fun-activities {
    list-style: none;
}

.fun-activities li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.fun-activities li::before {
    content: '🎪';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.fun-cta-section {
    text-align: center;
    margin-top: 3rem;
}

.fun-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000000;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.fun-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* FAQ Section */
.promotion-faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.faq-question {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-answer {
    color: #cccccc;
    line-height: 1.6;
}

/* Summary Section */
.promotion-summary {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

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

.summary-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

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

.summary-item:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

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

.summary-item span {
    color: #ffffff;
    font-weight: 500;
}

.summary-conclusion {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-top: 2rem;
}

/* Contact Section */
.promotion-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.contact-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.contact-item i {
    color: #ffd700;
    font-size: 1.1rem;
}

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

/* Final CTA Section */
.final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000000;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.final-cta-button i {
    margin-right: 0.5rem;
}

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

/* Disclaimer Section */
.disclaimer {
    padding: 40px 0;
    background: #0a0a0a;
    border-top: 1px solid #333;
}

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

.disclaimer-text {
    color: #999999;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design for Promotion Page */
@media (max-width: 1024px) {
    .promotion-hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .bonus-grid,
    .slot-grid,
    .access-grid,
    .special-grid {
        grid-template-columns: 1fr;
    }

    .daily-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .promotion-hero {
        padding: 100px 0 60px;
    }

    .promotion-hero-title {
        font-size: 2rem;
    }

    .promotion-hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .bonus-card,
    .vip-card,
    .slot-card,
    .access-card,
    .special-card,
    .fun-card {
        padding: 2rem;
    }

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

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .promotion-hero {
        padding: 90px 0 50px;
    }

    .promotion-hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .bonus-card,
    .vip-card,
    .slot-card,
    .access-card,
    .special-card,
    .fun-card,
    .faq-item {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .daily-card {
        padding: 1rem;
    }

    .daily-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fun-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .contact-item {
        padding: 0.8rem;
    }

    .contact-item span {
        font-size: 0.8rem;
    }
}

/* Accessibility improvements for Promotion Page */
@media (prefers-reduced-motion: reduce) {
    .promotion-hero::before,
    .bonus-card,
    .vip-card,
    .slot-card,
    .access-card,
    .special-card,
    .fun-card,
    .faq-item,
    .summary-item,
    .contact-item,
    .final-cta-button {
        transition: none;
    }

    .final-cta-button {
        animation: none;
    }
}

/* High contrast mode support for Promotion Page */
@media (prefers-contrast: high) {
    .bonus-card,
    .vip-card,
    .slot-card,
    .access-card,
    .special-card,
    .fun-card,
    .faq-item,
    .daily-card {
        border: 2px solid #ffffff;
        background: #000000;
    }

    .summary-item,
    .contact-item {
        border: 2px solid #ffffff;
        background: #000000;
    }

    .final-cta-button {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }
}

/* ============================================
   LEGAL PAGES STYLES
   ============================================ */

/* Legal Content Main Container */
.legal-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    position: relative;
}

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

/* Legal Header */
.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.legal-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.legal-content-wrapper {
    position: relative;
    z-index: 1;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Legal Text Styling */
.legal-content-wrapper h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.4;
}

.legal-content-wrapper h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
    line-height: 1.4;
}

.legal-content-wrapper h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b35;
    margin: 1.5rem 0 1rem 0;
    line-height: 1.4;
}

.legal-content-wrapper h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1rem 0 0.5rem 0;
    line-height: 1.4;
}

.legal-content-wrapper p {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-content-wrapper ul,
.legal-content-wrapper ol {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
}

.legal-content-wrapper li {
    margin-bottom: 0.5rem;
    text-align: justify;
}

.legal-content-wrapper ul li {
    list-style-type: disc;
}

.legal-content-wrapper ol li {
    list-style-type: decimal;
}

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

.legal-content-wrapper em {
    color: #ff6b35;
    font-style: italic;
}

/* Emergency Contact Section for Responsible Gambling */
.emergency-contact {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.emergency-contact h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.emergency-contact p {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.emergency-contact a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.emergency-contact a:hover {
    color: #ffffff;
    border-bottom-color: #ffd700;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: none;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000000;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Responsive Design for Legal Pages */
@media (max-width: 1024px) {
    .legal-content {
        padding: 100px 15px 50px;
    }

    .legal-title {
        font-size: 2.2rem;
    }

    .legal-content-wrapper {
        padding: 2.5rem;
    }

    .legal-content-wrapper h1 {
        font-size: 1.8rem;
    }

    .legal-content-wrapper h2 {
        font-size: 1.4rem;
    }

    .legal-content-wrapper h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .legal-content {
        padding: 90px 10px 40px;
    }

    .legal-title {
        font-size: 1.8rem;
    }

    .legal-header {
        margin-bottom: 2rem;
    }

    .legal-content-wrapper {
        padding: 2rem;
        border-radius: 15px;
    }

    .legal-content-wrapper h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .legal-content-wrapper h2 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem 0;
    }

    .legal-content-wrapper h3 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.8rem 0;
    }

    .legal-content-wrapper h4 {
        font-size: 1rem;
    }

    .legal-content-wrapper p,
    .legal-content-wrapper ul,
    .legal-content-wrapper ol {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .emergency-contact {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .emergency-contact h2 {
        font-size: 1.3rem;
    }

    .emergency-contact p {
        font-size: 1rem;
    }

    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 80px 5px 30px;
    }

    .legal-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .legal-header {
        margin-bottom: 1.5rem;
    }

    .legal-content-wrapper {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .legal-content-wrapper h1 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }

    .legal-content-wrapper h2 {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.6rem 0;
    }

    .legal-content-wrapper h3 {
        font-size: 1rem;
        margin: 1rem 0 0.6rem 0;
    }

    .legal-content-wrapper h4 {
        font-size: 0.95rem;
    }

    .legal-content-wrapper p,
    .legal-content-wrapper ul,
    .legal-content-wrapper ol {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .legal-content-wrapper ul,
    .legal-content-wrapper ol {
        padding-left: 1.5rem;
    }

    .emergency-contact {
        padding: 1.2rem;
        margin: 1.2rem 0;
    }

    .emergency-contact h2 {
        font-size: 1.2rem;
    }

    .emergency-contact p {
        font-size: 0.95rem;
    }

    .back-to-top {
        bottom: 70px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .legal-title {
        font-size: 1.3rem;
    }

    .legal-content-wrapper {
        padding: 1.2rem;
    }

    .legal-content-wrapper h1 {
        font-size: 1.2rem;
    }

    .legal-content-wrapper h2 {
        font-size: 1.1rem;
    }

    .legal-content-wrapper h3 {
        font-size: 0.95rem;
    }

    .legal-content-wrapper h4 {
        font-size: 0.9rem;
    }

    .legal-content-wrapper p,
    .legal-content-wrapper ul,
    .legal-content-wrapper ol {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .emergency-contact {
        padding: 1rem;
    }

    .emergency-contact h2 {
        font-size: 1.1rem;
    }

    .emergency-contact p {
        font-size: 0.9rem;
    }
}

/* Accessibility improvements for Legal Pages */
@media (prefers-reduced-motion: reduce) {
    .legal-content::before,
    .legal-content-wrapper,
    .emergency-contact a,
    .back-to-top {
        transition: none;
    }

    .back-to-top:hover {
        transform: none;
    }
}

/* High contrast mode support for Legal Pages */
@media (prefers-contrast: high) {
    .legal-content-wrapper {
        border: 2px solid #ffffff;
        background: #000000;
    }

    .emergency-contact {
        border: 2px solid #ffffff;
        background: #000000;
    }

    .legal-content-wrapper h1,
    .legal-content-wrapper h2,
    .legal-content-wrapper h3,
    .legal-content-wrapper h4,
    .legal-content-wrapper p,
    .legal-content-wrapper li {
        color: #ffffff;
    }

    .emergency-contact h2,
    .emergency-contact p {
        color: #ffffff;
    }

    .emergency-contact a {
        color: #ffffff;
        border-bottom-color: #ffffff;
    }

    .back-to-top {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }
}