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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
}

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

ul {
    list-style: none;
}

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

.navbar {
    padding: 0 20px;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo Styles */
.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.logo {
    width: 40px;
    height: 40px;
    filter: brightness(1.2);
}

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

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

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

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

.nav-link.cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

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

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

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

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.2);
}

.hamburger-line {
    width: 24px;
    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(5px, 5px);
}

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

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

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 15px;
        padding: 10px 16px;
    }

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

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

    .nav-container {
        height: 70px;
    }

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 0;
        transition: left 0.3s ease;
        border-top: 2px solid #333;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: 20px 30px;
        font-size: 18px;
        width: 100%;
        border-radius: 0;
    }

    .nav-link.cta-button {
        margin: 20px 30px;
        border-radius: 8px;
        animation: none;
    }

    .logo {
        width: 35px;
        height: 35px;
    }

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

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

    .nav-container {
        height: 60px;
    }

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

    .nav-link {
        padding: 18px 20px;
        font-size: 17px;
    }

    .nav-link.cta-button {
        margin: 15px 20px;
    }

    .logo {
        width: 30px;
        height: 30px;
    }

    .logo-text {
        font-size: 16px;
    }
}

/* Main content padding to account for fixed header */
main {
    padding-top: 0;
}

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

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

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

/* Homepage Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(15deg); }
}

.hero-description {
    margin-bottom: 40px;
}

.hero-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
}

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

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

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

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

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #0f0f0f;
}

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

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #ffffff;
}

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

.feature-card p {
    margin-bottom: 25px;
    color: #cccccc;
    line-height: 1.6;
}

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

.feature-list li {
    padding: 12px 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
    line-height: 1.6;
}

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

.feature-list li strong {
    color: #ff6b35;
}

.feature-image {
    text-align: center;
    margin-top: 60px;
}

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

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

.demo-game {
    max-width: 600px;
    margin: 0 auto;
}

.slot-machine {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid #333;
}

.slot-display {
    background: #000;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 3px solid #ff6b35;
    position: relative;
    overflow: hidden;
}

.reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    min-height: 120px;
}

.reel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 10px;
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.reel.spinning {
    animation: spin 1s linear infinite;
}

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

.symbol {
    font-size: 3rem;
    padding: 20px;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

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

.demo-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid #ff6b35;
}

.demo-balance, .demo-bet {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.demo-balance span, .demo-bet span {
    color: #ff6b35;
}

.spin-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.spin-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

.demo-result {
    font-size: 1.2rem;
    font-weight: 600;
    min-height: 30px;
    color: #ff6b35;
}

/* Guide Section */
.guide-section {
    padding: 100px 0;
    background: #0f0f0f;
}

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

.guide-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

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

.guide-header {
    margin-bottom: 30px;
}

.guide-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

.guide-list li {
    padding: 15px 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
    line-height: 1.6;
}

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

.guide-list li strong {
    color: #ff6b35;
}

.guide-card a {
    color: #ff6b35;
    text-decoration: underline;
}

.guide-card a:hover {
    color: #f7931e;
}

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

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

.skill-development {
    margin-top: 80px;
    text-align: center;
}

.skill-development h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.skill-development > p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.development-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.development-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.development-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

.wallet-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.wallet-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.wallet-text > p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 50px;
}

.wallet-features h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.wallet-performance {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.performance-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
}

.performance-item h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.performance-item ul, .performance-item ol {
    list-style-position: inside;
    color: #cccccc;
    line-height: 1.6;
}

.performance-item li {
    padding: 8px 0;
}

.performance-item strong {
    color: #ffffff;
}

.wallet-login {
    margin: 60px 0;
}

.wallet-login h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

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

.step-group {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
}

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

.step-group ol {
    list-style-position: inside;
    color: #cccccc;
    line-height: 1.6;
}

.step-group li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.step-group li:last-child {
    border-bottom: none;
}

.wallet-advanced {
    margin: 60px 0;
}

.wallet-advanced h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

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

.advanced-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
}

.advanced-item h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.advanced-item ul {
    list-style: none;
    color: #cccccc;
    line-height: 1.6;
}

.advanced-item li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.advanced-item li:last-child {
    border-bottom: none;
}

.wallet-cta {
    text-align: center;
    margin-top: 50px;
}

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

.wallet-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 100px;
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.games-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.games-providers h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.provider-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
}

.provider-section h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.games-list {
    list-style: none;
    color: #cccccc;
    line-height: 1.7;
}

.games-list li {
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

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

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

.games-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 100px;
}

.games-features {
    margin: 80px 0;
}

.games-features h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
}

.feature-group h4 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ff6b35;
}

.feature-detail {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    margin-bottom: 30px;
}

.feature-detail h5 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.feature-detail ul {
    list-style: none;
    color: #cccccc;
    line-height: 1.6;
}

.feature-detail li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.feature-detail li:last-child {
    border-bottom: none;
}

.ranking-section {
    margin: 80px 0;
}

.ranking-section h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
}

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

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

.ranking-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.ranking-item h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.ranking-item ol, .ranking-item ul {
    list-style-position: inside;
    color: #cccccc;
    line-height: 1.6;
}

.ranking-item li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.ranking-item li:last-child {
    border-bottom: none;
}

.ranking-item strong {
    color: #ffffff;
}

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

.tournament-image {
    text-align: center;
    margin: 50px 0;
}

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

.beginner-support {
    margin-top: 80px;
}

.beginner-support h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
}

.support-programs h4 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ff6b35;
}

.program-detail {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    margin-bottom: 30px;
}

.program-detail h5 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.program-detail ul {
    list-style: none;
    color: #cccccc;
    line-height: 1.6;
}

.program-detail li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.program-detail li:last-child {
    border-bottom: none;
}

.beginner-support > p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    text-align: center;
}

.contact-methods h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #ff6b35;
    transform: translateX(10px);
}

.contact-item i {
    font-size: 2rem;
    color: #ff6b35;
    width: 40px;
    text-align: center;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item strong {
    color: #ffffff;
    font-size: 1.2rem;
}

.contact-item span {
    color: #cccccc;
    font-size: 1.1rem;
}

.service-hours {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ff6b35;
    margin-bottom: 40px;
    text-align: center;
}

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

.contact-cta {
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #0f0f0f;
}

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

.faq-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content, .wallet-content, .games-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wallet-img, .games-img {
        position: static;
    }
}

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

    .section-header h2 {
        font-size: 2rem;
    }

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

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }

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

    .feature-card, .guide-card {
        padding: 30px;
    }

    .development-grid, .ranking-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .login-steps, .advanced-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .demo-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .reels {
        gap: 10px;
    }

    .symbol {
        font-size: 2rem;
        padding: 15px;
    }

    .contact-list {
        gap: 20px;
    }

    .contact-item {
        padding: 20px;
    }
}

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

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

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

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

    .features-section, .guide-section, .wallet-section, .games-section, .contact-section, .faq-section {
        padding: 60px 0;
    }

    .feature-card, .guide-card {
        padding: 25px;
    }

    .slot-machine {
        padding: 25px;
    }

    .slot-display {
        padding: 20px;
    }

    .demo-info {
        padding: 15px;
        font-size: 1rem;
    }

    .spin-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .symbol {
        font-size: 1.8rem;
        padding: 10px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .faq-item {
        padding: 25px;
    }
}

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

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

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

.footer-link {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

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

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

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    z-index: 999;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-top: 2px solid #333;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Sarabun', sans-serif;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    border-right: 1px solid #333;
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

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

.sticky-btn-login {
    background: linear-gradient(135deg, #4a4a4a, #3a3a3a);
    color: #ffffff;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #5a5a5a, #4a4a4a);
    transform: translateY(-2px);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
}

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

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    animation: none;
}

@keyframes pulse-bonus {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

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

    .footer-links {
        gap: 25px;
        flex-direction: column;
    }

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

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

    .footer-links {
        gap: 20px;
    }

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

/* Responsive Sticky Buttons Styles */
@media (max-width: 768px) {
    .sticky-btn {
        padding: 14px 16px;
        font-size: 0.95rem;
        min-height: 56px;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 12px 14px;
        font-size: 0.9rem;
        min-height: 52px;
    }
}

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

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

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

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

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
    gap: 40px;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.login-form {
    width: 100%;
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-label i {
    color: #ff6b35;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    color: #ffffff;
    background: rgba(42, 42, 42, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Sarabun', sans-serif;
}

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

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

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 4px;
}

.password-toggle:hover {
    color: #ff6b35;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.login-btn,
.register-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 18px 32px;
}

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

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

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

.register-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

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

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

    .login-form {
        padding: 30px 20px;
    }

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

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

@media (max-width: 480px) {
    .login-container {
        gap: 30px;
    }

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

    .login-form {
        padding: 25px 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-actions {
        gap: 12px;
        margin-top: 24px;
    }
}

/* Form Alert Styles */
.form-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    animation: slideInDown 0.3s ease;
}

.form-alert-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
}

.form-alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #51cf66;
}

.form-alert i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

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

.register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
    gap: 40px;
}

.register-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

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

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

@media (max-width: 480px) {
    .register-container {
        gap: 30px;
    }

    .register-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
}

/* Promotion Page Styles */

/* Hero Section Adjustments for Promotion Page */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    order: 1;
}

.hero-image {
    order: 2;
}

/* Promotion Section */
.promotion-section {
    padding: 100px 0;
    background: #0f0f0f;
}

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

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

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

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

.promotion-card.featured {
    border: 2px solid #ff6b35;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a, #1a1a1a);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.promotion-card.featured::before {
    height: 6px;
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.promo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #ffffff;
}

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

.promo-highlight {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #ff6b35;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin: 25px 0;
}

.promo-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    font-family: 'Prompt', sans-serif;
}

.promo-label {
    font-size: 1.1rem;
    color: #cccccc;
    margin-top: 5px;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.promo-features li {
    padding: 12px 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
    line-height: 1.6;
}

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

.promo-features li strong {
    color: #ff6b35;
}

.promo-cta {
    margin-top: 30px;
    text-align: center;
}

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

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

.vip-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 25px;
    padding: 50px;
    border: 2px solid #ff6b35;
    position: relative;
    overflow: hidden;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.vip-header {
    text-align: center;
    margin-bottom: 50px;
}

.vip-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: #ffffff;
}

.vip-header h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.vip-header p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.6;
}

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

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

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.benefit-info h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.benefit-info p {
    color: #cccccc;
    font-size: 1rem;
}

/* Auto Wallet Section */
.auto-wallet-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.wallet-features-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #333;
    max-width: 900px;
    margin: 0 auto;
}

.feature-header {
    text-align: center;
    margin-bottom: 50px;
}

.feature-header .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: #ffffff;
}

.feature-header h3 {
    font-size: 2rem;
    color: #ffffff;
}

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

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 107, 53, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

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

.spec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #ffffff;
}

.spec-info h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.spec-info p {
    color: #cccccc;
    font-size: 1rem;
}

.wallet-cta {
    text-align: center;
    margin-top: 40px;
}

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

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

.slot-promo-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.slot-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #ff6b35;
}

.slot-promo-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.slot-promo-card p {
    margin-bottom: 25px;
    color: #cccccc;
    line-height: 1.6;
}

.slot-rewards {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.slot-rewards li {
    padding: 12px 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
    line-height: 1.6;
}

.slot-rewards li:last-child {
    border-bottom: none;
}

.slot-rewards li strong {
    color: #ff6b35;
}

.tournament-card {
    position: relative;
}

.tournament-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.tournament-info {
    margin-bottom: 30px;
}

.tournament-info h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.prize-list {
    display: grid;
    gap: 15px;
    margin: 25px 0;
}

.prize-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 107, 53, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

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

.prize-rank {
    font-weight: 700;
    color: #ff6b35;
    font-size: 1.1rem;
}

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

.tournament-cta {
    text-align: center;
    margin-top: 30px;
}

/* Daily Promotions Section */
.daily-promotions-section {
    padding: 100px 0;
    background: #0f0f0f;
}

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

.daily-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.daily-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.daily-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #ff6b35;
}

.day-header {
    text-align: center;
    margin-bottom: 25px;
}

.day-header h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.day-subtitle {
    color: #ff6b35;
    font-size: 1rem;
    font-weight: 600;
}

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

.day-benefits li {
    padding: 10px 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
    line-height: 1.5;
}

.day-benefits li:last-child {
    border-bottom: none;
}

.day-benefits li strong {
    color: #ff6b35;
}

.daily-cta {
    text-align: center;
    margin-top: 40px;
}

/* Auto Wallet Special Section */
.auto-wallet-special-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.wallet-special-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.wallet-text h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.wallet-text h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.wallet-text h4 {
    font-size: 1.6rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.wallet-text h5 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.wallet-text p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wallet-benefits {
    margin-bottom: 40px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

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

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

.benefit-card .benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
    color: #ffffff;
}

.benefit-card h5 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 8px;
}

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

.wallet-bonuses {
    margin-bottom: 40px;
}

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

.bonus-list li {
    padding: 12px 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
    line-height: 1.6;
}

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

.bonus-list li strong {
    color: #ff6b35;
}

.security-info {
    margin-bottom: 40px;
}

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

.security-list li {
    padding: 10px 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
    line-height: 1.6;
}

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

.wallet-special-cta {
    margin-top: 30px;
}

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

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

/* How to Section */
.how-to-section {
    padding: 100px 0;
    background: #0f0f0f;
}

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

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

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.step-content h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.step-list li {
    padding: 10px 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
    line-height: 1.6;
}

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

.step-list li strong {
    color: #ff6b35;
}

.steps-cta {
    text-align: center;
    margin-top: 40px;
}

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

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

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

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

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

.terms-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #ffffff;
}

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

.terms-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.terms-list li {
    padding: 12px 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
    line-height: 1.6;
}

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

/* FAQ Section Enhancements */
.faq-section {
    padding: 100px 0;
    background: #0f0f0f;
}

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

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

.faq-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

.faq-item p strong {
    color: #ff6b35;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

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

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

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

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

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

.games-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #ffffff;
}

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

.games-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.provider-list {
    display: grid;
    gap: 10px;
}

.provider-item {
    padding: 10px 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
    line-height: 1.5;
}

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

.provider-item strong {
    color: #ff6b35;
}

.recommended-games {
    margin-top: 60px;
}

.recommended-games h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.recommended-games p {
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.game-list {
    display: grid;
    gap: 15px;
}

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

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

.game-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.game-info h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 5px;
}

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

.access-channels {
    margin-top: 80px;
}

.access-channels h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

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

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

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

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

.channel-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #ffffff;
}

.channel-card h4 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.channel-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.channel-list li, .contact-list li {
    padding: 10px 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
    line-height: 1.5;
}

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

.channel-list li strong, .contact-list li strong {
    color: #ff6b35;
}

.games-cta {
    text-align: center;
    margin-top: 60px;
}

/* Summary Section */
.summary-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.summary-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.summary-text h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
}

.benefits-summary h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

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

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

.benefit-summary-item i {
    font-size: 2rem;
    color: #ff6b35;
    flex-shrink: 0;
}

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

.benefit-summary-item p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.final-cta {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #ff6b35;
    text-align: center;
}

.final-cta h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.final-cta-button {
    margin-top: 30px;
}

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

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

.disclaimer {
    border-top: 2px solid #333;
    padding-top: 40px;
    margin-top: 60px;
    text-align: center;
}

.disclaimer p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
    font-style: italic;
}

/* Responsive Design for Promotion Page */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

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

    .slot-promo-grid {
        grid-template-columns: 1fr;
    }

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

    .wallet-special-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

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

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

    .section-header h2 {
        font-size: 2rem;
    }

    .vip-card {
        padding: 30px;
    }

    .wallet-features-card {
        padding: 30px;
    }

    .promotion-card {
        padding: 30px;
    }

    .step-card {
        padding: 30px;
    }

    .terms-card {
        padding: 30px;
    }

    .games-card {
        padding: 30px;
    }

    .channel-card {
        padding: 30px;
    }

    .daily-promo-grid {
        grid-template-columns: 1fr;
    }

    .vip-benefits {
        grid-template-columns: 1fr;
    }

    .wallet-specs {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

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

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

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

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

    .vip-card {
        padding: 20px;
    }

    .wallet-features-card {
        padding: 20px;
    }

    .promotion-card {
        padding: 20px;
    }

    .promo-amount {
        font-size: 2rem;
    }

    .vip-benefits {
        gap: 20px;
    }

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

    .daily-promo-grid {
        gap: 20px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .spec-item {
        padding: 20px;
    }

    .final-cta {
        padding: 25px;
    }
}

/* Responsible Gambling Policy Styles */
.responsible-gambling-policy-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.1);
    border: 1px solid #333;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #333;
}

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

.policy-date {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 500;
}

.policy-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}

.policy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}

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

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.policy-subsection {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #252525;
    border-radius: 12px;
    border: 1px solid #333;
}

.policy-subsection h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f7931e;
    margin-bottom: 20px;
}

.policy-subsection h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 20px;
}

.policy-subsection h4:first-child {
    margin-top: 0;
}

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

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

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

.policy-subsection ul li::before {
    content: "▶";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

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

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

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

.limit-table {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #444;
}

.limit-table h4 {
    color: #f7931e;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.limit-table ul {
    margin-bottom: 20px;
}

.limit-table li {
    background-color: #333;
    padding: 8px 15px;
    margin-bottom: 5px;
    border-radius: 6px;
    border-left: 3px solid #ff6b35;
}

.contact-info {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid #444;
}

.contact-info ul li {
    background-color: #333;
    padding: 12px 20px;
    margin-bottom: 8px;
    border-radius: 8px;
    border-left: 3px solid #f7931e;
    font-weight: 500;
}

.policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #333;
}

.important-message,
.emergency-contact,
.policy-effective {
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
}

.important-message p,
.emergency-contact p,
.policy-effective p {
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    line-height: 1.7;
}

.last-updated {
    text-align: center;
    padding: 15px;
    color: #888;
    font-style: italic;
}

/* Responsive Design for Policy Page */
@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
        margin: 0 15px;
    }

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

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

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

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

    .policy-intro,
    .policy-subsection,
    .limit-table,
    .contact-info {
        padding: 15px;
    }

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

@media (max-width: 480px) {
    .responsible-gambling-policy-section {
        padding: 30px 0;
    }

    .policy-content {
        padding: 20px 15px;
        margin: 0 10px;
    }

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

    .policy-date {
        font-size: 1rem;
    }

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

    .policy-subsection li {
        padding-left: 20px;
        font-size: 0.95rem;
    }
}