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

html {
    scroll-behavior: smooth;
}

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

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

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

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

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    gap: 12px;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #ffd700;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

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

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

.nav-link {
    font-family: 'Sarabun', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4a);
    transition: width 0.3s ease;
}

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

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

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #111111;
    border-bottom: 1px solid #333333;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

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

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

.mobile-nav-link {
    font-family: 'Sarabun', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #333333;
    transition: color 0.3s ease;
}

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

.mobile-cta-button {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    padding: 15px 0;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    display: block;
    margin-top: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

/* Main content offset */
main {
    margin-top: 70px;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .nav-wrapper {
        height: 80px;
    }

    .logo a {
        font-size: 1.7rem;
        gap: 15px;
    }

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

    .nav-mobile {
        top: 80px;
    }

    main {
        margin-top: 80px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-desktop {
        display: block;
    }

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

    .nav-mobile {
        display: none;
    }

    .nav-wrapper {
        height: 85px;
    }

    .logo a {
        font-size: 1.8rem;
    }

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

    main {
        margin-top: 85px;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .container {
        padding: 0 60px;
    }
}

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

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

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

/* Homepage Styles */

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

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

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

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

.btn-secondary {
    background: transparent;
    color: #ffd700;
    padding: 15px 30px;
    border: 2px solid #ffd700;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000000;
    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);
}

/* Section Styles */
.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 40px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.feature-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.feature-card p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.feature-list li,
.promotion-list li {
    padding: 8px 0;
    border-bottom: 1px solid #333333;
    color: #e0e0e0;
}

.feature-list li:last-child,
.promotion-list li:last-child {
    border-bottom: none;
}

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

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

/* Slot Demo Section */
.slot-demo {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.demo-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slot-machine {
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffd700;
}

.slot-header h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
}

.credits {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.2rem;
}

.credits span {
    color: #ffd700;
}

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

.reel {
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.reel.spinning {
    animation: spin 1s ease-in-out;
    border-color: #ffd700;
}

.symbol {
    font-size: 2.5rem;
    line-height: 1;
}

.slot-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.bet-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bet-controls label {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.bet-controls select {
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    padding: 8px 12px;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
}

.bet-controls select:focus {
    outline: none;
    border-color: #ffd700;
}

.spin-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.spin-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ffed4a, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

.win-amount {
    text-align: right;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.win-amount span {
    color: #4caf50;
    font-weight: 700;
}

.demo-notice {
    text-align: center;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
    border-radius: 10px;
    color: #ffd700;
    font-size: 0.9rem;
}

@keyframes spin {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

/* Login Process Section */
.login-process {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.process-content,
.access-methods {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333333;
}

.process-content h3,
.access-methods h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.process-content p,
.access-methods p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.steps-list h4,
.access-methods h4 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

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

.steps-list li {
    padding: 10px 0;
    border-bottom: 1px solid #333333;
    color: #e0e0e0;
    position: relative;
    padding-left: 30px;
}

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

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

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

.access-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.access-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.access-item i {
    color: #ffd700;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.access-item div {
    flex: 1;
}

.access-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}

.access-item span {
    color: #e0e0e0;
    font-size: 0.9rem;
}

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

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

/* Games Collection Section */
.games-collection {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.games-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.games-description h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.games-description p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.game-providers h4 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.provider-card {
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333333;
    text-align: center;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}

.provider-card h5 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.provider-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

.banking-section {
    margin-top: 60px;
}

.banking-section h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.banking-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.banking-description p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.banking-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.banking-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.banking-item i {
    color: #ffd700;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.banking-item div {
    flex: 1;
}

.banking-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}

.banking-item span {
    color: #e0e0e0;
    font-size: 0.9rem;
}

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

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

/* Customer Support Section */
.customer-support {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.support-content h3,
.contact-methods h4,
.protection-policy h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.support-content p,
.protection-content p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.contact-item i {
    color: #ffd700;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}

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

.protection-policy {
    margin-top: 50px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333333;
}

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

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

/* Mobile App Section */
.mobile-app {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.app-content h3,
.browser-gaming h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.app-content p,
.browser-gaming p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.app-features h4 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.app-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-features li {
    padding: 10px 0;
    border-bottom: 1px solid #333333;
    color: #e0e0e0;
}

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

.browser-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.browser-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.browser-item i {
    color: #ffd700;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.browser-item div {
    flex: 1;
}

.browser-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}

.browser-item span {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.mobile-app-image {
    text-align: center;
}

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

/* Summary and CTA Section */
.summary-cta {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.summary-content p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.summary-content a:hover {
    color: #ffed4a;
}

.final-cta {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    border: 1px solid #333333;
}

.final-cta .btn-primary {
    margin-bottom: 20px;
}

.final-cta p {
    margin: 0;
    font-size: 1.2rem;
    color: #ffffff;
}

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

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

.faq-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}

.faq-item h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

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

    .hero-buttons {
        flex-direction: row;
        gap: 20px;
    }

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

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

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

    .banking-content {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .slot-controls {
        grid-template-columns: auto auto auto;
        gap: 30px;
    }

    .demo-container {
        padding: 0 20px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero {
        padding: 120px 0;
    }

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

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

    .features,
    .login-process,
    .games-collection,
    .customer-support,
    .mobile-app,
    .summary-cta,
    .faq {
        padding: 120px 0;
    }

    .slot-demo {
        padding: 120px 0;
    }

    .slot-machine {
        padding: 40px;
    }

    .slot-reels {
        gap: 15px;
    }

    .reel {
        padding: 25px;
    }

    .symbol {
        font-size: 3rem;
    }

    .spin-btn {
        width: 100px;
        height: 100px;
        font-size: 1.3rem;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

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

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

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.footer-link {
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #e0e0e0;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

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

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #111111, #1a1a1a);
    border-top: 1px solid #333333;
    padding: 15px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 48px;
    line-height: 1.2;
}

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

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #444444, #555555);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    color: #ffffff;
    border: 1px solid #1557b0;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #4285f4, #5a95f5);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.sticky-btn-credit {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    border: 1px solid #e6c200;
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #ffed4a, #fff176);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

/* Add bottom padding to body to prevent content overlap */
body {
    padding-bottom: 80px;
}

/* Tablet Styles for Footer and Sticky Buttons */
@media (min-width: 768px) {
    .footer {
        padding: 50px 0;
    }

    .footer-nav {
        flex-direction: row;
        gap: 40px;
    }

    .footer-link {
        font-size: 1rem;
        padding: 10px 0;
    }

    .sticky-buttons-container {
        padding: 0 40px;
        gap: 16px;
    }

    .sticky-btn {
        padding: 14px 16px;
        font-size: 1rem;
    }
}

/* Desktop Styles for Footer and Sticky Buttons */
@media (min-width: 1024px) {
    .footer {
        padding: 60px 0;
    }

    .footer-nav {
        gap: 60px;
    }

    .footer-link {
        font-size: 1.1rem;
        padding: 12px 0;
    }

    .sticky-buttons-container {
        gap: 20px;
    }

    .sticky-btn {
        padding: 16px 24px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
}

/* Large Desktop Styles for Footer and Sticky Buttons */
@media (min-width: 1280px) {
    .sticky-buttons-container {
        padding: 0 60px;
    }
}

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

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

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Sarabun', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.form-input {
    background-color: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 12px;
    padding: 16px 20px;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-input::placeholder {
    color: #999999;
    font-family: 'Sarabun', sans-serif;
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.login-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-btn {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 1rem;
}

/* Tablet Styles for Login */
@media (min-width: 768px) {
    .login-title {
        font-size: 2.5rem;
    }

    .login-container {
        padding: 60px 40px;
    }

    .form-input {
        padding: 18px 24px;
        font-size: 1.1rem;
    }

    .login-btn {
        padding: 20px;
        font-size: 1.2rem;
    }

    .register-btn {
        padding: 18px;
        font-size: 1.1rem;
    }
}

/* Desktop Styles for Login */
@media (min-width: 1024px) {
    .login-section {
        padding: 120px 0 60px;
    }

    .login-title {
        font-size: 3rem;
        margin-bottom: 50px;
    }

    .login-container {
        padding: 80px 60px;
        max-width: 600px;
    }

    .form-buttons {
        flex-direction: row;
        gap: 20px;
    }

    .login-btn,
    .register-btn {
        flex: 1;
    }
}

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

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

.register-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0;
}

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

.register-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.login-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Responsive Design for Register Section */
@media (min-width: 768px) {
    .register-title {
        font-size: 2.8rem;
    }

    .register-container {
        max-width: 600px;
        gap: 50px;
    }

    .register-form {
        gap: 30px;
    }

    .register-btn {
        padding: 20px;
        font-size: 1.2rem;
    }

    .login-btn {
        padding: 18px;
        font-size: 1.2rem;
    }

    .form-buttons {
        flex-direction: row;
        gap: 20px;
    }

    .register-btn,
    .login-btn {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .register-section {
        padding: 140px 0 100px;
    }

    .register-title {
        font-size: 3.2rem;
    }
}

/* Promotion Page Styles */

/* Text alignment utilities */
.text-center {
    text-align: center;
}

.cta-center,
.cta-section {
    text-align: center;
    margin: 40px 0;
}

.final-cta {
    text-align: center;
    margin: 50px 0 30px 0;
}

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

.promotion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.promotion-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
    border-color: #ffd700;
}

.promotion-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.promotion-card p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.steps-section,
.bonus-list {
    position: relative;
    z-index: 1;
}

.steps-section h4,
.bonus-list h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.steps-list,
.bonus-list ul {
    padding-left: 20px;
}

.steps-list li,
.bonus-list li {
    color: #e0e0e0;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Registration Guide Section */
.registration-guide {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.guide-section,
.app-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333333;
}

.guide-section h3,
.app-section h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.guide-section p,
.app-section p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 30px;
}

.registration-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    background: rgba(255, 215, 0, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.step-item h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
}

.step-item ul {
    padding-left: 20px;
}

.step-item li {
    color: #e0e0e0;
    margin-bottom: 8px;
    line-height: 1.6;
}

.app-features h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.app-features ul {
    padding-left: 20px;
}

.app-features li {
    color: #e0e0e0;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Terms and Conditions Section */
.terms-conditions {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.terms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.terms-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.terms-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.terms-card p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 25px;
}

.terms-section h4,
.warning-section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 20px;
}

.terms-section ul,
.warning-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-section li,
.warning-section li {
    color: #e0e0e0;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Contact Support Section */
.contact-support {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.contact-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.contact-card p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-methods h4,
.online-channels h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

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

.contact-list li {
    color: #e0e0e0;
    margin-bottom: 12px;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.online-channels ul {
    padding-left: 20px;
}

.online-channels li {
    color: #e0e0e0;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.tip-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
    border-color: #ffd700;
}

.tip-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.tip-card p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.strategy-section,
.increase-section {
    position: relative;
    z-index: 1;
}

.strategy-section h4,
.increase-section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.strategy-section ul,
.increase-section ul {
    padding-left: 20px;
}

.strategy-section li,
.increase-section li {
    color: #e0e0e0;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

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

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

.faq-item h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
}

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

/* Summary Section */
.summary-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 2px solid #ffd700;
}

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

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

.disclaimer {
    font-size: 0.95rem !important;
    color: #999999 !important;
    font-style: italic;
    margin-top: 30px;
}

/* Tablet Responsive */
@media (min-width: 768px) {
    .promotion-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

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

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

    .tips-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

    .guide-content {
        grid-template-columns: 2fr 1fr;
        gap: 50px;
    }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
    .promotion-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

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

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

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

    .tips-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

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

    .guide-content {
        grid-template-columns: 2fr 1fr;
        gap: 60px;
    }

    .promotion-card,
    .terms-card,
    .contact-card,
    .tip-card {
        padding: 40px;
    }

    .feature-card,
    .guide-section,
    .app-section {
        padding: 45px;
    }

    .step-item {
        padding: 30px;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .promotion-grid {
        gap: 60px;
    }

    .terms-grid,
    .contact-grid,
    .tips-grid {
        gap: 60px;
    }

    .faq-grid {
        gap: 50px;
    }
}

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

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

.policy-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.policy-info p {
    background: rgba(255, 215, 0, 0.1);
    color: #e0e0e0;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-size: 0.95rem;
    margin: 0;
}

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

.policy-content section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333333;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.policy-content section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
}

.policy-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 25px;
    line-height: 1.3;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 15px;
}

.policy-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 30px;
    line-height: 1.3;
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.policy-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.policy-content li {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
}

.policy-content li::marker {
    color: #ffd700;
}

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

.data-subsection,
.purpose-subsection,
.sharing-subsection,
.security-subsection,
.rights-subsection,
.cookies-subsection {
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

.data-subsection:last-child,
.purpose-subsection:last-child,
.sharing-subsection:last-child,
.security-subsection:last-child,
.rights-subsection:last-child,
.cookies-subsection:last-child {
    margin-bottom: 0;
}

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

.contact-info h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.contact-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin: 0;
    font-size: 0.95rem;
}

.contact-list li strong {
    display: inline-block;
    width: 120px;
    color: #ffd700;
}

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

.policy-footer hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin-bottom: 25px;
}

.policy-footer h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
    margin-top: 0;
}

.policy-footer p {
    color: #e0e0e0;
    margin-bottom: 15px;
}

.policy-footer em {
    color: #cccccc;
    font-style: italic;
    font-size: 0.9rem;
}

/* Mobile Styles for Privacy Policy */
@media (max-width: 767px) {
    .privacy-policy {
        padding: 60px 0;
    }

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

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

    .policy-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .policy-content h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        margin-top: 25px;
    }

    .data-subsection,
    .purpose-subsection,
    .sharing-subsection,
    .security-subsection,
    .rights-subsection,
    .cookies-subsection {
        padding: 20px 15px;
        margin-bottom: 25px;
    }

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

    .contact-list li strong {
        display: block;
        width: auto;
        margin-bottom: 5px;
    }

    .policy-info {
        gap: 8px;
    }

    .policy-info p {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Tablet Styles for Privacy Policy */
@media (min-width: 768px) {
    .privacy-policy {
        padding: 100px 0;
    }

    .policy-header {
        margin-bottom: 70px;
    }

    .policy-info {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .policy-content section {
        padding: 45px;
    }

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

/* Desktop Styles for Privacy Policy */
@media (min-width: 1024px) {
    .privacy-policy {
        padding: 120px 0;
    }

    .policy-header {
        margin-bottom: 80px;
    }

    .policy-content section {
        padding: 50px;
        margin-bottom: 50px;
    }

    .policy-content h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        padding-bottom: 18px;
    }

    .policy-content h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        margin-top: 35px;
    }

    .data-subsection,
    .purpose-subsection,
    .sharing-subsection,
    .security-subsection,
    .rights-subsection,
    .cookies-subsection {
        padding: 30px;
        margin-bottom: 40px;
    }

    .contact-info {
        padding: 35px;
    }

    .contact-list {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

/* Large Desktop Styles for Privacy Policy */
@media (min-width: 1280px) {
    .policy-content {
        max-width: 1000px;
    }

    .policy-content section {
        padding: 55px;
    }

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

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

/* Terms and Conditions Page Styles */
.terms-content {
    padding: 120px 0 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.terms-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid #ffd700;
}

.terms-header h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.terms-meta p {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid #333333;
    margin: 0;
    font-size: 0.95rem;
}

.terms-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333333;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
}

.terms-section h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #444444;
}

.terms-section h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 30px 0 20px 0;
}

.terms-section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 25px 0 15px 0;
}

.terms-section p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.terms-section ul,
.terms-section ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.terms-section li {
    color: #e0e0e0;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.terms-footer {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ffd700;
    margin-top: 40px;
    text-align: center;
}

.terms-note p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-note p:last-child {
    margin-bottom: 0;
}

.terms-note strong {
    color: #ffd700;
    font-weight: 700;
}

.terms-note em {
    color: #cccccc;
    font-style: italic;
}

/* Mobile Styles for Terms Page */
@media (max-width: 768px) {
    .terms-content {
        padding: 100px 0 60px;
    }

    .terms-header h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

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

    .terms-meta p {
        padding: 12px 20px;
        font-size: 0.9rem;
        text-align: center;
    }

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

    .terms-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .terms-section h3 {
        font-size: 1.3rem;
        margin: 25px 0 15px 0;
    }

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

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

    .terms-footer {
        padding: 25px 20px;
        margin-top: 30px;
    }
}

/* Tablet Styles for Terms Page */
@media (min-width: 769px) and (max-width: 1023px) {
    .terms-content {
        padding: 110px 0 70px;
    }

    .terms-header h1 {
        font-size: 2.2rem;
    }

    .terms-section {
        padding: 35px 30px;
    }

    .terms-section h2 {
        font-size: 1.8rem;
    }

    .terms-section h3 {
        font-size: 1.4rem;
    }
}

/* Desktop Styles for Terms Page */
@media (min-width: 1024px) {
    .terms-content {
        padding: 140px 0 100px;
    }

    .terms-header {
        margin-bottom: 80px;
        padding-bottom: 40px;
    }

    .terms-header h1 {
        font-size: 2.8rem;
    }

    .terms-section {
        padding: 45px;
        margin-bottom: 50px;
    }

    .terms-section h2 {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .terms-section h3 {
        font-size: 1.6rem;
    }

    .terms-section h4 {
        font-size: 1.4rem;
    }

    .terms-footer {
        padding: 40px;
        margin-top: 60px;
    }
}

/* Large Desktop Styles for Terms Page */
@media (min-width: 1280px) {
    .terms-content {
        max-width: 1200px;
    }

    .terms-section {
        padding: 50px;
    }

    .terms-header h1 {
        font-size: 3rem;
    }

    .terms-section h2 {
        font-size: 2.4rem;
    }
}

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

/* Policy Hero Section */
.policy-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 100px 0 60px;
    border-bottom: 1px solid #333333;
}

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

.policy-header h1 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.policy-dates {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: #cccccc;
}

.policy-dates p {
    margin: 0;
}

.policy-dates strong {
    color: #ffffff;
}

/* Policy Content Section */
.policy-content {
    padding: 60px 0;
}

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

.policy-section {
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.policy-section h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #ffd700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333333;
}

.policy-section h3 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #ffffff;
    margin: 25px 0 20px 0;
}

.policy-section h4 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffd700;
    margin: 20px 0 15px 0;
}

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

.policy-section ul,
.policy-section ol {
    margin: 15px 0;
    padding-left: 25px;
    color: #cccccc;
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

/* Subsection Styles */
.subsection {
    margin: 30px 0;
}

/* Principle Items */
.principle-item {
    background-color: #0a0a0a;
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}

.principle-item h4 {
    color: #ffd700;
    margin-bottom: 15px;
}

/* Warning Signs */
.warning-signs {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.warning-category {
    background-color: #0a0a0a;
    border: 1px solid #555555;
    border-left: 4px solid #ff6b6b;
    border-radius: 8px;
    padding: 25px;
}

.warning-category h4 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

/* Limits Section */
.limits-section {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.limit-item {
    background-color: #0a0a0a;
    border: 1px solid #4CAF50;
    border-radius: 8px;
    padding: 25px;
}

.limit-item h4 {
    color: #4CAF50;
    margin-bottom: 15px;
}

/* Break Systems */
.break-systems {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.break-item {
    background-color: #0a0a0a;
    border: 1px solid #2196F3;
    border-radius: 8px;
    padding: 25px;
}

.break-item h4 {
    color: #2196F3;
    margin-bottom: 15px;
}

/* Info Sections */
.info-sections {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.info-item {
    background-color: #0a0a0a;
    border: 1px solid #FF9800;
    border-radius: 8px;
    padding: 25px;
}

.info-item h4 {
    color: #FF9800;
    margin-bottom: 15px;
}

/* Education Resources */
.education-resources {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.resource-item {
    background-color: #0a0a0a;
    border: 1px solid #9C27B0;
    border-radius: 8px;
    padding: 25px;
}

.resource-item h4 {
    color: #9C27B0;
    margin-bottom: 15px;
}

/* Internal Support */
.internal-support {
    margin: 25px 0;
}

.support-item {
    background-color: #0a0a0a;
    border: 1px solid #00BCD4;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

.support-item h4 {
    color: #00BCD4;
    margin-bottom: 15px;
}

.contact-info {
    background-color: #0a0a0a;
    border: 1px solid #4CAF50;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

.contact-info h4 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.reporting-system {
    background-color: #0a0a0a;
    border: 1px solid #FF9800;
    border-radius: 8px;
    padding: 25px;
}

.reporting-system h4 {
    color: #FF9800;
    margin-bottom: 15px;
}

/* External Help */
.external-help {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.help-item {
    background-color: #0a0a0a;
    border: 1px solid #E91E63;
    border-radius: 8px;
    padding: 25px;
}

.help-item h4 {
    color: #E91E63;
    margin-bottom: 15px;
}

/* Youth Protection */
.youth-protection {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.protection-item {
    background-color: #0a0a0a;
    border: 1px solid #FF5722;
    border-radius: 8px;
    padding: 25px;
}

.protection-item h4 {
    color: #FF5722;
    margin-bottom: 15px;
}

/* Monitoring System */
.monitoring-system {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.monitoring-item {
    background-color: #0a0a0a;
    border: 1px solid #607D8B;
    border-radius: 8px;
    padding: 25px;
}

.monitoring-item h4 {
    color: #607D8B;
    margin-bottom: 15px;
}

/* Effectiveness Assessment */
.effectiveness-assessment {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.assessment-item {
    background-color: #0a0a0a;
    border: 1px solid #795548;
    border-radius: 8px;
    padding: 25px;
}

.assessment-item h4 {
    color: #795548;
    margin-bottom: 15px;
}

/* External Cooperation */
.external-cooperation {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.cooperation-item {
    background-color: #0a0a0a;
    border: 1px solid #3F51B5;
    border-radius: 8px;
    padding: 25px;
}

.cooperation-item h4 {
    color: #3F51B5;
    margin-bottom: 15px;
}

/* Community Support */
.community-support {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

/* Advertising Principles */
.advertising-principles {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

/* Transparent Info */
.transparent-info {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

/* Training Programs */
.training-programs {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.training-item {
    background-color: #0a0a0a;
    border: 1px solid #8BC34A;
    border-radius: 8px;
    padding: 25px;
}

.training-item h4 {
    color: #8BC34A;
    margin-bottom: 15px;
}

/* Continuous Development */
.continuous-development {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.development-item {
    background-color: #0a0a0a;
    border: 1px solid #CDDC39;
    border-radius: 8px;
    padding: 25px;
}

.development-item h4 {
    color: #CDDC39;
    margin-bottom: 15px;
}

/* Performance Evaluation */
.performance-evaluation {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.evaluation-item {
    background-color: #0a0a0a;
    border: 1px solid #FFC107;
    border-radius: 8px;
    padding: 25px;
}

.evaluation-item h4 {
    color: #FFC107;
    margin-bottom: 15px;
}

/* Continuous Improvement */
.continuous-improvement {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.improvement-process {
    background-color: #0a0a0a;
    border: 1px solid #FF8F00;
    border-radius: 8px;
    padding: 25px;
}

.improvement-process h4 {
    color: #FF8F00;
    margin-bottom: 15px;
}

.stakeholder-engagement {
    background-color: #0a0a0a;
    border: 1px solid #E65100;
    border-radius: 8px;
    padding: 25px;
}

.stakeholder-engagement h4 {
    color: #E65100;
    margin-bottom: 15px;
}

/* Specific Contacts */
.specific-contacts {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.contact-section {
    background-color: #0a0a0a;
    border: 1px solid #1976D2;
    border-radius: 8px;
    padding: 25px;
}

.contact-section h4 {
    color: #1976D2;
    margin-bottom: 15px;
}

/* Additional Resources */
.additional-resources {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.resource-section {
    background-color: #0a0a0a;
    border: 1px solid #388E3C;
    border-radius: 8px;
    padding: 25px;
}

.resource-section h4 {
    color: #388E3C;
    margin-bottom: 15px;
}

/* Policy Footer */
.policy-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
}

.commitment-statement h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 30px;
}

.commitment-statement p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 25px;
}

.commitment-statement blockquote {
    background-color: #0a0a0a;
    border-left: 4px solid #ffd700;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
}

.commitment-statement blockquote p {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0;
}

/* Mobile Styles for Policy Page */
@media (max-width: 768px) {
    .policy-hero {
        padding: 80px 0 40px;
    }

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

    .policy-dates {
        flex-direction: column;
        text-align: center;
    }

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

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

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

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

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

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

    .principle-item,
    .warning-category,
    .limit-item,
    .break-item,
    .info-item,
    .resource-item,
    .support-item,
    .contact-info,
    .reporting-system,
    .help-item,
    .protection-item,
    .monitoring-item,
    .assessment-item,
    .cooperation-item,
    .training-item,
    .development-item,
    .evaluation-item,
    .improvement-process,
    .stakeholder-engagement,
    .contact-section,
    .resource-section {
        padding: 20px;
    }

    .policy-footer {
        padding: 25px 20px;
        margin-top: 30px;
    }

    .commitment-statement h2 {
        font-size: 1.5rem;
    }

    .commitment-statement blockquote {
        padding: 20px;
    }
}

/* Tablet Styles for Policy Page */
@media (min-width: 769px) and (max-width: 1023px) {
    .policy-hero {
        padding: 120px 0 50px;
    }

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

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

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

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

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

    .warning-signs,
    .limits-section,
    .break-systems,
    .info-sections,
    .education-resources,
    .external-help,
    .youth-protection,
    .monitoring-system,
    .effectiveness-assessment,
    .external-cooperation,
    .community-support,
    .advertising-principles,
    .transparent-info,
    .training-programs,
    .continuous-development,
    .performance-evaluation,
    .continuous-improvement,
    .specific-contacts,
    .additional-resources {
        grid-template-columns: 1fr;
    }
}

/* Desktop Styles for Policy Page */
@media (min-width: 1024px) {
    .policy-hero {
        padding: 140px 0 60px;
    }

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

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

    .policy-section {
        padding: 45px;
        margin-bottom: 50px;
    }

    .policy-section h2 {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

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

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

    .policy-footer {
        padding: 50px;
        margin-top: 60px;
    }

    .commitment-statement h2 {
        font-size: 2.2rem;
    }

    /* Grid layouts for desktop */
    .warning-signs {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Large Desktop Styles for Policy Page */
@media (min-width: 1280px) {
    .policy-content {
        max-width: 1200px;
    }

    .policy-section {
        padding: 50px;
    }

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

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

    .commitment-statement h2 {
        font-size: 2.4rem;
    }
}