/* style/slot-games.css */\n\n/* Variables for colors */\n:root {\n    --page-bg-color: #0D0E12;\n    --card-bg-color: #17191F;\n    --text-main-color: #FFF3E6;\n    --brand-primary: #FF8C1A;\n    --brand-secondary: #FFA53A;\n    --border-color: #A84F0C;\n    --glow-color: #FFB04D;\n    --deep-orange: #D96800;\n}\n\n.page-slot-games {\n    font-family: Arial, sans-serif;\n    background-color: var(--page-bg-color);\n    color: var(--text-main-color);\n    line-height: 1.6;\n}\n\n/* Base container for content sections */\n.page-slot-games__container {\n    max-width: 1200px;\n    margin: 0 auto;\n    padding: 0 20px;\n    box-sizing: border-box;\n}\n\n/* Section styling */\n.page-slot-games__hero-section,\n.page-slot-games__introduction-section,\n.page-slot-games__types-section,\n.page-slot-games__criteria-section,\n.page-slot-games__promotions-section,\n.page-slot-games__guide-section,\n.page-slot-games__tips-section,\n.page-slot-games__faq-section,\n.page-slot-games__conclusion-section {\n    padding: 60px 0;\n    position: relative;\n    overflow: hidden; /* Ensure content doesn't overflow */\n}\n\n/* Specific section backgrounds */\n.page-slot-games__dark-section {\n    background-color: var(--card-bg-color); /* Using card bg for darker sections */\n}\n\n/* Hero Section */\n.page-slot-games__hero-section {\n    padding: 0;\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n    justify-content: center;\n    text-align: center;\n    min-height: 500px;\n    color: var(--text-main-color);\n    background-color: var(--page-bg-color);\n}\n\n.page-slot-games__hero-image-wrapper {\n    width: 100%;\n    position: relative;\n    padding-bottom: 56.25%; /* 16:9 aspect ratio (for 1920x1080) */\n    overflow: hidden;\n}\n\n.page-slot-games__hero-image {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    filter: brightness(0.7); /* Slightly darken image for text readability, not changing color */\n}\n\n.page-slot-games__hero-content-wrapper {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n    justify-content: center;\n    z-index: 1;\n    padding: 20px;\n    box-sizing: border-box;\n}\n\n.page-slot-games__hero-title {\n    font-size: clamp(2.2rem, 4vw, 3.5rem);\n    font-weight: 700;\n    line-height: 1.2;\n    margin-bottom: 20px;\n    color: var(--text-main-color);\n    max-width: 900px;\n    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);\n}\n\n.page-slot-games__hero-description {\n    font-size: 1.1rem;\n    max-width: 800px;\n    margin-bottom: 30px;\n    color: var(--text-main-color);\n    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);\n}\n\n.page-slot-games__hero-cta-buttons {\n    display: flex;\n    gap: 20px;\n    flex-wrap: wrap;\n    justify-content: center;\n}\n\n/* General button styles */\n.page-slot-games__btn-primary,\n.page-slot-games__btn-secondary {\n    display: inline-block;\n    padding: 15px 30px;\n    border-radius: 8px;\n    text-decoration: none;\n    font-weight: 700;\n    font-size: 1rem;\n    transition: all 0.3s ease;\n    cursor: pointer;\n    text-align: center;\n    box-sizing: border-box;\n    max-width: 100%;\n    white-space: normal;\n    word-wrap: break-word;\n}\n\n.page-slot-games__btn-primary {\n    background: linear-gradient(180deg, var(--brand-secondary) 0%, var(--deep-orange) 100%);\n    color: var(--text-main-color);\n    border: 2px solid transparent;\n}\n\n.page-slot-games__btn-primary:hover {\n    background: linear-gradient(180deg, var(--brand-primary) 0%, var(--deep-orange) 100%);\n    box-shadow: 0 0 15px var(--glow-color);\n}\n\n.page-slot-games__btn-secondary {\n    background-color: transparent;\n    color: var(--text-main-color);\n    border: 2px solid var(--border-color);\n}\n\n.page-slot-games__btn-secondary:hover {\n    background-color: var(--brand-primary);\n    border-color: var(--brand-primary);\n    color: var(--text-main-color);\n    box-shadow: 0 0 10px var(--glow-color);\n}\n\n.page-slot-games__btn-small {\n    padding: 10px 20px;\n    font-size: 0.9rem;\n}\n\n.page-slot-games__btn-large {\n    padding: 18px 35px;\n    font-size: 1.1rem;\n}\n\n.page-slot-games__text-link {\n    color: var(--brand-primary);\n    text-decoration: none;\n    font-weight: 600;\n}\n\n.page-slot-games__text-link:hover {\n    text-decoration: underline;\n    color: var(--brand-secondary);\n}\n\n/* Section Titles */\n.page-slot-games__section-title {\n    font-size: 2.5rem;\n    font-weight: 700;\n    color: var(--brand-primary);\n    text-align: center;\n    margin-bottom: 40px;\n    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);\n}\n\n/* Paragraphs and Lists */\n.page-slot-games p {\n    margin-bottom: 15px;\n    color: var(--text-main-color);\n}\n\n.page-slot-games__introduction-section p {\n    font-size: 1.05rem;\n    line-height: 1.7;\n    max-width: 900px;\n    margin-left: auto;\n    margin-right: auto;\n    text-align: center;\n}