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

body {
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
}

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

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

/* Header Styles */
.header {
    background-color: #111111;
    border-bottom: 1px solid #222222;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 70px;
}

/* Logo Styles */
.navbar-brand {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    filter: brightness(1.1);
}

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

/* Desktop Navigation */
.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

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

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ff6b35, #ff8e3c) !important;
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    border: none;
    text-transform: none;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
}

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

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 2rem;
    height: 100%;
    overflow-y: auto;
}

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

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

.mobile-nav-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 1rem;
}

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

.mobile-nav-link:hover {
    color: #ff6b35;
    padding-left: 1rem;
}

.mobile-cta-button {
    background: linear-gradient(135deg, #ff6b35, #ff8e3c) !important;
    color: #ffffff !important;
    font-weight: 700;
    padding: 1rem 2rem !important;
    border-radius: 25px;
    text-align: center;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #ff8e3c, #ff6b35) !important;
    color: #ffffff !important;
    padding-left: 2rem !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

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

    .mobile-menu {
        display: block;
    }

    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.75rem 0;
        min-height: 60px;
    }

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

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

    .mobile-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

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

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

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

    .mobile-menu-content {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* Animation for smooth transitions */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.active .mobile-menu-content {
    animation: fadeInDown 0.3s ease;
}

/* Homepage Styles */

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

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

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

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.cta-button-large {
    background: linear-gradient(135deg, #ff6b35, #ff8e3c);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 30px;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button-large:hover {
    background: linear-gradient(135deg, #ff8e3c, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    color: #ffffff;
}

.btn-secondary {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 32px;
    border: 2px solid #ff6b35;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
}

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

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

/* Intro Section */
.intro-section {
    padding: 60px 0;
    background-color: #111111;
}

.intro-content p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Slot Demo Section */
.demo-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 80px 0;
    text-align: center;
}

.demo-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slot-demo {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(145deg, #222222, #111111);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.slot-machine {
    background: #000000;
    border-radius: 15px;
    padding: 30px;
    border: 3px solid #ff6b35;
}

.slot-reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.reel {
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 10px;
    padding: 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.credits {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.win-display {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.2rem;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spinning Animation */
@keyframes spin {
    0% { transform: translateY(0); }
    25% { transform: translateY(-20px); }
    50% { transform: translateY(-40px); }
    75% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

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

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.features-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #222222;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.7;
}

/* Image Sections */
.promo-image-section,
.games-image-section,
.reg-image-section,
.strategies-image-section,
.faq-image-section {
    padding: 60px 0;
    background-color: #111111;
}

.promo-image-wrapper,
.games-image-wrapper,
.reg-image-wrapper,
.strategies-image-wrapper,
.faq-image-wrapper {
    text-align: center;
}

.promo-image-wrapper img,
.games-image-wrapper img,
.reg-image-wrapper img,
.strategies-image-wrapper img,
.faq-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.vip-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-content > p {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.vip-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vip-feature {
    background: linear-gradient(145deg, #222222, #111111);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.vip-feature:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.vip-feature h3 {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.vip-feature p {
    color: #cccccc;
    line-height: 1.7;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.games-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.game-category {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #222222;
    transition: all 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
}

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

.game-category p {
    color: #cccccc;
    line-height: 1.7;
}

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

.registration-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registration-content > p {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.registration-steps h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 20px;
}

.registration-steps > p {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.step {
    background: linear-gradient(145deg, #222222, #111111);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.step h4 {
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

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

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #111111;
}

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

.benefits-content p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.benefits-content a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.benefits-content a:hover {
    color: #ff8e3c;
}

/* Strategies Section */
.strategies-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.strategies-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategies-content > p {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.strategy-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.strategy-category {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #222222;
}

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

.strategy-category > p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.volatility-type {
    background: linear-gradient(145deg, #222222, #111111);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333333;
}

.volatility-type h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.volatility-type p {
    color: #cccccc;
    line-height: 1.6;
}

.money-management h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 30px;
}

.money-management p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.bonus-strategies-content h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.bonus-strategies-content > p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 40px;
}

.bonus-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.bonus-type {
    background: linear-gradient(145deg, #222222, #111111);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.bonus-type:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.bonus-type h4 {
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.bonus-type p {
    color: #cccccc;
    line-height: 1.6;
}

.special-techniques h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 30px;
}

.special-techniques p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #111111;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.faq-item {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222222;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

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

.faq-item p {
    color: #cccccc;
    line-height: 1.7;
}

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

.conclusion-content p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.conclusion-content a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.conclusion-content a:hover {
    color: #ff8e3c;
}

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

    .hero-content h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

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

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

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

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

    .volatility-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonus-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .slot-demo {
        margin: 0 20px;
        padding: 30px 20px;
    }

    .slot-reels {
        gap: 10px;
    }

    .reel {
        padding: 15px;
        min-height: 60px;
    }

    .symbol {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .hero-section,
    .features-section,
    .vip-section,
    .games-section,
    .registration-section,
    .strategies-section,
    .bonus-strategies-section,
    .faq-section,
    .conclusion-section {
        padding: 60px 0;
    }

    .demo-section {
        padding: 60px 0;
    }

    .promo-image-section,
    .games-image-section,
    .reg-image-section,
    .strategies-image-section,
    .faq-image-section {
        padding: 40px 0;
    }

    .feature-card,
    .vip-feature,
    .game-category,
    .step,
    .strategy-category,
    .bonus-type,
    .faq-item {
        padding: 25px;
    }

    .cta-button-large,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 1rem;
    }

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

    .hero-actions a {
        width: 100%;
        text-align: center;
        max-width: 250px;
    }
}

/* Footer Styles */
.footer {
    background-color: #111111;
    border-top: 1px solid #222222;
    padding: 40px 0;
    margin-top: 60px;
}

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

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

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

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #222222;
    padding: 12px 0;
}

.sticky-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

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

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

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

.sticky-btn-register {
    background: linear-gradient(135deg, #007acc, #0066aa);
    color: #ffffff;
    border: 1px solid #0088cc;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #0088cc, #007acc);
    border-color: #00aaff;
    transform: translateY(-2px);
    color: #ffffff;
}

.sticky-btn-credit {
    background: linear-gradient(135deg, #ff6b35, #ff8e3c);
    color: #ffffff;
    border: 1px solid #ff6b35;
    font-weight: 700;
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #ff8e3c, #ff6b35);
    border-color: #ff8e3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    color: #ffffff;
}

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

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

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0;
        margin-top: 30px;
    }

    .footer-nav {
        gap: 0.75rem;
    }

    .footer-link {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        max-width: 250px;
    }
}

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

    .sticky-container {
        padding: 0 15px;
        gap: 10px;
    }

    .sticky-btn {
        font-size: 0.9rem;
        padding: 10px 6px;
        min-height: 42px;
    }
}

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

    .sticky-container {
        padding: 0 10px;
        gap: 8px;
    }

    .sticky-btn {
        font-size: 0.85rem;
        padding: 8px 4px;
        min-height: 40px;
        border-radius: 6px;
    }
}

/* Body padding for sticky buttons */
body {
    padding-bottom: 80px;
}

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

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

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

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

.login-container h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ff6b35, #ff8e3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.login-form-container {
    width: 100%;
    background: #111111;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #222222;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

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

.form-group input {
    background-color: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 12px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

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

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

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

.form-actions .cta-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.form-actions .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    box-sizing: border-box;
}

/* Responsive Design for Login */
@media (max-width: 768px) {
    .login-section {
        padding: 20px 0;
        min-height: calc(100vh - 120px);
    }

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

    .login-form-container {
        padding: 2rem;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .login-container h1 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .login-form-container {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .form-group input {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form-actions .cta-button,
    .form-actions .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

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

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

.register-form-container h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ff6b35, #ff8e3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.register-form {
    width: 100%;
    background-color: #111111;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #222222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.register-form .form-group input {
    width: 100%;
    padding: 1rem;
    background-color: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.register-form .form-group input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

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

.register-form .form-actions .cta-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #ff8e3c);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.register-form .form-actions .cta-button:hover {
    background: linear-gradient(135deg, #ff8e3c, #ffab5e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.register-form .form-actions .btn-secondary {
    width: 100%;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    box-sizing: border-box;
}

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

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

    .register-form-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

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

    .register-form .form-group input {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on mobile */
    }

    .register-form .form-actions .cta-button,
    .register-form .form-actions .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .register-form-container h1 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

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

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

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

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

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid #222222;
}

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

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

.privacy-section h2 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.privacy-section h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 30px 0 15px 0;
}

.privacy-section h4 {
    font-size: 1.2rem;
    color: #ff8e3c;
    margin: 25px 0 12px 0;
    font-weight: 600;
}

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

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

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

.privacy-section li::before {
    content: "▸";
    color: #ff6b35;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

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

.privacy-confirmation {
    background: linear-gradient(145deg, #1a1a1a, #222222);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ff6b35;
    text-align: center;
    margin-top: 40px;
}

.privacy-confirmation h2 {
    color: #ff6b35;
    border-bottom: none;
    margin-bottom: 20px;
}

.privacy-confirmation p {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 15px;
}

.privacy-confirmation p:last-child {
    color: #ff8e3c;
    font-weight: 600;
    margin-bottom: 0;
}

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

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

    .privacy-header h1 {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin-bottom: 20px;
    }

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

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

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

    .privacy-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
        margin: 25px 0 12px 0;
    }

    .privacy-section h4 {
        font-size: 1.1rem;
        margin: 20px 0 10px 0;
    }

    .privacy-confirmation {
        padding: 25px 20px;
        margin-top: 30px;
    }
}

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

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

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

    .privacy-section h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .privacy-section h3 {
        font-size: 1.1rem;
        margin: 20px 0 10px 0;
    }

    .privacy-section h4 {
        font-size: 1rem;
        margin: 15px 0 8px 0;
    }

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

    .privacy-section li {
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .privacy-confirmation {
        padding: 20px 15px;
        margin-top: 25px;
    }

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

/* Focus and Accessibility for Privacy Policy */
.privacy-section h2:focus,
.privacy-section h3:focus,
.privacy-section h4:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Print Styles for Privacy Policy */
@media print {
    .privacy-policy-section {
        background: white;
        padding: 20px 0;
    }

    .privacy-header h1,
    .privacy-section h2,
    .privacy-section h3,
    .privacy-section h4,
    .privacy-section strong {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }

    .privacy-content {
        background: white;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .privacy-section p,
    .privacy-section li {
        color: black;
    }

    .privacy-section li::before {
        color: black;
    }

    .privacy-confirmation {
        background: #f5f5f5;
        border: 1px solid #ccc;
    }
}

/* Terms and Conditions Styles */
.terms-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    min-height: calc(100vh - 70px);
}

.terms-content {
    background: rgba(17, 17, 17, 0.95);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #ff8e3c, #ffae5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.terms-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.terms-meta p {
    color: #cccccc;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-article {
    max-width: none;
}

.terms-article section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.terms-article section:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.terms-article h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

.terms-article h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff8e3c);
}

.terms-article h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    color: #ff8e3c;
    font-weight: 600;
}

.terms-article h4 {
    font-size: 1.25rem;
    margin: 1rem 0 0.75rem 0;
    color: #ffae5c;
    font-weight: 600;
}

.terms-article p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: justify;
}

.terms-article ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.terms-article li {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    line-height: 1.7;
    color: #e0e0e0;
    position: relative;
}

.terms-article li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 0.8rem;
    top: 0.1rem;
}

.terms-article strong {
    color: #ff8e3c;
    font-weight: 600;
}

.terms-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
}

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

.terms-footer h4 {
    color: #ff8e3c;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.25rem;
}

.contact-details ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details li {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.contact-details li::before {
    content: '📞';
    margin-right: 0.5rem;
}

.contact-details li:nth-child(1)::before {
    content: '🌐';
}

.contact-details li:nth-child(2)::before {
    content: '📧';
}

.contact-details li:nth-child(3)::before {
    content: '📞';
}

.contact-details li:nth-child(4)::before {
    content: '💬';
}

.last-updated {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    font-style: italic;
}

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

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

    .terms-header h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .terms-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .terms-meta p {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    .terms-article section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .terms-article h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .terms-article h3 {
        font-size: 1.25rem;
        margin: 1rem 0 0.75rem 0;
    }

    .terms-article h4 {
        font-size: 1.125rem;
        margin: 0.75rem 0 0.5rem 0;
    }

    .terms-article p {
        text-align: left;
        font-size: 1rem;
        line-height: 1.7;
    }

    .terms-article li {
        padding-left: 1.25rem;
        font-size: 1rem;
        line-height: 1.6;
    }

    .terms-footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .contact-details ul {
        max-width: 100%;
    }

    .contact-details li {
        text-align: center;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 1rem;
        margin: 0 5px;
    }

    .terms-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .terms-article section {
        padding: 1rem;
    }

    .terms-article h2 {
        font-size: 1.25rem;
    }

    .terms-article h3 {
        font-size: 1.125rem;
    }

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

    .terms-footer {
        padding: 1rem;
    }
}

/* Print Styles for Terms */
@media print {
    .terms-section {
        background: white;
        padding: 20px 0;
    }

    .terms-header h1,
    .terms-article h2,
    .terms-article h3,
    .terms-article h4,
    .terms-article strong {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }

    .terms-content {
        background: white;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .terms-article p,
    .terms-article li {
        color: black;
    }

    .terms-article li::before {
        color: black;
    }

    .terms-footer {
        background: #f5f5f5;
        border: 1px solid #ccc;
    }
}

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

/* Policy Section */
.policy-section {
    background-color: #0a0a0a;
    padding: 4rem 0;
    min-height: calc(100vh - 70px);
}

/* Policy Content Container */
.policy-content {
    background-color: #111111;
    border-radius: 12px;
    padding: 3rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #222222;
    line-height: 1.8;
}

/* Policy Header */
.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ff6b35;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #ff8e3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.policy-meta p {
    color: #cccccc;
    font-size: 0.95rem;
    background-color: #1a1a1a;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid #333333;
}

/* Section Headings */
.policy-content h2 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #ff6b35;
    position: relative;
}

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

.policy-content h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 4px solid #ff6b35;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), transparent);
    padding: 0.75rem 1rem;
    border-radius: 4px;
}

.policy-content h4 {
    font-size: 1.2rem;
    color: #ff8e3c;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.policy-content h5 {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

/* Paragraphs */
.policy-content p {
    color: #cccccc;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    text-align: justify;
}

/* Lists */
.policy-content ul,
.policy-content ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 0;
}

.policy-content li {
    color: #cccccc;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
}

.policy-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-content ol li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1rem;
}

.policy-content ol {
    counter-reset: list-counter;
}

/* Strong/Bold Text */
.policy-content strong {
    color: #ff8e3c;
    font-weight: 600;
}

/* Special Sections */
.principle-item,
.tool-category,
.tool-item,
.suspension-category,
.suspension-item,
.detection-category,
.detection-item,
.education-category,
.education-item,
.support-category,
.support-item,
.protection-category,
.protection-item,
.collaboration-category,
.monitoring-category,
.monitoring-item,
.reporting-category,
.contact-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.principle-item:hover,
.tool-category:hover,
.detection-category:hover,
.education-category:hover,
.support-category:hover,
.protection-category:hover,
.collaboration-category:hover,
.monitoring-category:hover,
.reporting-category:hover,
.contact-category:hover {
    border-color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

/* Self Assessment */
.self-assessment {
    background-color: #222222;
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #ff6b35;
}

.self-assessment h5 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.self-assessment ol {
    margin-left: 1rem;
}

/* Helpline Info */
.helpline-info,
.external-help {
    background-color: #222222;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid #444444;
}

.helpline-info h5,
.external-help h4 {
    color: #ff6b35;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Contact Info */
.contact-info {
    background-color: #222222;
    padding: 2rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 2px solid #ff6b35;
}

.contact-info h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    text-align: center;
}

/* Policy Footer */
.policy-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ff6b35, #ff8e3c);
    border-radius: 8px;
    text-align: center;
}

.important-message p {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.important-message p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design for Policy Page */
@media (max-width: 1024px) {
    .policy-content {
        padding: 2rem;
    }

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

    .policy-meta {
        gap: 1rem;
    }

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

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

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

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

    .policy-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .policy-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .policy-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

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

    .policy-content h2 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem 0;
    }

    .policy-content h3 {
        font-size: 1.2rem;
        padding: 0.5rem 0.75rem;
    }

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

    .policy-content h5 {
        font-size: 1rem;
    }

    .policy-content p,
    .policy-content li {
        font-size: 0.95rem;
        text-align: left;
    }

    .policy-content li {
        padding-left: 1.5rem;
    }

    .principle-item,
    .tool-category,
    .tool-item,
    .suspension-category,
    .suspension-item,
    .detection-category,
    .detection-item,
    .education-category,
    .education-item,
    .support-category,
    .support-item,
    .protection-category,
    .protection-item,
    .collaboration-category,
    .monitoring-category,
    .monitoring-item,
    .reporting-category,
    .contact-category {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .self-assessment,
    .helpline-info,
    .external-help,
    .contact-info {
        padding: 1rem;
    }

    .policy-footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .important-message p {
        font-size: 0.9rem;
    }
}

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

    .policy-content {
        margin: 0 0.5rem;
        padding: 1rem;
    }

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

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

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

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

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

    .policy-meta p {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .important-message p {
        font-size: 0.85rem;
    }
}

/* Print Styles for Policy */
@media print {
    .policy-section {
        background: white;
        padding: 20px 0;
    }

    .policy-header h1,
    .policy-content h2,
    .policy-content h3,
    .policy-content h4,
    .policy-content h5,
    .policy-content strong {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }

    .policy-content {
        background: white;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .policy-content p,
    .policy-content li {
        color: black;
    }

    .policy-content li::before {
        color: black;
    }

    .policy-footer {
        background: #f5f5f5 !important;
        border: 1px solid #ccc;
    }

    .important-message p {
        color: black !important;
    }

    .principle-item,
    .tool-category,
    .detection-category,
    .education-category,
    .support-category,
    .protection-category,
    .collaboration-category,
    .monitoring-category,
    .reporting-category,
    .contact-category {
        background: #f9f9f9;
        border: 1px solid #ddd;
    }

    .self-assessment,
    .helpline-info,
    .external-help,
    .contact-info {
        background: #f5f5f5;
        border: 1px solid #ccc;
    }
}