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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

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

.logo span {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.nav-link:active {
    transform: translateY(1px);
}

/* CTA Button */
.nav-cta {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

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

.nav-cta:active {
    transform: translateY(0);
}

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

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

.mobile-menu-btn:hover .hamburger-line {
    background: #ff6b35;
}

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

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

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

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-mobile.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    padding: 20px 0;
}

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

.mobile-nav-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.mobile-nav-cta {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 16px 20px;
    margin: 16px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: block;
}

.mobile-nav-cta:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Body offset for fixed header */
body {
    padding-top: 80px;
}

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

    .nav-wrapper {
        height: 70px;
    }

    .nav-desktop {
        display: none;
    }

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

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

    .logo img {
        width: 36px;
        height: 36px;
    }

    body {
        padding-top: 70px;
    }
}

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

    .nav-wrapper {
        height: 65px;
    }

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

    .logo img {
        width: 32px;
        height: 32px;
    }

    body {
        padding-top: 65px;
    }
}

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

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

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .header {
        background: #000000;
        border-bottom: 2px solid #ffffff;
    }

    .nav-link:hover,
    .mobile-nav-link:hover {
        background: #ffffff;
        color: #000000;
    }
}

/* Main Content Styles */
main {
    min-height: 100vh;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

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

/* Button Styles */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

/* Demo Section */
.demo-section {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 80px 0;
}

.demo-game {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #333333, #222222);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.slot-machine {
    text-align: center;
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

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

.balance {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 15px;
    border: 2px solid #ff6b35;
}

.reel {
    width: 80px;
    height: 120px;
    background: #0a0a0a;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #333333;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.reel.spinning {
    animation: spin 1s ease-in-out;
}

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

.symbol {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.reel:hover .symbol {
    transform: scale(1.1);
}

.slot-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bet-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.bet-controls label {
    font-weight: 600;
}

.bet-controls select {
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #ff6b35;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
}

.spin-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.spin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.spin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.win-display {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 255, 136, 0.3);
}

/* Login Steps Section */
.login-steps {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step-card h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.step-card ul {
    text-align: left;
    color: #cccccc;
    line-height: 1.6;
}

.step-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.step-card li::before {
    content: '▶';
    color: #ff6b35;
    position: absolute;
    left: 0;
    top: 0;
}

.step-image {
    text-align: center;
    margin-top: 40px;
}

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

/* Wallet System Section */
.wallet-system {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 80px 0;
}

.features-container {
    margin-bottom: 60px;
}

.feature-group {
    margin-bottom: 60px;
}

.feature-group h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}

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

.feature-item {
    background: linear-gradient(135deg, #333333, #222222);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
    display: block;
}

.feature-item h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.5;
    font-size: 0.95rem;
}

.wallet-image {
    text-align: center;
    margin: 60px 0;
}

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

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

.wallet-description p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Access Methods Section */
.access-methods {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 80px 0;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.access-category {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.access-category:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.access-category h3 {
    color: #ff6b35;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 30px;
}

.access-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.access-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #333333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.access-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: 5px;
    min-width: 24px;
}

.access-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.access-item p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.access-image {
    text-align: center;
    margin: 60px 0;
}

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

.access-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Free Credit Codes Section */
.free-credit-codes {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 80px 0;
}

.codes-container {
    margin-bottom: 60px;
}

.code-category {
    margin-bottom: 50px;
}

.code-category h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}

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

.code-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #333333, #222222);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.code-item:hover {
    transform: translateY(-3px);
    border-color: #ff6b35;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.code-value {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.code-description h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.code-description p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.code-image {
    text-align: center;
    margin: 60px 0;
}

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

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

.code-usage h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.code-usage > p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.usage-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.step-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-content p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.code-notification {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

/* Slots Games Section */
.slots-games {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 80px 0;
}

.slots-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.slot-category {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slot-category:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.slot-category h3 {
    color: #ff6b35;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 30px;
}

.slot-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #333333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: #3a3a3a;
    transform: translateX(5px);
}

.feature i {
    font-size: 1.3rem;
    color: #ff6b35;
    margin-top: 3px;
    min-width: 20px;
}

.feature p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.slots-image {
    text-align: center;
    margin: 60px 0;
}

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

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

.gaming-system h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.gaming-system > p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.system-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.system-category {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.system-category h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.system-category li {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.system-category li::before {
    content: '🎮';
    position: absolute;
    left: 0;
    top: 0;
}

.system-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Contact Support Section */
.contact-support {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 80px 0;
}

.contact-channels {
    margin-bottom: 60px;
}

.contact-channels h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.channel-item {
    background: linear-gradient(135deg, #333333, #222222);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.channel-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.channel-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
    display: block;
}

.channel-item h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.channel-item p {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.channel-item span {
    color: #999999;
    font-size: 0.9rem;
}

.baccarat-link {
    text-align: center;
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
}

.baccarat-link a {
    color: #ff6b35;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.baccarat-link a:hover {
    color: #f7931e;
}

.technical-support {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.technical-support h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.technical-support > p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.support-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #333333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

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

.service-item p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
}

.support-image {
    text-align: center;
    margin: 60px 0;
}

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

.register-cta {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.register-cta a {
    color: #ff6b35;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-cta a:hover {
    color: #f7931e;
}

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

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.faq-item h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-item p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

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

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

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

    .usage-steps {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .system-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

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

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

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

    .section-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .access-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slots-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .slot-reels {
        gap: 10px;
        padding: 15px;
    }

    .reel {
        width: 60px;
        height: 90px;
    }

    .symbol {
        font-size: 1.5rem;
    }

    .slot-controls {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

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

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

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

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .demo-game {
        padding: 20px;
    }

    .slot-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .slot-reels {
        gap: 8px;
        padding: 10px;
    }

    .reel {
        width: 50px;
        height: 75px;
    }

    .symbol {
        font-size: 1.2rem;
    }

    .spin-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .step-card, .feature-item, .channel-item {
        padding: 25px 20px;
    }

    .code-list {
        grid-template-columns: 1fr;
    }

    .usage-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .support-services {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-top: 80px;
}

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

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

.footer-link {
    color: #cccccc;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transition: width 0.3s ease;
}

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

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

.sticky-buttons-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 100%;
}

.sticky-btn {
    flex: 1;
    max-width: 200px;
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.sticky-btn:hover::before {
    left: 100%;
}

.sticky-btn-login {
    background: transparent;
    color: #ff6b35;
    border-color: #ff6b35;
}

.sticky-btn-login:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

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

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

.sticky-btn-credit {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #ffffff;
    border-color: #00ff88;
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #00cc6a, #00ff88);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }

    .footer-link {
        font-size: 13px;
    }
}

/* Responsive Sticky Buttons */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 12px 0;
    }

    .sticky-buttons-content {
        gap: 8px;
        padding: 0 8px;
    }

    .sticky-btn {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .sticky-buttons-content {
        gap: 6px;
        padding: 0 6px;
    }

    .sticky-btn {
        padding: 8px 10px;
        font-size: 11px;
        min-width: 0;
    }
}

/* Add bottom padding to main content to account for sticky buttons */
main {
    padding-bottom: 80px;
}

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

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

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.register-container .login-form {
    width: 100%;
    max-width: 450px;
}

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

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

    .register-container {
        padding: 0 1rem;
    }
}

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

@media (max-width: 768px) {
    main {
        padding-bottom: 70px;
    }
}

/* Login Section Styles */
.login-section {
    min-height: calc(100vh - 80px);
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
                linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-content {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.login-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.login-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

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

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

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

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

.login-btn,
.register-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.login-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

.register-btn:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

    .login-form {
        padding: 2rem;
        border-radius: 16px;
    }

    .form-input {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

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

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

    .login-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .login-form {
        padding: 1.5rem;
        margin: 0 1rem;
        border-radius: 12px;
    }

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

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

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

    .login-btn,
    .register-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

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

/* Special Promotions Section */
.special-promotions {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
}

.promo-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.promo-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.promo-content h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.promo-details {
    margin: 1.5rem 0;
}

.promo-details h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

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

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

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

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

.promo-section h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Codes Grid */
.codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.code-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.code-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.code-value {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.code-description {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.code-usage {
    margin-top: 2rem;
}

.code-usage h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.usage-steps {
    list-style: none;
    padding: 0;
}

.usage-steps li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 2rem;
}

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

.usage-steps {
    counter-reset: step-counter;
}

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

.daily-promo {
    margin-bottom: 3rem;
}

.daily-promo h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.daily-schedule {
    margin: 1.5rem 0;
}

.daily-schedule h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.schedule-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.day {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

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

.wallet-promo {
    margin-top: 3rem;
}

.wallet-promo h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.promo-types {
    margin: 1.5rem 0;
}

.promo-types h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.type-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.type-item i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.type-item h5 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.type-item p {
    color: #ff6b35;
    font-weight: 700;
}

/* Access Methods Section */
.access-methods {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
}

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

.access-info h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.access-channels {
    margin: 1.5rem 0;
}

.access-channels h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.channel-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.channel-item i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.channel-item h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

.app-promo {
    margin-top: 3rem;
}

.app-promo h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.app-benefits h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.benefits-list li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: #ff6b35;
}

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

.slots-promo {
    margin-bottom: 3rem;
}

.slots-promo h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.slots-features {
    margin: 1.5rem 0;
}

.slots-features h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.feature-card i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.feature-card h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.game-recommendations {
    margin-top: 3rem;
}

.game-recommendations h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.recommended-games {
    margin: 1.5rem 0;
}

.recommended-games h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.game-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.game-card h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.game-card p {
    color: #ff6b35;
    font-weight: 700;
    font-size: 0.9rem;
}

/* How to Get Promotions Section */
.how-to-get-promos {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
}

.registration-steps {
    margin-bottom: 3rem;
}

.registration-steps h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

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

.step-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.step-number {
    background: #ff6b35;
    color: #ffffff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

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

.step-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.code-usage-guide {
    margin-top: 3rem;
}

.code-usage-guide h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.usage-steps {
    margin: 1.5rem 0;
}

.usage-steps h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.step-list li {
    padding: 0.75rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
    counter-increment: step-counter;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.75rem;
    background: #ff6b35;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.code-conditions {
    margin: 1.5rem 0;
}

.code-conditions h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

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

/* VIP and Special Offers Section */
.vip-special-offers {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.5);
}

.vip-promotion {
    margin-bottom: 3rem;
}

.vip-promotion h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.vip-benefits {
    margin: 1.5rem 0;
}

.vip-benefits h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.benefit-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.benefit-item i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.benefit-item h5 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #ff6b35;
    font-weight: 700;
}

.referral-promotion {
    margin-top: 3rem;
}

.referral-promotion h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.referral-details {
    margin: 1.5rem 0;
}

.referral-details h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.referral-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.referral-item i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.referral-item h5 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

/* Deposit Withdrawal Promotions Section */
.deposit-withdrawal-promos {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
}

.deposit-promotions {
    margin-bottom: 3rem;
}

.deposit-promotions h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.deposit-tiers {
    margin: 1.5rem 0;
}

.deposit-tiers h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.tier-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.tier-item.special {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.15);
}

.tier-amount {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-bonus {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tier-percentage {
    color: #e0e0e0;
    font-size: 0.8rem;
}

.withdrawal-benefits {
    margin-top: 3rem;
}

.withdrawal-benefits h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.withdrawal-features {
    margin: 1.5rem 0;
}

.withdrawal-features h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-row:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
}

.feature-row i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 1.5rem;
}

.feature-row span {
    color: #e0e0e0;
}

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

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

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

.faq-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #ff6b35;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Contact Support Section */
.contact-support {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
}

.contact-info h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-channels {
    margin: 1.5rem 0;
}

.contact-channels h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.contact-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.contact-item h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

.service-features {
    margin: 2rem 0;
}

.service-features h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.service-list li::before {
    content: '👥';
    position: absolute;
    left: 0;
}

/* Summary Section */
.promotion-summary {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.5);
}

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

.summary-features {
    margin: 2rem 0;
}

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

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
}

.summary-item i {
    color: #ff6b35;
    font-size: 1.5rem;
}

.summary-item span {
    color: #e0e0e0;
    text-align: left;
}

.final-cta {
    margin: 3rem 0;
}

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

.btn-primary-large {
    display: inline-block;
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.disclaimer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer a {
    color: #ff6b35;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Button Styles */
.btn-secondary {
    display: inline-block;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ff6b35;
    background: transparent;
    border: 2px solid #ff6b35;
    padding: 0.875rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    color: #ffffff;
    background: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive Design for Promotion Page */
@media (max-width: 768px) {
    .promo-highlight {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

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

    .schedule-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .types-grid,
    .channels-grid,
    .features-grid,
    .games-grid,
    .benefits-grid,
    .referral-grid,
    .tiers-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

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

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

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

    .btn-primary-large {
        font-size: 1rem;
        padding: 1.25rem 2rem;
    }
}

@media (max-width: 480px) {
    .special-promotions,
    .daily-promotions,
    .access-methods,
    .games-promotions,
    .how-to-get-promos,
    .vip-special-offers,
    .deposit-withdrawal-promos,
    .faq-section,
    .contact-support,
    .promotion-summary {
        padding: 60px 0 40px;
    }

    .promo-highlight {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .promo-content h3 {
        font-size: 1.25rem;
    }

    .codes-grid,
    .schedule-grid,
    .types-grid,
    .channels-grid,
    .features-grid,
    .games-grid,
    .benefits-grid,
    .referral-grid,
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .step-item {
        padding: 1.5rem;
    }

    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .summary-item {
        padding: 0.75rem;
    }

    .btn-primary-large {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }
}

/* ================================
   PRIVACY POLICY PAGE STYLES
   ================================ */

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

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.page-header h1 {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.policy-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.policy-meta p {
    color: #cccccc;
    font-size: 1rem;
    margin: 0;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Privacy Content */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Policy Sections */
.policy-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    line-height: 1.3;
}

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

.policy-section p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 0;
}

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

.policy-section li::before {
    content: '•';
    color: #ff6b35;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Subsections */
.subsection {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.subsection h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 15px;
    font-weight: 600;
    color: #ff6b35;
}

.contact-info ul {
    margin: 0;
}

.contact-info li {
    margin-bottom: 8px;
}

.contact-info li::before {
    content: '📞';
    color: #ff6b35;
    font-size: 1rem;
}

.contact-info li:nth-child(1)::before { content: '📧'; }
.contact-info li:nth-child(2)::before { content: '📞'; }
.contact-info li:nth-child(3)::before { content: '💬'; }
.contact-info li:nth-child(4)::before { content: '📍'; }

/* Policy Footer */
.policy-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    text-align: center;
    padding: 20px;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
}

.disclaimer p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Strong Elements */
.privacy-content strong {
    color: #ff6b35;
    font-weight: 600;
}

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .privacy-content {
        padding: 30px;
        margin: 0 20px;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 80px 0 60px;
    }

    .page-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .page-header h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .policy-meta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .privacy-content {
        padding: 25px;
        margin: 0 15px;
        border-radius: 15px;
    }

    .policy-section {
        margin-bottom: 40px;
        padding-bottom: 25px;
    }

    .policy-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .policy-section h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        margin-top: 20px;
    }

    .subsection {
        padding: 15px;
        margin: 20px 0;
    }

    .contact-info {
        padding: 20px;
        margin: 15px 0;
    }
}

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

    .page-header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .policy-meta {
        gap: 10px;
    }

    .policy-meta p {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .privacy-content {
        padding: 20px;
        margin: 0 10px;
        border-radius: 12px;
    }

    .policy-section {
        margin-bottom: 35px;
        padding-bottom: 20px;
    }

    .policy-section h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .policy-section h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        margin-top: 18px;
        line-height: 1.4;
    }

    .policy-section p,
    .policy-section li {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .policy-section li {
        padding-left: 20px;
        margin-bottom: 8px;
    }

    .subsection {
        padding: 12px;
        margin: 15px 0;
    }

    .contact-info {
        padding: 15px;
        margin: 12px 0;
    }

    .contact-info li {
        margin-bottom: 6px;
        font-size: 0.9rem;
    }

    .disclaimer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Accessibility Improvements */
.privacy-content *:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

.policy-section h2:target,
.policy-section h3:target {
    background: rgba(255, 107, 53, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin: -10px;
    animation: highlight 2s ease-out;
}

@keyframes highlight {
    0% { background: rgba(255, 107, 53, 0.3); }
    100% { background: rgba(255, 107, 53, 0.1); }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .privacy-policy-section {
        background: #000000;
    }

    .privacy-content {
        background: #111111;
        border: 2px solid #ffffff;
    }

    .page-header h1,
    .policy-section h2,
    .policy-section h3,
    .privacy-content strong {
        color: #ffffff;
    }

    .policy-section p,
    .policy-section li,
    .disclaimer p {
        color: #ffffff;
    }

    .subsection {
        background: #222222;
        border-left-color: #ffffff;
    }

    .contact-info {
        background: #222222;
        border-color: #ffffff;
    }

    .policy-hero {
        background: #000000;
        border-bottom-color: #ffffff;
    }

    .policy-highlight {
        background: #111111;
        border-color: #ffffff;
    }

    .policy-contact-footer {
        background: #111111;
    }
}

/* ============================================
   RESPONSIBLE GAMBLING POLICY SPECIFIC STYLES
   ============================================ */

/* Policy Hero Section */
.policy-hero {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-hero h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.policy-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    opacity: 0.9;
}

.policy-meta p {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0;
}

/* Policy Content Structure */
.policy-content {
    padding: 80px 0;
}

.policy-article {
    max-width: 900px;
    margin: 0 auto;
}

/* Enhanced Policy Section Styling */
.policy-section {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.policy-section:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 107, 53, 0.2);
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.policy-section h3 {
    font-size: 1.8rem;
    color: #f7931e;
    margin: 40px 0 20px;
    font-weight: 600;
}

.policy-section h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 30px 0 15px;
    font-weight: 600;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.policy-section ul,
.policy-section ol {
    margin: 20px 0;
    padding-left: 0;
}

.policy-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    transition: color 0.3s ease;
}

.policy-section li:hover {
    color: #ffffff;
}

.policy-section ul li::before {
    content: "▸";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    transition: color 0.3s ease;
}

.policy-section li:hover::before {
    color: #f7931e;
}

.policy-section ol {
    counter-reset: policy-counter;
}

.policy-section ol li {
    counter-increment: policy-counter;
}

.policy-section ol li::before {
    content: counter(policy-counter) ".";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.policy-section strong {
    color: #ffffff;
    font-weight: 600;
}

/* Special Highlight Boxes */
.policy-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.policy-highlight h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
}

.policy-highlight ul {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.policy-motto {
    font-size: 1.3rem;
    color: #f7931e;
    font-weight: 600;
    margin-top: 20px;
    text-shadow: 0 2px 4px rgba(247, 147, 30, 0.3);
    position: relative;
    z-index: 1;
}

/* Contact Footer */
.policy-contact-footer {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.policy-contact-footer p {
    margin-bottom: 15px;
    font-style: italic;
    color: #cccccc;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-weight: 600;
}

.contact-info span {
    color: #ffffff;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-info span:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-hero {
        padding: 100px 0 40px;
    }

    .policy-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .policy-meta {
        flex-direction: column;
        gap: 15px;
    }

    .policy-meta p {
        font-size: 1rem;
    }

    .policy-content {
        padding: 60px 0;
    }

    .policy-section {
        margin-bottom: 40px;
        padding: 25px 20px;
    }

    .policy-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .policy-section h3 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }

    .policy-section h4 {
        font-size: 1.2rem;
        margin: 20px 0 12px;
    }

    .policy-section p,
    .policy-section li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .policy-section li {
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .policy-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .policy-highlight h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .policy-motto {
        font-size: 1.1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info span {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .policy-section {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .policy-section h3 {
        font-size: 1.3rem;
        line-height: 1.4;
    }

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

    .policy-highlight {
        padding: 15px;
    }

    .policy-motto {
        font-size: 1rem;
        line-height: 1.4;
    }

    .policy-contact-footer {
        padding: 20px 15px;
    }
}