/* 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;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
}

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

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

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

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

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    filter: brightness(1.2);
}

.logo span {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 15px;
}

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

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

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

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

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

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

.mobile-nav-list {
    list-style: none;
    padding: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.mobile-nav-link,
.mobile-cta-button {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    margin-bottom: 5px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    transform: translateX(10px);
}

.mobile-cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

/* Content Spacing */
main {
    margin-top: 70px;
}

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

    .desktop-nav {
        display: none;
    }

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

    .logo {
        font-size: 1.3rem;
    }

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

    .cta-button {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    main {
        margin-top: 60px;
    }
}

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

    .logo {
        font-size: 1.2rem;
    }

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

    .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .mobile-nav-list {
        padding: 15px;
    }

    .mobile-nav-link,
    .mobile-cta-button {
        padding: 12px 15px;
        font-size: 1rem;
    }
}

/* Smooth scroll for internal links */
html {
    scroll-behavior: smooth;
}

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

/* Animation for page load */
.header {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Section Styling */
section {
    padding: 80px 0;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.hero-cta-primary, .hero-cta-secondary {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

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

.hero-image {
    animation: fadeInRight 1s ease-out;
}

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

/* Slot Demo Section */
.slot-demo {
    background: rgba(255, 107, 53, 0.05);
    padding: 80px 0;
}

.demo-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

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

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

.slot-reels {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.reel {
    background: #111;
    border-radius: 10px;
    padding: 20px 15px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

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

.symbol {
    font-size: 2.5rem;
    padding: 10px;
    text-align: center;
    transition: all 0.2s ease;
}

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

.credits, .bet, .winnings {
    background: rgba(255, 107, 53, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    font-weight: 700;
    color: #ff6b35;
}

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

.spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.demo-note {
    font-style: italic;
    color: #999;
    text-align: center;
    font-size: 0.9rem;
}

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

.games-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ff6b35;
}

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

.game-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.game-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

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

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

.vip-games-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.vip-game-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 107, 53, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.vip-game-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(10px);
}

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

.vip-content h4 {
    color: #ff6b35;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

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

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

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

/* Login Section */
.login-section {
    background: rgba(255, 107, 53, 0.05);
    padding: 80px 0;
}

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

.login-steps, .access-channels, .register-section {
    margin-bottom: 50px;
}

.login-steps h3, .access-channels h3, .register-section h3 {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

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

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

.channels-list {
    display: grid;
    gap: 20px;
    margin-top: 25px;
}

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

.channel-item:hover {
    transform: translateX(10px);
    background: rgba(255, 107, 53, 0.15);
}

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

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

.channel-item p {
    color: #cccccc;
    font-size: 0.95rem;
}

.register-steps {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.register-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
}

.register-step span {
    background: #ff6b35;
    color: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

.register-step a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.register-step a:hover {
    text-decoration: underline;
}

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

/* Wallet Section */
.wallet-section {
    padding: 80px 0;
}

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

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

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

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

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

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

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

.payment-methods {
    margin: 60px 0;
}

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

.payment-category h3 {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 25px;
}

.bank-list, .ewallet-list {
    display: grid;
    gap: 15px;
}

.bank-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
    transition: all 0.3s ease;
}

.bank-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.bank-number {
    background: #ff6b35;
    color: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ewallet-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
    transition: all 0.3s ease;
}

.ewallet-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.ewallet-item i {
    color: #ff6b35;
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

.security-features {
    margin: 60px 0;
}

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

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

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 107, 53, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.security-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.security-content h4 {
    color: #ff6b35;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

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

.wallet-actions {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
}

.wallet-actions p {
    font-size: 1.1rem;
    color: #cccccc;
}

.wallet-actions a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.wallet-actions a:hover {
    text-decoration: underline;
}

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

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

/* Promotions Section */
.promotions-section {
    background: rgba(255, 107, 53, 0.05);
    padding: 80px 0;
}

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

.promotion-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

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

.promotion-card > p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.bonus-list h4 {
    color: #ff6b35;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.bonus-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bonus-content h5 {
    color: #ff6b35;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

.vip-benefits {
    display: grid;
    gap: 20px;
}

.vip-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.vip-benefit-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

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

.vip-benefit-content h4 {
    color: #ff6b35;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.vip-benefit-content p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.tournaments-section h3 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.tournament-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.tournament-card h4 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.tournament-features {
    display: grid;
    gap: 15px;
}

.tournament-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
}

.tournament-feature i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.daily-promos h4 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.daily-promo-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.promo-time {
    background: #ff6b35;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-content h5 {
    color: #ff6b35;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

.promotion-cta {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
}

.promotion-cta p {
    font-size: 1.1rem;
    color: #cccccc;
}

.promotion-cta a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.promotion-cta a:hover {
    text-decoration: underline;
}

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

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

/* Security & Support Section */
.security-support-section {
    padding: 80px 0;
}

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

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

.security-features-detailed {
    margin-top: 30px;
}

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

.security-category h4 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.security-features-list {
    display: grid;
    gap: 20px;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.security-feature:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.security-feature i {
    color: #ff6b35;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.security-feature h5 {
    color: #ff6b35;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

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

.contact-channels h4 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

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

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

.contact-info h5 {
    color: #ff6b35;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

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

.support-services {
    margin-top: 30px;
}

.support-category h4 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.problem-solving, .additional-services {
    margin-bottom: 30px;
}

.problem-solving h5, .additional-services h5 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.problem-list, .services-list {
    display: grid;
    gap: 15px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.problem-number {
    background: #ff6b35;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.problem-content h6 {
    color: #ff6b35;
    margin-bottom: 5px;
    font-size: 1rem;
}

.problem-content p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.service-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.service-item i {
    color: #ff6b35;
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-item h6 {
    color: #ff6b35;
    margin-bottom: 5px;
    font-size: 1rem;
}

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

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

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

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.guarantee-card, .responsible-gaming {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.guarantee-card h4, .responsible-gaming h4 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.guarantee-features, .responsible-features {
    display: grid;
    gap: 15px;
}

.guarantee-feature, .responsible-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
}

.guarantee-feature i, .responsible-feature i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-feature span, .responsible-feature span {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.external-links {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
}

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

.external-links a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.external-links a:hover {
    text-decoration: underline;
}

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

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

.footer-note {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
}

.footer-note p {
    font-style: italic;
    color: #cccccc;
    line-height: 1.8;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

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

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

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

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

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

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

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

    .container {
        padding: 0 15px;
    }

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

    .hero {
        padding: 80px 0;
    }

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

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

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

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

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

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

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

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

    .slot-machine {
        padding: 30px 20px;
    }

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

    .spin-btn {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }
}

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

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

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

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

    .hero-cta-primary, .hero-cta-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .games-subtitle {
        font-size: 1.5rem;
    }

    .slot-reels {
        gap: 5px;
    }

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

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

    .slot-controls {
        gap: 10px;
    }

    .credits, .bet, .winnings {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

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

    .game-card, .feature-card, .promotion-card, .guarantee-card, .responsible-gaming {
        padding: 20px;
    }
}

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

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

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

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-btn {
    flex: 1;
    max-width: 180px;
    padding: 12px 20px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

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

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

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

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

.sticky-btn-bonus {
    background: linear-gradient(135deg, #f7931e, #ffb366);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
}

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #ffb366, #f7931e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
}

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

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

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

    .footer-container {
        padding: 0 15px;
    }

    .footer-nav {
        gap: 25px;
        flex-direction: column;
        text-align: center;
    }

    .footer-link {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    /* Sticky Buttons Mobile */
    .sticky-buttons {
        padding: 12px 15px;
        gap: 10px;
    }

    .sticky-btn {
        max-width: none;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    body {
        padding-bottom: 75px;
    }
}

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

    .footer-link {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    /* Sticky Buttons Small Mobile */
    .sticky-buttons {
        padding: 10px;
        gap: 8px;
    }

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

    body {
        padding-bottom: 70px;
    }
}

/* Ensure sticky buttons work with existing header */
@media (max-width: 768px) {
    .sticky-buttons {
        bottom: 0;
    }
}

/* Login Page Styles */
.login-page {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.login-container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    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: 0;
}

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

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

.input-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

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

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

.input-field::placeholder {
    color: #999999;
    font-style: italic;
}

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

.login-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    width: 100%;
}

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

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

.register-btn {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.register-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

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

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

    .login-container {
        padding: 40px 30px;
        margin: 0 20px;
        border-radius: 16px;
    }

    .login-title {
        font-size: 1.7rem;
    }

    .input-field {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

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

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

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

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

    .input-field {
        padding: 12px 15px;
    }

    .login-btn,
    .register-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* Animation for login page */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus styles for accessibility */
.input-field:focus,
.login-btn:focus,
.register-btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Register Page Styles */
.register-page {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.register-container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.register-title {
    font-size: 2rem;
    font-weight: 700;
    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: 0;
}

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

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

.register-form .input-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

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

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

.register-form .input-field::placeholder {
    color: #999999;
    font-style: italic;
}

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

.register-form .register-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    width: 100%;
}

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

.register-form .register-btn:active {
    transform: translateY(-1px);
}

.register-form .login-btn {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.register-form .login-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

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

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

    .register-container {
        padding: 40px 30px;
        margin: 0 20px;
        border-radius: 16px;
    }

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

    .register-form .input-field {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .register-form .register-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .register-form .login-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

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

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

    .register-form .input-field {
        padding: 12px 15px;
    }

    .register-form .register-btn,
    .register-form .login-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* Focus styles for accessibility - Register Page */
.register-form .input-field:focus,
.register-form .register-btn:focus,
.register-form .login-btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Privacy Policy Page Styles */
.policy-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(247, 147, 30, 0.02));
    padding: 80px 0;
    min-height: calc(100vh - 70px);
}

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

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

.policy-meta {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.policy-meta p {
    color: #cccccc;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

.policy-meta strong {
    color: #ff6b35;
}

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

.policy-content section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.policy-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.policy-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f7931e;
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-content h3::before {
    content: "▶";
    color: #ff6b35;
    font-size: 0.8rem;
}

.policy-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffb366;
    margin: 25px 0 15px 0;
    padding-left: 20px;
    position: relative;
}

.policy-content h4::before {
    content: "•";
    color: #ff6b35;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.policy-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b35;
    margin: 20px 0 10px 0;
}

.policy-content h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #f7931e;
    margin: 15px 0 8px 0;
}

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

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

.policy-content li {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.95rem;
    position: relative;
}

.policy-content ul li::marker {
    color: #ff6b35;
    content: "●";
}

.policy-content ol li::marker {
    color: #ff6b35;
    font-weight: 700;
}

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

/* Policy Category Styles */
.data-category,
.usage-category,
.sharing-category,
.retention-category,
.rights-category,
.security-category,
.cookies-category,
.transfer-category,
.contact-category,
.changes-category,
.special-category {
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.data-category:hover,
.usage-category:hover,
.sharing-category:hover,
.retention-category:hover,
.rights-category:hover,
.security-category:hover,
.cookies-category:hover,
.transfer-category:hover,
.contact-category:hover,
.changes-category:hover,
.special-category:hover {
    background: rgba(255, 107, 53, 0.08);
    transform: translateX(5px);
}

/* Cookie Types Styling */
.cookie-type {
    background: rgba(247, 147, 30, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(247, 147, 30, 0.2);
}

.cookie-type h4 {
    color: #f7931e;
    margin-bottom: 15px;
    padding-left: 0;
}

.cookie-type h4::before {
    content: "🍪";
    margin-right: 8px;
}

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

.contact-info h4 {
    color: #ff6b35;
    margin-bottom: 20px;
    text-align: center;
    padding-left: 0;
}

.contact-info h4::before {
    content: "📞";
    margin-right: 10px;
}

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

.contact-info li {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    margin: 10px 0;
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
    transition: all 0.3s ease;
}

.contact-info li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

/* Sharing Introduction */
.sharing-intro {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid rgba(255, 107, 53, 0.3);
    text-align: center;
}

.sharing-intro h3 {
    color: #ff6b35;
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

.sharing-intro h3::before {
    content: "🔒";
    margin-right: 10px;
}

/* Cookie Management */
.cookies-management {
    background: rgba(247, 147, 30, 0.08);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(247, 147, 30, 0.2);
}

.cookies-management h3 {
    color: #f7931e;
}

.cookies-management h3::before {
    content: "⚙️";
    margin-right: 8px;
}

/* Policy Footer */
.policy-footer {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-top: 60px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    text-align: center;
}

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

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

.policy-note strong {
    color: #ff6b35;
    font-weight: 600;
}

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

    .policy-content section {
        padding: 30px 25px;
    }
}

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

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

    .policy-header h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .policy-meta {
        padding: 15px;
    }

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

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

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

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

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

    .data-category,
    .usage-category,
    .sharing-category,
    .retention-category,
    .rights-category,
    .security-category,
    .cookies-category,
    .transfer-category,
    .contact-category,
    .changes-category,
    .special-category {
        padding: 20px;
        margin: 20px 0;
    }

    .contact-info {
        padding: 20px;
    }

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

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .policy-meta {
        padding: 12px;
    }

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

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

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

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

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

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

    .policy-content ul,
    .policy-content ol {
        padding-left: 25px;
    }

    .data-category,
    .usage-category,
    .sharing-category,
    .retention-category,
    .rights-category,
    .security-category,
    .cookies-category,
    .transfer-category,
    .contact-category,
    .changes-category,
    .special-category {
        padding: 15px;
        margin: 15px 0;
    }

    .cookie-type {
        padding: 15px;
        margin: 15px 0;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-info li {
        padding: 10px 15px;
        margin: 8px 0;
    }

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

    .policy-note p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Animation for policy sections */
.policy-content section {
    animation: fadeInUp 0.6s ease-out;
}

.policy-content section:nth-child(even) {
    animation-delay: 0.1s;
}

.policy-content section:nth-child(odd) {
    animation-delay: 0.2s;
}

/* Icon styling for different sections */
.policy-intro h2::before { content: "📋"; margin-right: 10px; }
.policy-data-collection h2::before { content: "🗂️"; margin-right: 10px; }
.policy-usage h2::before { content: "🎯"; margin-right: 10px; }
.policy-sharing h2::before { content: "🤝"; margin-right: 10px; }
.policy-retention h2::before { content: "⏰"; margin-right: 10px; }
.policy-rights h2::before { content: "⚖️"; margin-right: 10px; }
.policy-security h2::before { content: "🔐"; margin-right: 10px; }
.policy-cookies h2::before { content: "🍪"; margin-right: 10px; }
.policy-transfer h2::before { content: "🌍"; margin-right: 10px; }
.policy-contact h2::before { content: "📞"; margin-right: 10px; }
.policy-changes h2::before { content: "🔄"; margin-right: 10px; }
.policy-special h2::before { content: "⚠️"; margin-right: 10px; }

/* Responsible Gambling Policy Styles */
.policy-section.responsible-gambling {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(247, 147, 30, 0.02));
    padding: 80px 0;
    min-height: calc(100vh - 70px);
}

.policy-content.responsible-gambling {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.policy-content.responsible-gambling .policy-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.policy-content.responsible-gambling .policy-meta {
    background: rgba(255, 107, 53, 0.1);
    padding: 25px;
    border-radius: 12px;
    display: inline-block;
    border: 2px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.policy-content.responsible-gambling .policy-meta p {
    color: #cccccc;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.policy-content.responsible-gambling .policy-meta p:last-child {
    margin-bottom: 0;
}

.policy-content.responsible-gambling .policy-meta strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Policy Section Styling */
.policy-content.responsible-gambling .policy-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 45px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.policy-content.responsible-gambling .policy-section:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.policy-content.responsible-gambling .policy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

.policy-content.responsible-gambling .policy-section h2::before {
    content: "🎯";
    margin-right: 12px;
    font-size: 1.8rem;
}

/* Subsection Styling */
.policy-content.responsible-gambling .subsection {
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border-left: 5px solid #ff6b35;
    transition: all 0.3s ease;
}

.policy-content.responsible-gambling .subsection:hover {
    background: rgba(255, 107, 53, 0.08);
    transform: translateX(8px);
}

.policy-content.responsible-gambling .subsection h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #f7931e;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-content.responsible-gambling .subsection h3::before {
    content: "▶";
    color: #ff6b35;
    font-size: 1rem;
}

.policy-content.responsible-gambling .subsection h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffb366;
    margin: 25px 0 18px 0;
    padding-left: 20px;
    position: relative;
}

.policy-content.responsible-gambling .subsection h4::before {
    content: "•";
    color: #ff6b35;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.policy-content.responsible-gambling .subsection h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b35;
    margin: 20px 0 12px 0;
}

.policy-content.responsible-gambling .subsection h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f7931e;
    margin: 18px 0 10px 0;
}

.policy-content.responsible-gambling .subsection p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.policy-content.responsible-gambling .subsection ul,
.policy-content.responsible-gambling .subsection ol {
    margin: 25px 0;
    padding-left: 35px;
}

.policy-content.responsible-gambling .subsection li {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 1rem;
    position: relative;
}

.policy-content.responsible-gambling .subsection ul li::marker {
    color: #ff6b35;
    content: "●";
    font-size: 1.2rem;
}

.policy-content.responsible-gambling .subsection ol li::marker {
    color: #ff6b35;
    font-weight: 700;
}

.policy-content.responsible-gambling .subsection strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Contact Information Special Styling */
.policy-content.responsible-gambling .contact-info {
    background: rgba(255, 107, 53, 0.12);
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
    border: 2px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.policy-content.responsible-gambling .contact-info h4 {
    color: #ff6b35;
    margin-bottom: 25px;
    text-align: center;
    padding-left: 0;
    font-size: 1.4rem;
}

.policy-content.responsible-gambling .contact-info h4::before {
    content: "📞";
    margin-right: 12px;
    font-size: 1.3rem;
}

.policy-content.responsible-gambling .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-content.responsible-gambling .contact-info li {
    background: rgba(255, 255, 255, 0.08);
    padding: 18px 25px;
    margin: 12px 0;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.policy-content.responsible-gambling .contact-info li:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.policy-content.responsible-gambling .contact-info li strong {
    color: #ff6b35;
    margin-right: 10px;
    min-width: 100px;
}

/* Emergency Contact Section */
.policy-content.responsible-gambling .emergency-contact {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 2px solid #ff6b35;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.policy-content.responsible-gambling .emergency-contact p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.policy-content.responsible-gambling .emergency-contact p:last-child {
    margin-bottom: 0;
}

.policy-content.responsible-gambling .emergency-contact strong {
    color: #ff6b35;
    font-weight: 700;
}

/* Policy Commitment Section */
.policy-content.responsible-gambling .policy-commitment {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 20px;
    padding: 45px;
    margin-top: 50px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.policy-content.responsible-gambling .policy-commitment h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 30px;
    border-bottom: none;
    padding-bottom: 0;
    line-height: 1.3;
}

.policy-content.responsible-gambling .policy-commitment h2::before {
    content: "🛡️";
    margin-right: 15px;
    font-size: 2rem;
}

.policy-content.responsible-gambling .policy-commitment p {
    color: #cccccc;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Conclusion Section */
.policy-content.responsible-gambling .conclusion {
    background: rgba(255, 107, 53, 0.08);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 0;
    border: 2px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(15px);
    overflow: hidden;
}

/* Responsive Design for Responsible Gambling Policy */
@media (max-width: 1024px) {
    .policy-content.responsible-gambling {
        max-width: 100%;
        padding: 0 25px;
    }

    .policy-content.responsible-gambling .policy-section {
        padding: 35px 30px;
    }

    .policy-content.responsible-gambling .subsection {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .policy-content.responsible-gambling {
        padding: 0 20px;
    }

    .policy-content.responsible-gambling .policy-header h1 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .policy-content.responsible-gambling .policy-meta {
        padding: 20px;
    }

    .policy-content.responsible-gambling .policy-section {
        padding: 30px 25px;
        margin-bottom: 30px;
    }

    .policy-content.responsible-gambling .policy-section h2 {
        font-size: 1.7rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .policy-content.responsible-gambling .subsection {
        padding: 20px;
        margin: 25px 0;
    }

    .policy-content.responsible-gambling .subsection h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .policy-content.responsible-gambling .subsection h4 {
        font-size: 1.2rem;
        margin: 20px 0 15px 0;
    }

    .policy-content.responsible-gambling .contact-info {
        padding: 25px 20px;
    }

    .policy-content.responsible-gambling .contact-info li {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .policy-content.responsible-gambling .contact-info li strong {
        margin-bottom: 5px;
        min-width: auto;
    }

    .policy-content.responsible-gambling .policy-commitment {
        padding: 35px 25px;
    }

    .policy-content.responsible-gambling .policy-commitment h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .policy-content.responsible-gambling .policy-header h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .policy-content.responsible-gambling .policy-meta {
        padding: 18px;
    }

    .policy-content.responsible-gambling .policy-meta p {
        font-size: 0.95rem;
    }

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

    .policy-content.responsible-gambling .policy-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .policy-content.responsible-gambling .policy-section h2::before {
        font-size: 1.4rem;
        margin-right: 10px;
    }

    .policy-content.responsible-gambling .subsection {
        padding: 18px;
        margin: 20px 0;
    }

    .policy-content.responsible-gambling .subsection h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .policy-content.responsible-gambling .subsection h4 {
        font-size: 1.1rem;
        margin: 18px 0 12px 0;
    }

    .policy-content.responsible-gambling .subsection h5 {
        font-size: 1.05rem;
    }

    .policy-content.responsible-gambling .subsection p,
    .policy-content.responsible-gambling .subsection li {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .policy-content.responsible-gambling .subsection ul,
    .policy-content.responsible-gambling .subsection ol {
        padding-left: 30px;
        margin: 20px 0;
    }

    .policy-content.responsible-gambling .contact-info {
        padding: 20px 18px;
    }

    .policy-content.responsible-gambling .contact-info h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .policy-content.responsible-gambling .contact-info li {
        padding: 12px 18px;
        margin: 10px 0;
        font-size: 0.95rem;
    }

    .policy-content.responsible-gambling .emergency-contact {
        padding: 25px 20px;
    }

    .policy-content.responsible-gambling .emergency-contact p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .policy-content.responsible-gambling .policy-commitment {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .policy-content.responsible-gambling .policy-commitment h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .policy-content.responsible-gambling .policy-commitment h2::before {
        font-size: 1.5rem;
        margin-right: 10px;
    }

    .policy-content.responsible-gambling .policy-commitment p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}

/* Header Enhancement for Responsible Gambling Policy */
.header.responsible-gambling-page {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.header.responsible-gambling-page .logo span {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffb366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.header.responsible-gambling-page .nav-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.header.responsible-gambling-page .btn {
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.header.responsible-gambling-page .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% {
        background: linear-gradient(135deg, #f7931e, #ffb366);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}