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

html {
    font-size: 16px;
}

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

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

/* Header */
.header {
    background-color: #111111;
    border-bottom: 1px solid #333333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

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

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

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

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

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #111111;
    border-bottom: 1px solid #333333;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

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

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

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

.mobile-nav-menu li {
    border-bottom: 1px solid #333333;
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
    padding: 1rem 20px;
}

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

.mobile-nav-link:hover {
    color: #ffd700;
    background-color: #1a1a1a;
}

.mobile-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    width: calc(100% - 40px);
    text-align: center;
    margin: 0 20px;
}

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

/* Main Content Spacing */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

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

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

    .mobile-menu {
        display: block;
    }

    .header-content {
        padding: 0.75rem 0;
    }

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

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

    main {
        margin-top: 70px;
    }
}

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

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

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

    main {
        margin-top: 65px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

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

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

/* Dark mode specific adjustments */
@media (prefers-color-scheme: dark) {
    .header {
        background-color: #111111;
        border-bottom-color: #333333;
    }
}

/* Homepage Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

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

.hero-cta-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    display: inline-block;
}

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

.hero-cta-secondary {
    background: transparent;
    color: #ffd700;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #ffd700;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-cta-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

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

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Demo Playing Section */
.demo-section {
    background: #111111;
    padding: 4rem 0;
    text-align: center;
}

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

.demo-description {
    font-size: 1.125rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
}

.demo-game {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.slot-machine {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #333333;
    max-width: 400px;
    width: 100%;
}

.slot-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    background: #0a0a0a;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #ffd700;
}

.slot-reel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.slot-symbol {
    font-size: 2rem;
    background: #222222;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

.slot-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.spin-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.bet-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bet-btn {
    background: #333333;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet-btn:hover {
    background: #ffd700;
    color: #000000;
}

.bet-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    min-width: 40px;
    text-align: center;
}

.slot-info {
    display: flex;
    justify-content: space-between;
    color: #e0e0e0;
    font-size: 1rem;
}

.slot-info span {
    color: #ffd700;
    font-weight: 700;
}

/* Common Section Styles */
.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

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

/* Platform Access Section */
.platform-access {
    background: #0a0a0a;
    padding: 4rem 0;
}

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

.access-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

.access-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #333333;
    color: #e0e0e0;
    position: relative;
    padding-left: 2rem;
}

.access-list li:before {
    content: "→";
    color: #ffd700;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

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

.contact-info {
    background: #222222;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    color: #e0e0e0;
    margin-top: 1.5rem;
}

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

/* Special Features Section */
.special-features {
    background: #111111;
    padding: 4rem 0;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.feature-column {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.feature-description {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin: 2rem 0 1rem 0;
}

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

.games-list li {
    padding: 1rem;
    background: #222222;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.games-list li:hover {
    background: #2a2a2a;
    transform: translateX(10px);
}

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

.feature-cta, .strategy-cta, .promotion-cta, .financial-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.feature-cta:hover, .strategy-cta:hover, .promotion-cta:hover, .financial-cta:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

/* Strategies Section */
.strategies-section {
    background: #0a0a0a;
    padding: 4rem 0;
}

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

.strategy-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.strategy-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.strategy-description {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.strategy-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin: 2rem 0 1rem 0;
}

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

.strategy-list li {
    counter-increment: strategy-counter;
    padding: 1rem;
    background: #222222;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
}

.strategy-list li:before {
    content: counter(strategy-counter);
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: #ffd700;
    color: #000000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

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

.inline-link {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid #ffd700;
    transition: all 0.3s ease;
}

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

/* Promotions Section */
.promotions-section {
    background: #111111;
    padding: 4rem 0;
}

.promotions-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.promotion-content {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.promotion-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.promotion-description {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.promotion-list li {
    padding: 1rem;
    background: #222222;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 2rem;
}

.promotion-list li:before {
    content: "🎁";
    position: absolute;
    left: 0.5rem;
    top: 1rem;
}

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

.promotion-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin: 2rem 0 1rem 0;
}

.promotion-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 1.5rem 0;
}

.promotion-steps li {
    counter-increment: step-counter;
    padding: 1rem;
    background: #222222;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
}

.promotion-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: #ffd700;
    color: #000000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.promotion-image {
    text-align: center;
    align-self: center;
}

/* Financial System Section */
.financial-system {
    background: #0a0a0a;
    padding: 4rem 0;
}

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

.financial-content, .security-content {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.financial-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.financial-description {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.banking-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

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

.banking-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #333333;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.banking-list li:before {
    content: "✓";
    color: #ffd700;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

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

.security-image {
    text-align: center;
    margin: 3rem 0;
}

.user-design {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    margin-top: 3rem;
}

/* FAQ Section */
.faq-section {
    background: #111111;
    padding: 4rem 0;
}

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

.faq-category {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.faq-category-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 1rem;
}

.faq-item {
    margin-bottom: 2rem;
    background: #222222;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
    padding: 1.5rem;
    background: #333333;
    border-bottom: 2px solid #ffd700;
}

.faq-answer {
    color: #e0e0e0;
    line-height: 1.7;
    padding: 1.5rem;
    margin: 0;
}

.contact-list, .response-time-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.contact-list li, .response-time-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #444444;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.contact-list li:before, .response-time-list li:before {
    content: "📞";
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.contact-list li:last-child, .response-time-list li:last-child {
    border-bottom: none;
}

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

.faq-cta {
    text-align: center;
    margin: 3rem 0;
}

.faq-button, .summary-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    text-decoration: none;
    padding: 1.25rem 3rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.faq-button:hover, .summary-button:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.support-image {
    text-align: center;
    margin-top: 3rem;
}

/* Summary Section */
.summary-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 4rem 0;
    text-align: center;
}

.summary-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid #ffd700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.summary-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.summary-text {
    font-size: 1.125rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

/* Responsive Design for Homepage */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .promotions-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
        min-height: 60vh;
    }

    .demo-section, .platform-access, .special-features, .strategies-section,
    .promotions-section, .financial-system, .faq-section, .summary-section {
        padding: 2rem 0;
    }

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

    .access-card, .feature-column, .strategy-card, .promotion-content,
    .financial-content, .security-content, .faq-category, .user-design {
        padding: 1.5rem;
    }

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

    .hero-cta-primary, .hero-cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .slot-machine {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .slot-display {
        padding: 1rem;
    }

    .slot-symbol {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .slot-controls {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .slot-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .summary-content {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

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

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

    .feature-title, .strategy-title, .promotion-title, .financial-title {
        font-size: 1.5rem;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

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

    .access-list li, .promotion-list li, .strategy-list li, .promotion-steps li {
        padding: 0.75rem;
    }

    .hero-cta-primary, .hero-cta-secondary, .feature-cta, .strategy-cta,
    .promotion-cta, .financial-cta, .faq-button, .summary-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .spin-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1.125rem;
    }
}

/* Animations */
@keyframes spin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.slot-symbol.spinning {
    animation: spin 0.5s ease-in-out;
}

/* Focus states for new elements */
.hero-cta-primary:focus, .hero-cta-secondary:focus,
.feature-cta:focus, .strategy-cta:focus, .promotion-cta:focus,
.financial-cta:focus, .faq-button:focus, .summary-button:focus,
.spin-btn:focus, .bet-btn:focus, .inline-link:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Footer Styles */
.footer {
    background-color: #111111;
    border-top: 1px solid #333333;
    padding: 2rem 0;
    margin-top: 4rem;
}

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

.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.footer-link:hover {
    color: #ffd700;
}

.footer-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #ffd700;
}

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 30%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0 1.5rem;
}

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

.sticky-btn {
    flex: 1;
    max-width: 200px;
    display: inline-block;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sticky-btn-login {
    background: linear-gradient(135deg, #333333, #444444);
    color: #ffffff;
    border: 2px solid #ffd700;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #444444, #555555);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

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

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

.sticky-btn-credit {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

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

    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .sticky-buttons-container {
        padding: 0 15px;
        gap: 0.75rem;
    }

    .sticky-btn {
        font-size: 0.8rem;
        padding: 0.875rem 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        gap: 1rem;
    }

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

    .sticky-buttons {
        padding: 0.75rem 0 1.25rem;
    }

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

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

/* Promotion Page Styles */

/* Hero Section */
.promo-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 0;
    text-align: center;
}

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

.promo-hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.promo-hero-subtitle {
    font-size: 1.125rem;
    color: #e0e0e0;
    line-height: 1.7;
}

.promo-hero-subtitle p {
    margin-bottom: 1.5rem;
}

.promo-hero-link {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 2px solid #ffd700;
    transition: all 0.3s ease;
    font-weight: 700;
}

.promo-hero-link:hover {
    color: #ffed4e;
    border-bottom-color: #ffed4e;
}

/* Common Section Styles */
.promo-section-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

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

.promo-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    font-size: 1rem;
}

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

.promo-cta-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Main Promotions Section */
.promo-main {
    background: #111111;
    padding: 4rem 0;
}

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

.promo-package-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.promo-package-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.promo-package-desc {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.promo-offers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.promo-offer {
    background: #222222;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.promo-offer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.promo-offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.promo-offer-list li:before {
    content: "✓";
    color: #ffd700;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

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

.promo-vip-item {
    background: #222222;
    padding: 1.5rem;
    border-radius: 10px;
    color: #e0e0e0;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.promo-vip-item:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

.promo-vip-item strong {
    color: #ffd700;
}

/* Platform Access Section */
.promo-access {
    background: #0a0a0a;
    padding: 4rem 0;
}

.promo-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.promo-access-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.promo-access-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.promo-access-desc {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.promo-steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 1.5rem 0;
}

.promo-steps-list li {
    counter-increment: step-counter;
    padding: 1rem;
    background: #222222;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
}

.promo-steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: #ffd700;
    color: #000000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.promo-steps-list strong {
    color: #ffd700;
}

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

.promo-feature-item {
    background: #222222;
    padding: 1rem;
    border-radius: 10px;
    color: #e0e0e0;
    border-left: 4px solid #ffd700;
}

.promo-feature-item strong {
    color: #ffd700;
}

/* Strategies Section */
.promo-strategies {
    background: #111111;
    padding: 4rem 0;
}

.promo-strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.promo-strategy-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.promo-strategy-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.promo-strategy-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin: 2rem 0 1rem 0;
}

.promo-strategy-list {
    list-style: none;
    counter-reset: strategy-counter;
    padding: 0;
    margin: 1.5rem 0;
}

.promo-strategy-list li {
    counter-increment: strategy-counter;
    padding: 1rem;
    background: #222222;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
}

.promo-strategy-list li:before {
    content: counter(strategy-counter);
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: #ffd700;
    color: #000000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.promo-strategy-list strong {
    color: #ffd700;
}

.promo-strategy-points {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.promo-strategy-points li {
    padding: 0.75rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #333333;
}

.promo-strategy-points li:before {
    content: "→";
    color: #ffd700;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.promo-strategy-points li:last-child {
    border-bottom: none;
}

.promo-game-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.promo-game-type {
    background: #222222;
    padding: 1rem;
    border-radius: 10px;
    color: #e0e0e0;
    border-left: 4px solid #ffd700;
}

.promo-game-type strong {
    color: #ffd700;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.promo-feature-point {
    background: #222222;
    padding: 1rem;
    border-radius: 10px;
    color: #e0e0e0;
    border-left: 4px solid #ffd700;
}

.promo-feature-point strong {
    color: #ffd700;
}

/* Schedule Section */
.promo-schedule {
    background: #0a0a0a;
    padding: 4rem 0;
}

.promo-schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.promo-schedule-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.promo-schedule-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.promo-time-slot {
    background: #222222;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.promo-time-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.promo-time-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-time-benefits li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.promo-time-benefits li:before {
    content: "🎁";
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Benefits Section */
.promo-benefits {
    background: #111111;
    padding: 4rem 0;
}

.promo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.promo-benefit-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.promo-benefit-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
}

.promo-benefit-category {
    margin-bottom: 2rem;
}

.promo-benefit-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.promo-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-benefit-list li {
    padding: 0.75rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #333333;
}

.promo-benefit-list li:before {
    content: "✓";
    color: #ffd700;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

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

/* Games Section */
.promo-games {
    background: #0a0a0a;
    padding: 4rem 0;
}

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

.promo-games-content {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.promo-games-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.promo-provider {
    background: #222222;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.promo-provider-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.promo-game-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.promo-game-item {
    background: #333333;
    padding: 1rem;
    border-radius: 8px;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.promo-game-item:hover {
    background: #3a3a3a;
    transform: translateX(5px);
}

.promo-game-item strong {
    color: #ffd700;
}

/* Registration Section */
.promo-registration {
    background: #111111;
    padding: 4rem 0;
}

.promo-registration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.promo-reg-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.promo-reg-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
}

.promo-reg-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.promo-reg-step {
    background: #222222;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.promo-reg-step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.promo-reg-substeps {
    list-style: none;
    counter-reset: substep-counter;
    padding: 0;
    margin: 0;
}

.promo-reg-substeps li {
    counter-increment: substep-counter;
    padding: 0.5rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 2rem;
}

.promo-reg-substeps li:before {
    content: counter(substep-counter) ".";
    color: #ffd700;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.promo-contact-section {
    margin-bottom: 2rem;
}

.promo-contact-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.promo-contact-list, .promo-social-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.promo-contact-item, .promo-social-item {
    background: #222222;
    padding: 1rem;
    border-radius: 8px;
    color: #e0e0e0;
    border-left: 4px solid #ffd700;
}

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

/* FAQ Section */
.promo-faq {
    background: #0a0a0a;
    padding: 4rem 0;
}

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

.promo-faq-category {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.promo-faq-category-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 1rem;
}

.promo-faq-item {
    margin-bottom: 2rem;
    background: #222222;
    border-radius: 10px;
    overflow: hidden;
}

.promo-faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
    padding: 1.5rem;
    background: #333333;
    border-bottom: 2px solid #ffd700;
}

.promo-faq-answer {
    color: #e0e0e0;
    line-height: 1.7;
    padding: 1.5rem;
    margin: 0;
}

.promo-faq-answer p {
    margin: 0;
}

/* Summary Section */
.promo-summary {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 4rem 0;
    text-align: center;
}

.promo-summary-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid #ffd700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.promo-summary-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
}

.promo-summary-text {
    color: #e0e0e0;
    line-height: 1.7;
    text-align: left;
}

.promo-summary-text > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    text-align: center;
}

.promo-summary-benefits {
    margin: 2rem 0;
}

.promo-summary-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.promo-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-summary-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #333333;
}

.promo-summary-list li:before {
    content: "✓";
    color: #ffd700;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

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

.promo-summary-start {
    margin: 2rem 0;
}

.promo-summary-conclusion {
    margin-top: 2rem;
}

.promo-summary-conclusion > p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.promo-disclaimer {
    margin-top: 2rem;
    padding: 1rem;
    background: #222222;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.promo-disclaimer p {
    margin: 0;
    font-size: 0.875rem;
    color: #cccccc;
    text-align: center;
}

/* Responsive Design for Promotion Page */
@media (max-width: 1024px) {
    .promo-packages {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .promo-access-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .promo-strategies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .promo-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .promo-registration-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .promo-time-slots {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .promo-game-providers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

    .promo-main, .promo-access, .promo-strategies, .promo-schedule,
    .promo-benefits, .promo-games, .promo-registration, .promo-faq, .promo-summary {
        padding: 2rem 0;
    }

    .promo-package-card, .promo-access-card, .promo-strategy-card,
    .promo-schedule-card, .promo-benefit-card, .promo-games-content,
    .promo-reg-card, .promo-faq-category {
        padding: 1.5rem;
    }

    .promo-summary-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .promo-offers {
        gap: 1.5rem;
    }

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

    .promo-mobile-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .promo-time-slots {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .promo-game-providers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .promo-reg-steps {
        gap: 1.5rem;
    }
}

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

    .promo-section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .promo-package-title, .promo-strategy-title, .promo-benefit-title,
    .promo-games-title, .promo-reg-title, .promo-faq-category-title {
        font-size: 1.5rem;
    }

    .promo-summary-title {
        font-size: 2rem;
    }

    .promo-package-card, .promo-access-card, .promo-strategy-card,
    .promo-schedule-card, .promo-benefit-card, .promo-games-content,
    .promo-reg-card, .promo-faq-category {
        padding: 1.25rem;
    }

    .promo-summary-content {
        padding: 1.5rem;
    }

    .promo-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .promo-cta-large {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }

    .promo-offer, .promo-vip-item, .promo-feature-item,
    .promo-time-slot, .promo-provider, .promo-reg-step {
        padding: 1rem;
    }

    .promo-contact-item, .promo-social-item, .promo-game-item {
        padding: 0.75rem;
    }
}

/* Focus states for promotion page elements */
.promo-cta-button:focus,
.promo-hero-link:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Body bottom padding to prevent content overlap with sticky buttons */
body {
    padding-bottom: 100px;
}

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

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

/* Print styles */
@media print {
    .demo-section {
        display: none;
    }

    .hero-buttons, .feature-cta, .strategy-cta, .promotion-cta,
    .financial-cta, .faq-cta, .summary-cta {
        display: none;
    }

    .sticky-buttons {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

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

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

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 480px;
    width: 100%;
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

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

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

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

.form-label {
    font-weight: 500;
    color: #ffffff;
    font-size: 0.95rem;
}

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

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

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

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

.login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.register-btn {
    width: 100%;
    padding: 16px;
    background: transparent;
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #ffd700;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-section {
        padding: 100px 0 40px;
        min-height: calc(100vh - 60px);
    }

    .login-container {
        margin: 0 20px;
        padding: 30px 24px;
        max-width: none;
    }

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

    .form-input {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .login-btn,
    .register-btn {
        padding: 14px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        margin: 0 16px;
        padding: 24px 20px;
    }

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

    .form-group {
        gap: 0.4rem;
    }

    .form-label {
        font-size: 0.9rem;
    }
}

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

.register-container {
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.register-btn-primary {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.login-btn-secondary {
    width: 100%;
    padding: 16px;
    background: transparent;
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #ffd700;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.login-btn-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

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

/* Mobile Responsive for Register Page */
@media (max-width: 768px) {
    .register-section {
        padding: 100px 0 40px;
        min-height: calc(100vh - 60px);
    }

    .register-container {
        margin: 0 20px;
        padding: 32px 24px;
    }

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

    .register-form {
        gap: 1.25rem;
    }

    .register-btn-primary,
    .login-btn-secondary {
        padding: 14px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .register-container {
        margin: 0 16px;
        padding: 24px 20px;
    }

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

    .register-form {
        gap: 1rem;
    }

    .form-group {
        gap: 0.4rem;
    }

    .form-label {
        font-size: 0.9rem;
    }
}
/* Privacy Policy Page Styles */
.privacy-policy-container {
    padding: 120px 0 60px;
    min-height: calc(100vh - 80px);
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    line-height: 1.8;
}

.privacy-content h1 {
    font-family: "Prompt", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-content h2 {
    font-family: "Prompt", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #333333;
}

.privacy-content h3 {
    font-family: "Prompt", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffed4e;
    margin: 1.5rem 0 0.8rem 0;
}

.privacy-content h4 {
    font-family: "Prompt", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1rem 0 0.5rem 0;
}

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

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

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

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

.privacy-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #333333, transparent);
    margin: 2rem 0;
}

.contact-info {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info ul {
    margin: 0;
    padding-left: 1.5rem;
}

.contact-info li {
    margin-bottom: 0.8rem;
}

/* Mobile Responsive for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 100px 0 40px;
    }

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

    .privacy-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 0.8rem 0;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.6rem 0;
    }

    .privacy-content h4 {
        font-size: 1.1rem;
        margin: 1rem 0 0.4rem 0;
    }

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

    .contact-info {
        padding: 1rem;
        margin: 1rem 0;
    }

    .contact-info ul {
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-container {
        padding: 90px 0 30px;
    }

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

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

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

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

    .privacy-content p {
        font-size: 0.95rem;
    }

    .contact-info {
        padding: 0.8rem;
    }
}

