/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding: 120px 20px 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.privacy-policy-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.privacy-policy-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.privacy-policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.privacy-policy-header h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.effective-date {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 400;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.privacy-section h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 25px;
}

.privacy-section h4 {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 10px;
    margin-top: 20px;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.privacy-subsection {
    margin-bottom: 30px;
    padding-left: 20px;
}

.data-category {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 20px;
    border-left: 3px solid #ffd700;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.privacy-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.privacy-section li::before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-info {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.dpo-contact h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.dpo-contact ul {
    margin-bottom: 20px;
}

.response-time p {
    margin-bottom: 8px;
    font-weight: 500;
}

.privacy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.privacy-footer hr {
    border: none;
    height: 1px;
    background: rgba(255, 215, 0, 0.3);
    margin-bottom: 20px;
}

.privacy-footer p {
    margin-bottom: 15px;
}

.disclaimer {
    font-style: italic;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 100px 15px 60px;
    }

    .privacy-policy-content {
        padding: 25px;
        border-radius: 12px;
    }

    .privacy-policy-header h1 {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }

    .privacy-section h4 {
        font-size: 1.1rem;
    }

    .privacy-subsection {
        padding-left: 10px;
    }

    .data-category {
        padding: 15px;
    }

    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-section {
        padding: 90px 10px 50px;
    }

    .privacy-policy-content {
        padding: 20px;
    }

    .privacy-policy-header h1 {
        font-size: 1.7rem;
    }

    .effective-date {
        font-size: 1rem;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }

    .privacy-section h3 {
        font-size: 1.1rem;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }

    .data-category {
        padding: 12px;
    }

    .contact-info {
        padding: 15px;
    }
}

/* CSS 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;
}

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

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

.navbar {
    position: relative;
}

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

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

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

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 8px;
}

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

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

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

/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000000 !important;
    font-weight: 700;
    border-radius: 25px;
    padding: 12px 24px !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #ff6b00, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

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

.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: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.mobile-menu.active {
    max-height: 300px;
    opacity: 1;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px;
}

.mobile-nav-item {
    margin-bottom: 10px;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

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

.mobile-cta-btn {
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000000 !important;
    font-weight: 700;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-cta-btn:hover {
    background: linear-gradient(135deg, #ff6b00, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Main Content Spacing */
main {
    margin-top: 70px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

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

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

    main {
        margin-top: 60px;
    }
}

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

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

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

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

    main {
        margin-top: 55px;
    }
}

/* Scroll Effect */
.header.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
}

/* Smooth transitions for all elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

/* Promotion Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
}

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

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.hero-cta {
    margin-top: 2rem;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #ff6b00, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
    color: #000000;
}

/* Section Styles */
.promotions-section,
.how-to-section,
.terms-section,
.payment-section,
.features-section,
.support-section,
.faq-section,
.summary-section,
.footer-note-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.promotions-section.special {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 107, 0, 0.05) 100%);
}

.promotions-container,
.how-to-container,
.terms-container,
.payment-container,
.features-container,
.support-container,
.faq-container,
.summary-container,
.footer-note-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    line-height: 1.3;
}

/* Promotion Cards */
.promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.baccarat-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

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

.promotion-card.featured {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 107, 0, 0.1) 100%);
    position: relative;
}

.promotion-card.featured::after {
    content: 'แนะนำ';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    z-index: 2;
}

.promotion-card.large {
    grid-column: 1;
}

.promotion-card.tournament {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.promotion-card.birthday {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 107, 0, 0.3);
}

.promotion-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.promotion-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.promotion-features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.promotion-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
}

.promotion-features li:last-child {
    border-bottom: none;
}

.promotion-features-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.promotion-btn,
.section-btn,
.payment-btn,
.support-btn,
.final-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000000;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.promotion-btn:hover,
.section-btn:hover,
.payment-btn:hover,
.support-btn:hover,
.final-btn:hover {
    background: linear-gradient(135deg, #ff6b00, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #000000;
}

.promotion-cta {
    text-align: center;
    margin-top: 1.5rem;
}

/* Tournament Prizes */
.tournament-prizes {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.prize-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.prize-rank {
    font-weight: 700;
    color: #ffd700;
}

.prize-amount {
    font-weight: 700;
    color: #ff6b00;
    font-size: 1.1rem;
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.step-list {
    list-style: none;
    text-align: left;
}

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

.step-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

.inline-link {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #ff6b00;
    border-bottom-color: #ff6b00;
}

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

/* Terms Section */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.terms-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 107, 0, 0.03) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.terms-title {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.terms-list {
    list-style: none;
    color: #e0e0e0;
}

.terms-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

.terms-list.ordered {
    counter-reset: terms-counter;
}

.terms-list.ordered li {
    counter-increment: terms-counter;
}

.terms-list.ordered li::before {
    content: counter(terms-counter) '.';
    color: #ffd700;
    font-weight: 700;
}

/* Payment Section */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.payment-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.payment-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-title {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-features {
    list-style: none;
    margin-bottom: 2rem;
}

.payment-features li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.payment-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

.payment-steps {
    list-style: none;
    margin-bottom: 2rem;
    counter-reset: payment-counter;
}

.payment-steps li {
    counter-increment: payment-counter;
    padding: 0.8rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 2rem;
}

.payment-steps li::before {
    content: counter(payment-counter) '.';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1rem;
}

.payment-cta {
    text-align: center;
    margin-top: 1.5rem;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.feature-list {
    list-style: none;
    text-align: left;
}

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

.feature-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.support-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.support-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.support-title {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.support-list {
    list-style: none;
    margin-bottom: 2rem;
}

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

.support-list li::before {
    content: '📌';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.support-cta {
    text-align: center;
    margin-top: 1.5rem;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.faq-question {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Summary Section */
.summary-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.summary-intro {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.reasons-grid {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.reasons-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.reasons-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.reasons-list li {
    padding: 0.8rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.reasons-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.summary-outro {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin: 2rem 0;
    line-height: 1.6;
}

.final-cta {
    margin-top: 2.5rem;
}

.final-btn {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.4);
}

.final-btn:hover {
    box-shadow: 0 15px 45px rgba(255, 215, 0, 0.5);
}

/* Footer Note Section */
.footer-note-section {
    background: rgba(255, 215, 0, 0.03);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: none;
}

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

.note-text {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.note-link {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.note-link:hover {
    color: #ff6b00;
    border-bottom-color: #ff6b00;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-list li {
    color: #e0e0e0;
    font-size: 0.9rem;
}

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

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

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

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

    .promotion-features-flex {
        grid-template-columns: 1fr;
    }
}

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

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

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

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

    .promotions-section,
    .how-to-section,
    .terms-section,
    .payment-section,
    .features-section,
    .support-section,
    .faq-section,
    .summary-section {
        padding: 3rem 0;
    }

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

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

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

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

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

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

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

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

@media (max-width: 480px) {
    .hero-container,
    .promotions-container,
    .how-to-container,
    .terms-container,
    .payment-container,
    .features-container,
    .support-container,
    .faq-container,
    .summary-container,
    .footer-note-container {
        padding: 0 15px;
    }

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

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

    .promotion-card,
    .step-card,
    .terms-card,
    .payment-card,
    .feature-card,
    .support-card,
    .faq-item {
        padding: 1.5rem;
    }

    .hero-btn,
    .promotion-btn,
    .section-btn,
    .payment-btn,
    .support-btn,
    .final-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .final-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .promotion-title,
    .step-title,
    .terms-title,
    .payment-title,
    .feature-title,
    .support-title {
        font-size: 1.2rem;
    }

    .tournament-prizes {
        gap: 0.5rem;
    }

    .prize-item {
        padding: 0.6rem 0.8rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

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

/* Homepage Styles */

/* Common Section Styles */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subsection-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    color: #e0e0e0;
}

.section-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 0, 0.1));
    position: relative;
    overflow: hidden;
}

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

@keyframes grain {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-5px) translateY(-5px); }
    50% { transform: translateX(5px) translateY(-10px); }
    75% { transform: translateX(-10px) translateY(5px); }
    100% { transform: translateX(0) translateY(0); }
}

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

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

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

.hero-cta-primary,
.hero-cta-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000000;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

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

.hero-cta-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-3px);
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Baccarat Section */
.baccarat-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

.baccarat-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

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

.game-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 0, 0.1));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.game-description {
    color: #e0e0e0;
    line-height: 1.6;
}

.strategy-section {
    margin-top: 3rem;
}

.strategy-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.strategy-image {
    text-align: center;
    margin-top: 2rem;
}

/* Demo Game Section */
.demo-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.9);
}

.demo-game {
    max-width: 900px;
    margin: 0 auto;
}

.baccarat-table {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 0, 0.05));
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.table-header h3 {
    color: #ffd700;
    font-size: 1.5rem;
}

.table-status {
    background: #ff0000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.game-area {
    margin-bottom: 2rem;
}

.betting-area {
    margin-bottom: 2rem;
}

.bet-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.bet-option {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.bet-option:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: scale(1.05);
}

.bet-option.active {
    background: rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.bet-label {
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.bet-odds {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.bet-amount {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.cards-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.player-cards,
.banker-cards {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.card-label {
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 1rem;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card {
    width: 60px;
    height: 80px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.score {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}

.game-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chip-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.chip {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.chip:hover,
.chip.active {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-clear,
.btn-deal,
.btn-new-game {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear {
    background: #ff4444;
    color: white;
}

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

.btn-new-game {
    background: #4444ff;
    color: white;
}

.btn-clear:hover,
.btn-deal:hover,
.btn-new-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.game-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.balance {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
}

.last-results {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e0e0e0;
}

.results-history {
    display: flex;
    gap: 0.5rem;
}

/* Wallet Section */
.wallet-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

.wallet-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

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

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

.steps-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

.wallet-conclusion {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

/* Slots Section */
.slots-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.9);
}

.slots-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.slots-themes {
    display: grid;
    gap: 2.5rem;
    margin-top: 2rem;
}

.theme-category {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.theme-title {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.slots-list {
    display: grid;
    gap: 1rem;
}

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

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

.slot-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.slot-content h5 {
    color: #ffd700;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.slot-content p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.strategy-slots {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Login Section */
.login-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

.login-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

.security-categories {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.security-category {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.security-title {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.security-list {
    list-style: none;
    padding: 0;
}

.security-list li {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

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

.login-conclusion {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

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

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

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

.benefit-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.benefit-content p {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Promotions Section */
.promotions-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.9);
}

.promotions-content {
    display: grid;
    gap: 4rem;
    margin-bottom: 3rem;
}

.welcome-bonus {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 2rem;
}

.promo-category-title {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.bonus-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bonus-content h5 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.bonus-content p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.daily-promos {
    margin-top: 3rem;
}

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

.daily-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.daily-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.day-badge {
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.daily-item h5 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.daily-item p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.vip-program {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.vip-title {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.tier-card {
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid;
    text-align: center;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tier-card.bronze {
    border-color: #cd7f32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.05));
}

.tier-card.silver {
    border-color: #c0c0c0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
}

.tier-card.gold {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.tier-card.diamond {
    border-color: #b9f2ff;
    background: linear-gradient(135deg, rgba(185, 242, 255, 0.1), rgba(185, 242, 255, 0.05));
}

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

.tier-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tier-header h5 {
    color: #ffd700;
    font-size: 1.2rem;
}

.tier-benefits {
    list-style: none;
    padding: 0;
}

.tier-benefits li {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
    font-size: 0.9rem;
}

.tier-benefits li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ffd700;
}

.points-description {
    color: #e0e0e0;
    line-height: 1.8;
    margin-top: 2rem;
    text-align: center;
    font-style: italic;
}

.tournaments {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.tournament-description {
    color: #e0e0e0;
    line-height: 1.8;
    text-align: center;
}

.promotions-image {
    text-align: center;
}

/* Contact & CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

.contact-info {
    margin-bottom: 3rem;
}

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

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

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

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-content strong {
    color: #ffd700;
}

.contact-content span {
    color: #e0e0e0;
}

.cta-banner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 0, 0.1));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 3rem;
}

.cta-content h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary {
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000000;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

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

.cta-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-3px);
}

.additional-links {
    text-align: center;
    color: #e0e0e0;
    line-height: 1.8;
}

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

.additional-links a:hover {
    color: #ff6b00;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.9);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: grid;
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.faq-question {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.guarantee-badges {
    margin-bottom: 3rem;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 0, 0.1));
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.guarantee-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.badge-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-text {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
}

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

.final-cta-button {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.final-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .wallet-content,
    .slots-content,
    .login-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

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

    .hero-section {
        padding: 80px 0 60px;
    }

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

    .hero-description {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

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

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

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

    .bet-section {
        grid-template-columns: 1fr;
    }

    .cards-area {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }
}

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

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

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

    .subsection-title {
        font-size: 1.3rem;
    }

    .game-card,
    .feature-item,
    .benefit-item {
        padding: 1.5rem;
    }

    .baccarat-table {
        padding: 1.5rem;
    }

    .chip-selector {
        gap: 0.5rem;
    }

    .chip {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .cta-banner {
        padding: 2rem;
    }

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

/* Footer Styles */
.footer {
    background-color: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 2rem 0;
    margin-top: 4rem;
}

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

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

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 1rem 0;
}

.sticky-buttons-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 50px;
}

.sticky-btn-login {
    background-color: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.sticky-btn-login:hover {
    background-color: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-2px);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000000;
    border: none;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #ff6b00, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.sticky-btn-credit {
    background-color: rgba(255, 107, 0, 0.1);
    color: #ff6b00;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.sticky-btn-credit:hover {
    background-color: rgba(255, 107, 0, 0.2);
    border-color: #ff6b00;
    transform: translateY(-2px);
}

/* Mobile Responsive Styles for Footer and Sticky Buttons */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

    .sticky-buttons-container {
        padding: 0 10px;
        gap: 0.5rem;
    }

    .sticky-btn {
        padding: 0.75rem;
        font-size: 0.85rem;
        min-height: 45px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0;
    }

    .footer-nav {
        gap: 0.75rem;
    }

    .footer-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .sticky-buttons-container {
        gap: 0.25rem;
    }

    .sticky-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
        min-height: 40px;
    }
}

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

.login-page-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.login-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.login-page-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.login-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

.login-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

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

.register-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid #ffd700;
    border-radius: 8px;
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin-top: 1rem;
}

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

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

/* Login Page Responsive Styles */
@media (max-width: 768px) {
    .login-page-section {
        padding: 90px 15px 40px;
    }

    .login-page-content {
        padding: 1.5rem;
        margin: 0 10px;
    }

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

    .login-form {
        gap: 1.25rem;
    }

    .form-input,
    .login-btn,
    .register-btn {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-page-section {
        padding: 80px 10px 30px;
    }

    .login-page-content {
        padding: 1.25rem;
        margin: 0 5px;
    }

    .login-page-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .login-form {
        gap: 1rem;
    }

    .form-input,
    .login-btn,
    .register-btn {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

/* Register Page Styles */
.register-section {
    min-height: 100vh;
    padding: 100px 20px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(25, 25, 25, 0.95));
    position: relative;
}

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

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

.register-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.register-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

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

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

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

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

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

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

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

.btn-register,
.btn-login {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-register {
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #000000;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

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

.btn-login {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-login:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

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

/* Register Page Responsive Design */
@media (max-width: 768px) {
    .register-section {
        padding: 90px 15px 40px;
    }

    .register-content {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }

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

    .register-form {
        gap: 1.25rem;
    }

    .form-input,
    .btn-register,
    .btn-login {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 80px 10px 30px;
    }

    .register-content {
        padding: 1.5rem 1rem;
        margin: 0 5px;
        border-radius: 15px;
    }

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

    .register-form {
        gap: 1rem;
    }

    .form-input,
    .btn-register,
    .btn-login {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .form-buttons {
        margin-top: 0.5rem;
    }
}

/* Terms and Conditions Page Styles */
.terms-container {
    padding: 120px 20px 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.terms-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    line-height: 1.7;
}

.terms-content h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.terms-content h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin: 40px 0 20px 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    border-left: 4px solid #ffd700;
    padding-left: 15px;
}

.terms-content h3 {
    font-size: 1.4rem;
    color: #ffd700;
    margin: 30px 0 15px 0;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}

.terms-content h4 {
    font-size: 1.2rem;
    color: #ffed4e;
    margin: 20px 0 10px 0;
}

.terms-content p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 15px;
    text-align: justify;
}

.terms-content ul, .terms-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.terms-content li {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.terms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.terms-content th,
.terms-content td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.terms-content th {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-weight: 600;
}

.terms-content td {
    color: #cccccc;
}

.terms-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 40px 0;
}

/* Terms Page Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        padding: 90px 15px 40px;
    }

    .terms-content {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }

    .terms-content h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .terms-content h2 {
        font-size: 1.4rem;
        margin: 30px 0 15px 0;
    }

    .terms-content h3 {
        font-size: 1.2rem;
        margin: 20px 0 10px 0;
    }

    .terms-content h4 {
        font-size: 1.1rem;
    }

    .terms-content p,
    .terms-content li {
        font-size: 0.95rem;
    }

    .terms-content ul, .terms-content ol {
        padding-left: 20px;
    }

    .terms-content table {
        font-size: 0.85rem;
    }

    .terms-content th,
    .terms-content td {
        padding: 8px 10px;
    }
}

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

    .terms-content {
        padding: 1.5rem 1rem;
        margin: 0 5px;
        border-radius: 15px;
    }

    .terms-content h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .terms-content h2 {
        font-size: 1.25rem;
        margin: 25px 0 12px 0;
        padding-left: 10px;
    }

    .terms-content h3 {
        font-size: 1.1rem;
        margin: 15px 0 8px 0;
    }

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

    .terms-content p,
    .terms-content li {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .terms-content ul, .terms-content ol {
        padding-left: 15px;
    }

    .terms-content table {
        font-size: 0.8rem;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }

    .terms-content th,
    .terms-content td {
        padding: 6px 8px;
        min-width: 80px;
    }
}