/* Global 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;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 0.75rem;
}

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

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

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

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

.nav-item {
    position: relative;
}

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

.nav-link:hover {
    color: #ffd700;
    transform: translateY(-1px);
}

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

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

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ff5722, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #ffffff !important;
}

.cta-button::after {
    display: none;
}

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

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

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

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

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid #333;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
}

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

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.mobile-cta {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    margin: 1rem 2rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-cta:hover {
    background: linear-gradient(45deg, #ff5722, #ff9800);
    padding-left: 2rem;
    transform: scale(1.02);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .header-container {
        padding: 1.25rem 2rem;
    }

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

    .logo-text {
        font-size: 1.75rem;
    }

    .desktop-nav {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 1.5rem 2rem;
    }

    .nav-menu {
        gap: 2.5rem;
    }

    .nav-link {
        padding: 0.75rem 1.25rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 1280px) {
    .header-container {
        padding: 1.5rem 0;
    }
}

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

/* Print styles */
@media print {
    .header {
        background: white;
        color: black;
        box-shadow: none;
        border-bottom: 1px solid #ccc;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }
}

/* Main Content Styles */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
    align-items: center;
    min-height: 60vh;
}

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

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

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

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-primary:hover {
    background: linear-gradient(45deg, #ff5722, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #ffd700;
    padding: 1rem 2rem;
    border: 2px solid #ffd700;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #ffd700;
    color: #0a0a0a;
    transform: translateY(-1px);
}

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

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Demo Section */
.demo-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 20px;
}

.demo-container {
    text-align: center;
}

.demo-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.demo-subtitle {
    color: #cccccc;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.baccarat-demo {
    max-width: 800px;
    margin: 0 auto;
}

.demo-table {
    background: linear-gradient(135deg, #0f5132 0%, #198754 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.table-layout {
    display: grid;
    gap: 2rem;
}

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

.player-area, .banker-area {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.player-area h3, .banker-area h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.card {
    width: 60px;
    height: 80px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000000;
    border: 2px solid #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

.betting-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.bet-option {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.bet-option.selected {
    background: linear-gradient(45deg, #ffd700, #ffb300);
}

.bet-label {
    display: block;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.bet-odds {
    color: #ffffff;
    font-size: 0.9rem;
}

.demo-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.demo-btn {
    background: linear-gradient(45deg, #6f42c1, #8f5fe8);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.demo-balance {
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

/* Section Styles */
section {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

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

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.subsection-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.section-text {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Step Lists */
.step-list {
    color: #cccccc;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.step-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-list strong {
    color: #ffd700;
}

/* CTA Links */
.cta-link {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-link:hover {
    background: linear-gradient(45deg, #ff5722, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.game-category {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

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

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

.game-list li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.game-list li::before {
    content: '🎮';
    position: absolute;
    left: 0;
}

.game-list strong {
    color: #ffffff;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

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

/* Credibility Section */
.credentials-grid {
    margin: 2rem 0;
}

.credential-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

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

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

.credential-list li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

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

.credential-list strong {
    color: #ffffff;
}

/* Customer Service */
.customer-service {
    margin: 3rem 0;
}

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

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

.contact-title {
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    font-size: 1.2rem;
}

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

.contact-list li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.contact-list li::before {
    content: '📞';
    position: absolute;
    left: 0;
}

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

/* Game Variety */
.game-variety {
    margin: 3rem 0;
}

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

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

.category-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
}

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

.category-games {
    list-style: none;
    padding: 0;
}

.category-games li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.category-games li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* Features Section */
.features-grid {
    margin: 2rem 0;
}

.feature-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

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

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

.feature-list li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: '🚀';
    position: absolute;
    left: 0;
}

.feature-list strong {
    color: #ffffff;
}

/* Responsibility Section */
.responsibility-section {
    margin: 3rem 0;
}

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

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

.tool-group {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
}

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

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

.tool-list li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.tool-list li::before {
    content: '🛡️';
    position: absolute;
    left: 0;
}

.safety-image {
    text-align: center;
    margin: 2rem 0;
}

/* Community Section */
.community-title {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.activity-title {
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    font-size: 1.2rem;
}

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

.activity-list li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.activity-list li::before {
    content: '🎉';
    position: absolute;
    left: 0;
}

.activity-list strong {
    color: #ffffff;
}

/* Summary Section */
.summary-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
}

.summary-title {
    color: #ffd700;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.summary-image {
    margin-top: 2rem;
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

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

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

.contact-item {
    color: #cccccc;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

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

.final-cta {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 2rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .hero-section {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 4rem 0;
    }

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

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

    .hero-actions {
        flex-direction: row;
        justify-content: flex-start;
    }

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

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

    .game-categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .safety-tools {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .betting-area {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .service-grid {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

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

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

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0;
    }

    .hero-section {
        padding: 5rem 0;
    }

    section {
        padding: 4rem 0;
    }
}

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

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

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

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

.footer-link:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid #333;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    border-right: 1px solid #333;
    min-height: 60px;
}

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

.sticky-btn-login {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.sticky-btn-login:hover {
    background: linear-gradient(45deg, #218838, #1a9f7a);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.sticky-btn-register {
    background: linear-gradient(45deg, #007bff, #0056b3);
}

.sticky-btn-register:hover {
    background: linear-gradient(45deg, #0056b3, #003d82);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.sticky-btn-bonus {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    animation: pulse 2s infinite;
}

.sticky-btn-bonus:hover {
    background: linear-gradient(45deg, #ff5722, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.sticky-btn:focus {
    outline: 2px solid #ffd700;
    outline-offset: -2px;
}

/* Responsive Footer */
@media (min-width: 768px) {
    .footer-container {
        padding: 0 2rem;
    }

    .footer-nav {
        flex-direction: row;
        gap: 2rem;
    }

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

    .sticky-btn {
        font-size: 1rem;
        padding: 1.25rem 1rem;
    }
}

@media (min-width: 1024px) {
    .footer-nav {
        gap: 3rem;
    }

    .footer-link {
        padding: 1rem 2rem;
    }

    .sticky-btn {
        font-size: 1.1rem;
        padding: 1.5rem 1.5rem;
    }
}

@media (min-width: 1280px) {
    .footer-container {
        padding: 0;
    }
}

/* Promotion Page Specific Styles */

/* Comparison Table */
.comparison-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 0.95rem;
}

.comparison-table thead th {
    background: linear-gradient(45deg, #ffd700, #ffb300);
    color: #000;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    border: none;
}

.comparison-table tbody td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #333;
    color: #cccccc;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-table tbody tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.1);
}

.comparison-table .highlight {
    color: #ffd700;
    font-weight: 700;
    background: rgba(255, 215, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.faq-question {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer strong {
    color: #ffffff;
}

/* Highlight Benefits */
.highlight-benefits {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.final-cta-container {
    text-align: center;
    margin-top: 3rem;
}

.final-cta-btn {
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
    margin-bottom: 2rem;
    display: inline-block;
}

/* Disclaimer Section */
.disclaimer-section {
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
}

.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #333, transparent);
    margin: 3rem 0 2rem 0;
}

.disclaimer-text {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid #333;
}

/* Grid Layout Adjustments for Promotion Page */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

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

/* Mobile Responsive for Promotion Page */
@media (max-width: 480px) {
    .comparison-table-container {
        padding: 1rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.75rem 0.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

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

    .highlight-benefits {
        padding: 1.5rem;
    }

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .comparison-table {
        font-size: 1rem;
    }

    .faq-item {
        padding: 2.5rem;
    }

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

@media (min-width: 1024px) {
    .comparison-table-container {
        padding: 2rem;
    }

    .comparison-table {
        font-size: 1.1rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 1.25rem;
    }

    .faq-item {
        padding: 3rem;
    }

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

    .highlight-benefits {
        padding: 2.5rem;
    }
}

/* Print styles for footer */
@media print {
    .footer {
        background: white;
        color: black;
        border-top: 1px solid #ccc;
    }

    .footer-link {
        color: black;
    }

    .sticky-buttons {
        display: none;
    }
}

/* Accessibility and keyboard navigation */
@media (prefers-reduced-motion: reduce) {
    .footer-link {
        transition: none;
    }

    .sticky-btn {
        transition: none;
        animation: none;
    }

    .sticky-btn-bonus {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .footer-link {
        border: 2px solid currentColor;
    }

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

/* Login Page Styles */
.login-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem 1rem;
    text-align: center;
}

.login-page-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffd700, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    max-width: 800px;
}

.login-form {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #555;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

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

.login-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.login-btn:hover {
    background: linear-gradient(45deg, #218838, #1a9f7a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

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

.register-btn:hover {
    background: #ffd700;
    color: #0a0a0a;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Responsive Login Page */
@media (min-width: 768px) {
    .login-page-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }

    .login-form {
        padding: 2.5rem;
        max-width: 450px;
    }

    .form-input {
        padding: 1.25rem;
        font-size: 1.1rem;
    }

    .login-btn,
    .register-btn {
        padding: 1.25rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .login-page-container {
        padding: 3rem 2rem;
        min-height: 85vh;
    }

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

    .login-form {
        padding: 3rem;
        max-width: 500px;
    }

    .form-group {
        margin-bottom: 2rem;
    }

    .form-actions {
        margin-top: 2.5rem;
    }
}

/* Register Page Styles */
.register-section {
    padding: 2rem 1rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.4;
}

.register-form {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #333;
    border: 1px solid #555;
    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 0 2px rgba(255, 215, 0, 0.1);
    background: #2a2a2a;
}

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

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

.btn {
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffb300);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.btn-outline:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .register-section {
        padding: 1.5rem 1rem;
        min-height: 75vh;
    }

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

    .register-form {
        padding: 1.5rem;
    }

    .form-input {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) {
    .register-section {
        padding: 3rem 2rem;
        min-height: 85vh;
    }

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

    .register-form {
        padding: 2.5rem;
        max-width: 450px;
    }

    .form-actions {
        flex-direction: row;
        gap: 1.5rem;
    }

    .btn {
        flex: 1;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .register-section {
        padding: 4rem 2rem;
        min-height: 85vh;
    }

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

    .register-form {
        padding: 3rem;
        max-width: 500px;
    }

    .form-group {
        margin-bottom: 2rem;
    }

    .form-actions {
        margin-top: 2.5rem;
    }
}
/* Privacy Policy Page Styles */
.privacy-policy-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.privacy-policy-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #333;
}

.privacy-policy-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffb300;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 4px solid #ffd700;
}

.privacy-policy-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.privacy-policy-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-policy-content h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.privacy-policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
    color: #d0d0d0;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy-content li {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
}

.privacy-policy-content strong {
    color: #ffffff;
    font-weight: 700;
}

.privacy-policy-content hr {
    border: none;
    border-top: 1px solid #444;
    margin: 2rem 0;
}

/* Mobile Responsive for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-content {
        gap: 1.5rem;
        padding: 1rem;
    }

    .privacy-policy-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }

    .privacy-policy-content h3 {
        font-size: 1.15rem;
        margin-top: 1.5rem;
    }

    .privacy-policy-content h4 {
        font-size: 1.05rem;
        margin-top: 1.25rem;
    }

    .privacy-policy-content ul,
    .privacy-policy-content ol {
        margin-left: 1.5rem;
    }
}

/* Tablet Responsive for Privacy Policy */
@media (min-width: 769px) and (max-width: 1023px) {
    .privacy-policy-content {
        gap: 1.75rem;
        padding: 1.5rem;
    }

    .privacy-policy-content h1 {
        font-size: 1.9rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.4rem;
    }

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

/* Desktop Responsive for Privacy Policy */
@media (min-width: 1024px) {
    .privacy-policy-content {
        gap: 2rem;
        padding: 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .privacy-policy-content h1 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.6rem;
        margin-top: 3rem;
        margin-bottom: 1.25rem;
    }

    .privacy-policy-content h3 {
        font-size: 1.35rem;
        margin-top: 2.25rem;
        margin-bottom: 1rem;
    }

    .privacy-policy-content h4 {
        font-size: 1.2rem;
        margin-top: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .privacy-policy-content ul,
    .privacy-policy-content ol {
        margin-left: 2.5rem;
    }
}

/* ===== Terms and Conditions Styles ===== */
.terms-section {
    padding: 2rem 0;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.terms-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 1rem;
}

.terms-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    border-left: 4px solid #ffd700;
    padding-left: 1rem;
}

.terms-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-top: 2.25rem;
    margin-bottom: 1rem;
}

.terms-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.terms-content h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.terms-content p {
    margin-bottom: 1rem;
    text-align: justify;
    color: #d0d0d0;
    line-height: 1.7;
}

.terms-content ul,
.terms-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.terms-content strong {
    color: #ffffff;
    font-weight: 700;
}

.terms-content hr {
    border: none;
    border-top: 1px solid #444;
    margin: 2rem 0;
}

/* Mobile Responsive for Terms and Conditions */
@media (max-width: 768px) {
    .terms-section {
        padding: 1rem 0;
    }

    .terms-content {
        gap: 1.5rem;
        padding: 1rem;
        margin: 0 1rem;
    }

    .terms-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .terms-content h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
        padding-left: 0.75rem;
    }

    .terms-content h3 {
        font-size: 1.15rem;
        margin-top: 1.5rem;
    }

    .terms-content h4 {
        font-size: 1.05rem;
        margin-top: 1.25rem;
    }

    .terms-content ul,
    .terms-content ol {
        margin-left: 1.5rem;
    }

    .terms-content p {
        text-align: left;
    }
}

/* Tablet Responsive for Terms and Conditions */
@media (min-width: 769px) and (max-width: 1023px) {
    .terms-content {
        gap: 1.75rem;
        padding: 1.5rem;
        margin: 0 2rem;
    }

    .terms-content h1 {
        font-size: 1.9rem;
    }

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

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

/* Desktop Responsive for Terms and Conditions */
@media (min-width: 1024px) {
    .terms-content {
        gap: 2rem;
        padding: 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .terms-content h1 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    .terms-content h2 {
        font-size: 1.6rem;
        margin-top: 3rem;
        margin-bottom: 1.25rem;
    }

    .terms-content h3 {
        font-size: 1.35rem;
        margin-top: 2.25rem;
        margin-bottom: 1rem;
    }

    .terms-content h4 {
        font-size: 1.2rem;
        margin-top: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .terms-content ul,
    .terms-content ol {
        margin-left: 2.5rem;
    }
}
