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

html {
    scroll-behavior: smooth;
}

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

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

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    margin-right: 0.5rem;
    filter: brightness(1.2);
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

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

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

.nav-link:hover {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #000000;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #ffb700 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background-color: #111111;
    border-top: 1px solid #333333;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.active {
    max-height: 400px;
}

.mobile-menu {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #222222;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding-left: 2.5rem;
}

.mobile-cta-btn {
    display: block;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    margin: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-cta-btn:hover {
    background: linear-gradient(135deg, #ffb700 0%, #ffd700 100%);
    transform: translateY(-2px);
}

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

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

    .mobile-nav {
        display: block;
    }

    .container {
        padding: 0 15px;
    }

    .header-content {
        padding: 0.75rem 0;
    }

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

    .logo-subtitle {
        font-size: 0.7rem;
    }
}

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

    .header-content {
        padding: 0.5rem 0;
    }

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

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

/* Additional Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.header {
    animation: fadeInDown 0.6s ease-out;
}

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

/* Active Link State */
.nav-link.active,
.mobile-nav-link.active {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
}

/* Additional Header Styles for Responsible Gambling Policy */
.logo-subtitle {
    display: block;
    font-size: 0.8rem;
    color: #cccccc;
    font-weight: 400;
    margin-top: 0.2rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffb700 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

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

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    list-style: none;
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-item {
    list-style: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #222222;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding-left: 2.5rem;
}

.mobile-nav-link.btn-style {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #000000;
    margin: 1rem 2rem;
    border-radius: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
    font-weight: 700;
}

.mobile-nav-link.btn-style:hover {
    background: linear-gradient(135deg, #ffb700 0%, #ffd700 100%);
    transform: translateY(-2px);
    padding-left: 2rem;
}

/* Main Content Styles */
main {
    padding-top: 0;
}

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

.policy-content {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    max-width: 900px;
    margin: 0 auto;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #333333;
}

.policy-header h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    line-height: 1.2;
}

.policy-contact-info {
    background-color: #222222;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    margin-top: 1.5rem;
}

.policy-contact-info p {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.policy-contact-info li {
    color: #ffffff;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.policy-content section {
    margin-bottom: 3rem;
}

.policy-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #444444;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.policy-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffcc00;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.policy-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffaa00;
    margin-bottom: 0.8rem;
    margin-top: 1rem;
}

.policy-content p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: justify;
}

.policy-content ul {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

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

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

/* Special styling for contact sections */
.rights-contact {
    background-color: #222222;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    margin-top: 2rem;
}

.rights-contact h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.contact-details {
    background-color: #222222;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    margin-top: 1.5rem;
}

.contact-details h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    border-bottom: 1px solid #444444;
    padding-bottom: 0.5rem;
}

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

.contact-details li {
    background-color: #1a1a1a;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border-left: 3px solid #ffd700;
}

/* Policy footer */
.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #333333;
    text-align: center;
}

.policy-dates {
    background-color: #222222;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid #444444;
}

.policy-dates p {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.policy-certification {
    background-color: #1a3d1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #2d5a2d;
    border-left: 4px solid #4CAF50;
}

.policy-certification h4 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.policy-certification p {
    color: #e8f5e8;
    font-style: italic;
    line-height: 1.6;
}

/* Hover effects for interactive elements */
.policy-content section:hover {
    background-color: rgba(255, 215, 0, 0.02);
    border-radius: 8px;
    transition: background-color 0.3s ease;
    padding: 1rem;
    margin: 0 -1rem 3rem -1rem;
}

/* Responsive design for policy content */
@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 0;
    }

    .policy-content {
        padding: 2rem;
        border-radius: 10px;
    }

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

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

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

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

    .policy-contact-info,
    .rights-contact,
    .contact-details {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 1.5rem;
        margin: 0 10px;
    }

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

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

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

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

    .policy-contact-info,
    .rights-contact,
    .contact-details {
        padding: 1rem;
    }

    .policy-content section:hover {
        margin: 0 -0.5rem 2rem -0.5rem;
        padding: 0.5rem;
    }
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-content section {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Responsible Gambling Policy Specific Styles */

/* Content Wrapper */
.content-wrapper {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    max-width: 1000px;
    margin: 2rem auto;
    min-height: calc(100vh - 200px);
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: #cccccc;
    font-size: 0.9rem;
}

.breadcrumb-item::after {
    content: " / ";
    margin: 0 0.5rem;
    color: #666666;
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item.active {
    color: #ffd700;
    font-weight: 500;
}

.breadcrumb-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #333333;
}

.page-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    font-weight: 500;
    margin-bottom: 0;
}

/* Contact Info Box */
.contact-info-box {
    background-color: #222222;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    margin-bottom: 3rem;
}

.contact-info-box h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.contact-item {
    background-color: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.contact-item strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffd700;
}

.contact-item.emergency {
    border-left-color: #ff4444;
    background-color: #2a1a1a;
}

.contact-item.emergency strong {
    color: #ff4444;
}

/* Table of Contents */
.toc {
    background-color: #222222;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444444;
    margin-bottom: 3rem;
}

.toc h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #444444;
    padding-bottom: 1rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 2rem;
}

.toc-list li {
    margin-bottom: 0.8rem;
    break-inside: avoid;
}

.toc-list a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.5rem;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-list a:hover {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
    border-left-color: #ffd700;
    padding-left: 1rem;
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #333333;
    scroll-margin-top: 100px;
}

.content-section h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #444444;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.content-section h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffcc00;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffaa00;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.content-section p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: justify;
}

.content-section ul,
.content-section ol {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

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

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

/* Warning Signs Grid */
.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.warning-category {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffaa00;
}

.warning-category h4 {
    color: #ffaa00;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid #444444;
    padding-bottom: 0.5rem;
}

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

.warning-category li {
    background-color: #1a1a1a;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border-left: 3px solid #ffaa00;
    position: relative;
}

.warning-category li::before {
    content: "⚠️";
    margin-right: 0.5rem;
}

/* Danger Alert */
.danger-alert {
    background: linear-gradient(135deg, #3d1a1a 0%, #2a1a1a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #ff4444;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.2);
}

.danger-alert h4 {
    color: #ff4444;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.danger-alert h4::before {
    content: "🚨";
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.danger-alert ul {
    list-style: none;
    padding: 0;
}

.danger-alert li {
    background-color: rgba(255, 68, 68, 0.1);
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border-left: 3px solid #ff4444;
    color: #ffcccc;
}

.danger-alert li::before {
    content: "⛔";
    margin-right: 0.5rem;
}

/* Health Impact */
.health-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.health-category {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.health-category h4 {
    color: #4CAF50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.health-category h4::before {
    content: "🏥";
    margin-right: 0.5rem;
}

/* Help Sources */
.help-sources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.help-category {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2196F3;
}

.help-category h4 {
    color: #2196F3;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.help-category h4::before {
    content: "📞";
    margin-right: 0.5rem;
}

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

.help-category li {
    background-color: #1a1a1a;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border-left: 3px solid #2196F3;
}

.help-category a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-category a:hover {
    color: #2196F3;
}

/* GU899 Contact */
.gu899-contact {
    background: linear-gradient(135deg, #1a3d1a 0%, #2a2a1a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #4CAF50;
    margin: 2rem 0;
}

.gu899-contact h4 {
    color: #4CAF50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.gu899-contact h4::before {
    content: "🎮";
    margin-right: 0.5rem;
}

/* Important Message */
.important-message {
    background: linear-gradient(135deg, #3d3d1a 0%, #2a2a1a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #ffd700;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.important-message blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #ffd700;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.important-message h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.important-message ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.important-message li {
    background-color: rgba(255, 215, 0, 0.1);
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border-left: 3px solid #ffd700;
}

.important-message li::before {
    content: "⚠️";
    margin-right: 0.5rem;
}

/* Emergency Contacts */
.emergency-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.emergency-category {
    background: linear-gradient(135deg, #3d1a1a 0%, #2a1a1a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #ff4444;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.2);
}

.emergency-category h4 {
    color: #ff4444;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
}

.emergency-category h4::before {
    content: "🆘";
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.emergency-link {
    color: #ff4444 !important;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 68, 68, 0.1);
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.emergency-link:hover {
    background-color: rgba(255, 68, 68, 0.2);
    transform: scale(1.05);
}

/* Policy Footer */
.policy-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #333333;
}

.policy-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-info p {
    background-color: #222222;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #ffd700;
    font-weight: 600;
    margin: 0;
}

.commitment {
    background-color: #1a3d1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #2d5a2d;
    border-left: 4px solid #4CAF50;
    margin-bottom: 2rem;
}

.commitment h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
    text-align: center;
}

.commitment p {
    color: #e8f5e8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.motto {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #4CAF50;
}

.external-link-section {
    text-align: center;
    background-color: #222222;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #444444;
}

.external-link-section a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.external-link-section a:hover {
    color: #ffb700;
}

/* Responsive Design for Responsible Gambling Policy */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 2rem;
        margin: 1rem;
        border-radius: 10px;
    }

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

    .page-subtitle {
        font-size: 1rem;
    }

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

    .toc-list {
        columns: 1;
    }

    .warning-grid,
    .health-impact,
    .help-sources,
    .emergency-contacts {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 1.5rem;
    }

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

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

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

@media (max-width: 480px) {
    .content-wrapper {
        padding: 1.5rem;
        margin: 0.5rem;
    }

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

    .breadcrumb-item {
        font-size: 0.8rem;
    }

    .contact-info-box,
    .toc,
    .content-section {
        padding: 1rem;
    }

    .emergency-link {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
}

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

/* Focus states for accessibility */
.policy-content section:focus-within {
    outline: 2px solid #ffd700;
    outline-offset: 4px;
    border-radius: 8px;
}

/* Print styles */
@media print {
    .policy-section {
        background-color: white;
        color: black;
    }

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

    .policy-header h1,
    .policy-content h2,
    .policy-content h3,
    .policy-content h4 {
        color: black;
        text-shadow: none;
    }

    .policy-contact-info,
    .rights-contact,
    .contact-details,
    .policy-dates,
    .policy-certification {
        background-color: #f5f5f5;
        border: 1px solid black;
    }
}

/* Section Base Styles */
section {
    padding: 4rem 0;
    position: relative;
}

section:nth-child(even) {
    background-color: #111111;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

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

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

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

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

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

.hero-text p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffb700 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-3px);
}

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

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

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

/* Features Section */
.features {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover::before {
    left: 100%;
}

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

.feature-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.feature-list li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.payment-methods {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.payment-number {
    background: #ffd700;
    color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.payment-details {
    flex: 1;
}

.payment-details strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.2rem;
}

.feature-image {
    text-align: center;
    margin-top: 4rem;
}

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

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

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.demo-tab {
    padding: 1rem 2rem;
    background: transparent;
    color: #cccccc;
    border: 2px solid #333333;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-tab:hover,
.demo-tab.active {
    background: #ffd700;
    color: #000000;
    border-color: #ffd700;
    transform: translateY(-2px);
}

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

.demo-game {
    display: none;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #333333;
}

.demo-game.active {
    display: block;
}

/* Slot Machine Demo */
.slot-machine {
    text-align: center;
}

.slot-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.reel {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border: 3px solid #ffd700;
    border-radius: 10px;
    padding: 1rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.slot-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.spin-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.spin-btn:hover {
    background: linear-gradient(135deg, #ffb700 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.slot-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Baccarat Demo */
.baccarat-table {
    text-align: center;
}

.cards-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.player-area,
.banker-area {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #ffd700;
}

.player-area h4,
.banker-area h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cards {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.card {
    background: #ffffff;
    color: #000000;
    width: 60px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid #ddd;
}

.score {
    color: #ffd700;
    font-weight: 600;
}

.betting-area {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.bet-btn {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.bet-btn:hover,
.bet-btn.active {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
}

.baccarat-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.deal-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.deal-btn:hover {
    background: linear-gradient(135deg, #ffb700 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.baccarat-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Football Betting Demo */
.football-betting {
    text-align: center;
}

.match-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.team img {
    border-radius: 50%;
    border: 2px solid #ffd700;
}

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

.vs {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: bold;
}

.betting-options {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bet-option {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #444444;
}

.bet-option span {
    color: #ffd700;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.odds {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.odds-btn {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 80px;
}

.odds-btn:hover,
.odds-btn.active {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
}

.football-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.place-bet-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.place-bet-btn:hover {
    background: linear-gradient(135deg, #ffb700 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.football-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slots Section */
.slots-section {
    padding: 6rem 0;
}

.slots-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.slots-section > p {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.slot-providers,
.slot-tips {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #333333;
}

.slot-providers h3,
.slot-tips h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.slot-providers p,
.slot-tips p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.providers-list {
    display: grid;
    gap: 1rem;
}

.provider-item {
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
    color: #cccccc;
    transition: all 0.3s ease;
}

.provider-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

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

.tips-list {
    color: #cccccc;
    padding-left: 1.5rem;
}

.tips-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tips-list strong {
    color: #ffd700;
}

.slot-promotions {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #333333;
    margin-bottom: 3rem;
}

.slot-promotions h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

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

.promo-card {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.promo-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.promo-card h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.promo-card p {
    color: #cccccc;
    line-height: 1.5;
}

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

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

/* Baccarat Section */
.baccarat-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.baccarat-content {
    display: grid;
    gap: 3rem;
}

.baccarat-text h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.baccarat-text p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.baccarat-text h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 700;
}

.baccarat-types {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.baccarat-type {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.baccarat-type:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.baccarat-type h4 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.baccarat-type ul {
    list-style: none;
    padding: 0;
}

.baccarat-type li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.baccarat-type li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.baccarat-type strong {
    color: #ffd700;
}

.baccarat-strategies {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #333333;
    margin-top: 2rem;
}

.baccarat-strategies h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.baccarat-strategies p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.baccarat-strategies ol,
.baccarat-strategies ul {
    color: #cccccc;
    padding-left: 1.5rem;
}

.baccarat-strategies li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.baccarat-strategies strong {
    color: #ffd700;
}

.baccarat-image {
    text-align: center;
    margin-top: 3rem;
}

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

/* Football Section */
.football-section {
    padding: 6rem 0;
}

.football-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.football-section > p {
    color: #cccccc;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.football-leagues {
    display: grid;
    gap: 3rem;
}

.league-category h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.league-category p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.league-group {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.league-group:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.league-group h4 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.league-group ul {
    list-style: none;
    padding: 0;
}

.league-group li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.league-group li::before {
    content: '⚽';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.league-group strong {
    color: #ffd700;
}

.betting-types {
    margin-top: 3rem;
}

.betting-types h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.betting-types p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.betting-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.betting-option {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.betting-option:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.betting-option h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.betting-option ul {
    list-style: none;
    padding: 0;
}

.betting-option li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.betting-option li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.statistics-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #333333;
    margin-top: 3rem;
}

.statistics-section h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.statistics-section p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.statistics-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.statistics-section li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.statistics-section li::before {
    content: '📊';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.statistics-section strong {
    color: #ffd700;
}

.football-image {
    text-align: center;
    margin-top: 3rem;
}

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

/* Promotions Section */
.promotions-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.promotions-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.promotions-section > p {
    color: #cccccc;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.promotion-categories {
    display: grid;
    gap: 4rem;
}

.new-member-bonus,
.weekly-promotions,
.seasonal-promotions,
.vip-program {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #333333;
}

.new-member-bonus h3,
.weekly-promotions h3,
.seasonal-promotions h3,
.vip-program h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.new-member-bonus p,
.weekly-promotions p,
.seasonal-promotions p,
.vip-program p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

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

.bonus-card {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ffd700;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.bonus-card h4 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.bonus-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.bonus-card li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.bonus-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

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

.weekly-promo {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

.weekly-promo:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.weekly-promo h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.weekly-promo li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.weekly-promo li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.seasonal-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.seasonal-list li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.seasonal-list li::before {
    content: '🎉';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.seasonal-list strong {
    color: #ffd700;
}

.vip-tiers h4 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.tier-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tier {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 10px;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

.tier:hover {
    border-color: #ffd700;
    transform: translateX(5px);
}

.tier-number {
    background: #ffd700;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tier-info {
    flex: 1;
    color: #cccccc;
    line-height: 1.5;
}

.tier-info strong {
    color: #ffd700;
}

.vip-benefits h4 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

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

.vip-benefits li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.vip-benefits li::before {
    content: '👑';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.vip-benefits strong {
    color: #ffd700;
}

.promotions-image {
    text-align: center;
    margin-top: 3rem;
}

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

/* Registration Section */
.registration-section {
    padding: 6rem 0;
}

.registration-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.registration-section > p {
    color: #cccccc;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.registration-steps h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.step:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.step-number {
    background: #ffd700;
    color: #000000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-content p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-content ol,
.step-content ul {
    color: #cccccc;
    padding-left: 1.5rem;
}

.step-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.step-content strong {
    color: #ffd700;
}

.step-content a {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.step-content a:hover {
    border-bottom-color: #ffd700;
}

.login-info,
.deposit-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #333333;
    margin-bottom: 3rem;
}

.login-info h3,
.deposit-info h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.login-info p,
.deposit-info p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.login-info ol,
.deposit-info ol,
.deposit-info ul {
    color: #cccccc;
    padding-left: 1.5rem;
}

.login-info li,
.deposit-info li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.login-info strong,
.deposit-info strong {
    color: #ffd700;
}

.deposit-methods {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 2rem;
}

.deposit-methods h4 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.withdrawal-info {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.withdrawal-info h3 {
    color: #ffd700;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.faq-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    gap: 2rem;
}

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

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

.faq-item h3 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.faq-item a {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-item a:hover {
    border-bottom-color: #ffd700;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-content {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #333333;
}

.contact-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: #ffd700;
}

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

.contact-details strong {
    color: #ffd700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.contact-content p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 2rem;
}

.contact-content a {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-content a:hover {
    border-bottom-color: #ffd700;
}

/* Demo Result States */
.demo-result-win {
    background: linear-gradient(135deg, #2d5a2d 0%, #1a3a1a 100%);
    color: #4ade80;
    border: 1px solid #4ade80;
}

.demo-result-lose {
    background: linear-gradient(135deg, #5a2d2d 0%, #3a1a1a 100%);
    color: #f87171;
    border: 1px solid #f87171;
}

.demo-result-tie {
    background: linear-gradient(135deg, #5a5a2d 0%, #3a3a1a 100%);
    color: #fbbf24;
    border: 1px solid #fbbf24;
}

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

    .hero-text h1 {
        font-size: 2.8rem;
    }

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

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

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

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

    .hero {
        padding: 4rem 0;
        min-height: 60vh;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

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

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

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

    .section-header p {
        font-size: 1.1rem;
    }

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

    .feature-card {
        padding: 2rem;
    }

    .demo-tabs {
        flex-direction: column;
        align-items: center;
    }

    .demo-tab {
        width: 100%;
        max-width: 200px;
    }

    .slot-controls,
    .baccarat-controls,
    .football-controls {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .match-info {
        flex-direction: column;
        gap: 1rem;
    }

    .betting-area,
    .odds {
        flex-direction: column;
        align-items: center;
    }

    .betting-options-grid {
        grid-template-columns: 1fr;
    }

    .promotions-grid,
    .bonus-cards,
    .weekly-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }
}

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

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

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

    .section-header p {
        font-size: 1rem;
    }

    .feature-card,
    .slot-providers,
    .slot-tips,
    .new-member-bonus,
    .weekly-promotions,
    .seasonal-promotions,
    .vip-program {
        padding: 1.5rem;
    }

    .demo-game {
        padding: 1.5rem;
    }

    .slot-display {
        gap: 0.5rem;
    }

    .reel {
        padding: 0.8rem;
        min-height: 80px;
    }

    .symbol {
        font-size: 2rem;
    }

    .team img {
        width: 40px;
        height: 40px;
    }

    .team span {
        font-size: 1rem;
    }

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

    .tier-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes spin {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

/* Utility Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

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

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid #333333;
    border-top: 3px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

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

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

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

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

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

.footer-link:hover {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    border-top: 1px solid #333333;
    padding: 1rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 50px;
}

.sticky-btn-text {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    line-height: 1.2;
}

.sticky-btn-login {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #ffb700 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #28a745 0%, #20a542 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #20a542 0%, #28a745 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.sticky-btn-free-credit {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.sticky-btn-free-credit:hover {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

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

/* Add bottom padding to body to prevent content being hidden behind sticky buttons */
body {
    padding-bottom: 80px;
}

/* Responsive Design for Footer and Sticky Buttons */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .sticky-buttons {
        padding: 0.75rem 0;
    }

    .sticky-buttons-container {
        padding: 0 15px;
        gap: 0.75rem;
    }

    .sticky-btn {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
        min-height: 45px;
    }

    .sticky-btn-text {
        font-size: 0.85rem;
    }

    body {
        padding-bottom: 75px;
    }
}

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

    .footer-nav {
        gap: 0.75rem;
    }

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

    .sticky-buttons {
        padding: 0.5rem 0;
    }

    .sticky-buttons-container {
        padding: 0 10px;
        gap: 0.5rem;
    }

    .sticky-btn {
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
        min-height: 40px;
        border-radius: 20px;
    }

    .sticky-btn-text {
        font-size: 0.75rem;
    }

    body {
        padding-bottom: 70px;
    }
}

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

.login-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(145deg, #1a1a1a, #222222);
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.login-container h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

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

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

.btn-login {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Prompt', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-login:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

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

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

.btn-register:hover {
    background-color: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

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

/* Login Page Responsive */
@media (max-width: 768px) {
    .login-container {
        margin: 1rem;
        padding: 2rem;
        max-width: none;
    }

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

    .form-group input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

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

@media (max-width: 480px) {
    .login-section {
        padding: 1rem 0;
        min-height: calc(100vh - 150px);
    }

    .login-container {
        margin: 0.5rem;
        padding: 1.5rem;
    }

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

    .form-group {
        gap: 1.25rem;
    }

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

    .btn-login,
    .btn-register {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

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

.register-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(145deg, #1a1a1a, #222222);
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.register-container h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

.register-form .form-group input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background-color: #1a1a1a;
}

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

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

.register-form .btn-register {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Prompt', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-form .btn-register:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

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

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

.register-form .btn-login:hover {
    background-color: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

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

/* Register Page Responsive */
@media (max-width: 768px) {
    .register-container {
        margin: 1rem;
        padding: 2rem;
        max-width: none;
    }

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

    .register-form .form-group input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

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

@media (max-width: 480px) {
    .register-section {
        padding: 1rem 0;
        min-height: calc(100vh - 150px);
    }

    .register-container {
        margin: 0.5rem;
        padding: 1.5rem;
    }

    .register-container h1 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .register-form .form-group {
        gap: 1.25rem;
    }

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

    .register-form .btn-register,
    .register-form .btn-login {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Promotion Page Specific Styles */

/* Promotion Hero Section */
.promotion-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 6rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.promotion-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.promotion-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.promotion-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.promotion-hero .hero-text p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.promotion-hero .hero-text strong {
    color: #ffd700;
}

.cta-container {
    text-align: center;
    margin: 2rem 0;
}

/* New Member Section */
.new-member-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.new-member-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.promotion-grid {
    margin-bottom: 4rem;
}

.promotion-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

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

.promotion-content h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.promotion-content p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

.promotion-content strong {
    color: #ffd700;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.benefits-list li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: '🎁';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.benefits-list strong {
    color: #ffd700;
}

.bonus-features {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
    margin-top: 3rem;
}

.bonus-features h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.bonus-features p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

.bonus-features strong {
    color: #ffd700;
}

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

.features-grid .feature-card {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #ffd700;
    text-align: center;
    transition: all 0.3s ease;
}

.features-grid .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.features-grid .feature-card p {
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
    font-size: 1rem;
}

.features-grid .feature-card strong {
    color: #ffd700;
}

/* Slot Promotions Section */
.slot-promotions-section {
    padding: 5rem 0;
}

.slot-promotions-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.promotions-content {
    display: grid;
    gap: 3rem;
}

.promotion-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

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

.promotion-block h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.promotion-block p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

.promotion-block strong {
    color: #ffd700;
}

.slot-benefits {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.benefit-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content {
    color: #cccccc;
    line-height: 1.5;
}

.benefit-content strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.2rem;
}

.daily-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.daily-benefits li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.1rem;
}

.daily-benefits li::before {
    content: '🎰';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.daily-benefits strong {
    color: #ffd700;
}

/* Baccarat Promotions Section */
.baccarat-promotions-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.baccarat-promotions-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.baccarat-content {
    display: grid;
    gap: 3rem;
}

.baccarat-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.baccarat-block:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.baccarat-block h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.baccarat-block p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

.baccarat-block strong {
    color: #ffd700;
}

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

.benefit-card {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ffd700;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.benefit-card h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
    font-size: 1rem;
}

.event-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.event-block:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.event-block h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.event-block p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

.event-block strong {
    color: #ffd700;
}

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

.prize-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.prize-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

.prize-amount,
.prize-type {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.2rem;
}

.prize-desc {
    color: #cccccc;
    font-size: 1rem;
}

/* Football Promotions Section */
.football-promotions-section {
    padding: 5rem 0;
}

.football-promotions-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.football-content {
    display: grid;
    gap: 3rem;
}

.sports-betting {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.sports-betting:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.sports-betting h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.sports-betting p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

.sports-betting strong {
    color: #ffd700;
}

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

.sports-card {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ffd700;
    text-align: center;
    transition: all 0.3s ease;
}

.sports-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.sports-card h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.sports-card p {
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
    font-size: 1rem;
}

.tournament-promo {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.tournament-promo:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.tournament-promo h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.tournament-promo p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

.tournament-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.tournament-benefits li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.1rem;
}

.tournament-benefits li::before {
    content: '⚽';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.tournament-benefits strong {
    color: #ffd700;
}

/* How To Section */
.how-to-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.how-to-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.steps-content {
    margin-bottom: 4rem;
}

.steps-content h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

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

.step-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

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

.step-number {
    background: #ffd700;
    color: #000000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.step-content strong {
    color: #ffd700;
}

.security-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
    margin-top: 3rem;
}

.security-info h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.security-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

.security-info strong {
    color: #ffd700;
}

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

.security-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

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

.security-item span {
    color: #cccccc;
    line-height: 1.5;
}

.security-item strong {
    color: #ffd700;
}

/* Monthly Promotions Section */
.monthly-promotions-section {
    padding: 5rem 0;
}

.monthly-promotions-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.monthly-content {
    display: grid;
    gap: 3rem;
}

.monthly-events {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.monthly-events:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.monthly-events h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.monthly-events p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

.monthly-events strong {
    color: #ffd700;
}

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

.prize-card {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ffd700;
    text-align: center;
    transition: all 0.3s ease;
}

.prize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.prize-card h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.prize-card p {
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
    font-size: 1rem;
}

.vip-program {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.vip-program:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.vip-program h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.vip-program p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

.vip-program strong {
    color: #ffd700;
}

.vip-benefits {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.vip-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.vip-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.vip-content strong {
    color: #ffd700;
}

/* FAQ Section for Promotions */
.faq-section .faq-content {
    display: grid;
    gap: 2rem;
}

.faq-section .faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.faq-section .faq-item:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.faq-section .faq-item h3 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.faq-section .faq-item strong {
    color: #ffd700;
}

/* Summary Section */
.summary-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.summary-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.summary-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
    text-align: center;
}

.summary-text {
    margin-bottom: 3rem;
}

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

.summary-text strong {
    color: #ffd700;
}

.contact-info h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-details {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-label {
    color: #ffd700;
    font-weight: 600;
}

.contact-value {
    color: #cccccc;
    font-weight: 500;
}

.final-cta {
    margin-bottom: 2rem;
}

.btn-primary.large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
}

.update-info {
    margin-top: 2rem;
}

.update-info p {
    color: #999999;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Responsive Design for Promotion Page */
@media (max-width: 1024px) {
    .promotion-hero h1 {
        font-size: 2.5rem;
    }

    .promotion-hero .hero-text p {
        font-size: 1.2rem;
    }

    .features-grid,
    .baccarat-benefits,
    .sports-benefits,
    .monthly-prizes {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

    .step-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .promotion-hero {
        padding: 4rem 0 3rem 0;
    }

    .promotion-hero h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .promotion-hero .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .new-member-section,
    .slot-promotions-section,
    .baccarat-promotions-section,
    .football-promotions-section,
    .how-to-section,
    .monthly-promotions-section {
        padding: 4rem 0;
    }

    .new-member-section h2,
    .slot-promotions-section h2,
    .baccarat-promotions-section h2,
    .football-promotions-section h2,
    .how-to-section h2,
    .monthly-promotions-section h2,
    .summary-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .promotion-content,
    .promotion-block,
    .baccarat-block,
    .sports-betting,
    .tournament-promo,
    .monthly-events,
    .vip-program,
    .security-info,
    .summary-content {
        padding: 2rem;
    }

    .promotion-content h3,
    .promotion-block h3,
    .baccarat-block h3,
    .sports-betting h3,
    .tournament-promo h3,
    .monthly-events h3,
    .vip-program h3,
    .security-info h3 {
        font-size: 1.5rem;
    }

    .features-grid,
    .baccarat-benefits,
    .sports-benefits,
    .monthly-prizes,
    .security-features {
        grid-template-columns: 1fr;
    }

    .event-prizes {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .contact-details {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .promotion-hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

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

    .new-member-section,
    .slot-promotions-section,
    .baccarat-promotions-section,
    .football-promotions-section,
    .how-to-section,
    .monthly-promotions-section {
        padding: 3rem 0;
    }

    .new-member-section h2,
    .slot-promotions-section h2,
    .baccarat-promotions-section h2,
    .football-promotions-section h2,
    .how-to-section h2,
    .monthly-promotions-section h2,
    .summary-section h2 {
        font-size: 1.6rem;
    }

    .promotion-content,
    .promotion-block,
    .baccarat-block,
    .sports-betting,
    .tournament-promo,
    .monthly-events,
    .vip-program,
    .security-info,
    .summary-content {
        padding: 1.5rem;
    }

    .promotion-content h3,
    .promotion-block h3,
    .baccarat-block h3,
    .sports-betting h3,
    .tournament-promo h3,
    .monthly-events h3,
    .vip-program h3,
    .security-info h3 {
        font-size: 1.3rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

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

    .benefit-item,
    .security-item,
    .vip-item {
        padding: 1rem;
    }

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