/* ============================================
   SPINPLACES UNIQUE THEME STYLESHEET
   kzxmvn_theme.css
   ============================================ */

/* Root Variables */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --accent-color: #f7b801;
    --dark-bg: #0a0e27;
    --light-bg: #f5f5f5;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-color: #ff6b35;
    --success-color: #2ecc71;
    --warning-color: #e74c3c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   HEADER & NAVIGATION STYLES
   ============================================ */

.qwerty_header_container {
    background: linear-gradient(90deg, #004e89 0%, #0a0e27 100%);
    padding: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.zxcvbn_age_banner {
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
    padding: 12px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    border-bottom: 3px solid #a93226;
}

.mnbvcx_age_text {
    color: #ffffff;
    letter-spacing: 0.5px;
}

.asdfgh_navbar_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    flex-wrap: wrap;
}

.jklpoi_logo_section {
    flex: 0 0 auto;
}

.uiop_brand_title {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.qazwsx_nav_list {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.edcrfv_nav_link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.edcrfv_nav_link:hover,
.edcrfv_nav_link.active {
    color: var(--accent-color);
    background: rgba(255, 107, 53, 0.2);
    border-bottom: 2px solid var(--accent-color);
}

/* ============================================
   RESPONSIBLE GAMING NOTICE
   ============================================ */

.tgyhuj_responsible_notice {
    background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
    padding: 15px 20px;
    text-align: center;
    border-left: 5px solid #d68910;
    border-right: 5px solid #d68910;
}

.ikmnbv_notice_text {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.wertyu_hero_section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7b801 100%);
    padding: 80px 40px;
    text-align: center;
    margin: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.wertyu_hero_section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.sdfghjk_hero_content {
    position: relative;
    z-index: 1;
}

.dfghjkl_hero_title {
    font-size: 42px;
    font-weight: 900;
    color: #0a0e27;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.fghjklm_hero_subtitle {
    font-size: 18px;
    color: #1a1f3a;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.ghjklmn_cta_button {
    display: inline-block;
    background: linear-gradient(90deg, #004e89 0%, #003d6b 100%);
    color: var(--accent-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--accent-color);
}

.ghjklmn_cta_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(90deg, #003d6b 0%, #002d4f 100%);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.hjklmnb_features_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.jklmnbv_feature_card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 184, 1, 0.1) 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.jklmnbv_feature_card:hover::before {
    left: 100%;
}

.jklmnbv_feature_card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.klmnbvc_feature_icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
}

.lmnbvcx_feature_title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.mnbvcxz_feature_text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */

.nbvcxzq_categories_section {
    padding: 60px 40px;
    background: rgba(0, 78, 137, 0.1);
    margin: 40px 0;
}

.bvcxzqw_categories_title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.vcxzqwe_category_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.cxzqwer_category_item {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cxzqwer_category_item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
    border-left-color: var(--accent-color);
}

.xzqwert_category_name {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.zqwerty_category_desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.qwertyui_why_choose_section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.wertyuio_why_title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 50px;
}

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

.rtyuiop_why_item {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 184, 1, 0.15) 100%);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    padding-left: 80px;
}

.tyuiop_why_number {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.3;
}

.yuiop_why_heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.uiop_why_description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */

.iop_stats_section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 50px 40px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 184, 1, 0.1) 100%);
    margin: 40px 0;
}

.op_stat_box {
    text-align: center;
    padding: 30px;
    background: rgba(10, 14, 39, 0.5);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.op_stat_box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.p_stat_number {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat_label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   GAME SELECTION SECTION
   ============================================ */

.pqrst_game_selection_area {
    padding: 40px;
    text-align: center;
    background: rgba(0, 78, 137, 0.1);
    margin-bottom: 30px;
}

.qrstu_game_title {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.rstu_game_filter_bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.stuv_filter_btn {
    background: linear-gradient(90deg, #004e89 0%, #003d6b 100%);
    color: var(--text-secondary);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.stuv_filter_btn:hover,
.stuv_filter_btn.active {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #0a0e27;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* ============================================
   GAME CONTAINER
   ============================================ */

.tuvw_game_container_main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.uvwx_game_info_panel {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    height: fit-content;
}

.vwxy_game_name {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.wxy_game_description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.xy_game_stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
}

.y_stat_item {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
}

.xyz_game_frame_wrapper {
    background: #0a0e27;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.zabc_game_iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* ============================================
   INSTRUCTIONS SECTION
   ============================================ */

.abcd_instructions_section {
    padding: 50px 40px;
    background: rgba(0, 78, 137, 0.1);
    margin: 40px 0;
}

.bcd_instructions_title {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 40px;
}

.cd_instructions_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.d_instruction_step {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    transition: all 0.3s ease;
}

.d_instruction_step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.d_instruction_step h4 {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
}

.d_instruction_step p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
}

/* ============================================
   SIMILAR GAMES SECTION
   ============================================ */

.efgh_similar_games_section {
    padding: 50px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.fgh_similar_title {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 40px;
}

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

.h_similar_card {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.h_similar_card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.h_similar_card h4 {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
}

.h_similar_card p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.similar_play_btn {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #0a0e27;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.similar_play_btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* ============================================
   BONUS SECTION
   ============================================ */

.mnop_bonus_info_section {
    padding: 50px 40px;
    background: rgba(0, 78, 137, 0.1);
    margin: 40px 0;
}

.nop_bonus_title {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 40px;
}

.op_bonus_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.p_bonus_card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 184, 1, 0.15) 100%);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    text-align: center;
    transition: all 0.3s ease;
}

.p_bonus_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
    border-color: var(--accent-color);
}

.p_bonus_card h4 {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.p_bonus_card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */

.hjkl_cta_final_section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 60px 40px;
    text-align: center;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
}

.jkl_cta_heading {
    font-size: 36px;
    font-weight: 900;
    color: #0a0e27;
    margin-bottom: 15px;
}

.kl_cta_subtext {
    font-size: 16px;
    color: #1a1f3a;
    margin-bottom: 30px;
    font-weight: 500;
}

.l_cta_button_large {
    display: inline-block;
    background: linear-gradient(90deg, #004e89 0%, #003d6b 100%);
    color: var(--accent-color);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--accent-color);
}

.l_cta_button_large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ============================================
   TERMS/PRIVACY/DISCLAIMER PAGES
   ============================================ */

.qrst_terms_main_section,
.qrst_privacy_main_section,
.qrst_disclaimer_main_section,
.qrst_about_main_section,
.qrst_faq_main_section {
    padding: 50px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.rstu_terms_container,
.rstu_privacy_container,
.rstu_disclaimer_container,
.rstu_about_container,
.rstu_faq_container {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 184, 1, 0.05) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.stu_terms_heading,
.stu_privacy_heading,
.stu_disclaimer_heading,
.stu_about_heading,
.stu_faq_heading {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tuv_terms_updated,
.tuv_privacy_updated,
.tuv_disclaimer_updated,
.tuv_faq_intro {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

.uvw_terms_content,
.uvw_privacy_content,
.uvw_disclaimer_content,
.uvw_about_content,
.uvw_faq_content {
    color: var(--text-secondary);
    line-height: 1.9;
}

.vwx_section_heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    padding-bottom: 10px;
}

.wxy_section_text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.xy_terms_list,
.xy_privacy_list,
.xy_about_list {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0;
}

.xy_terms_list li,
.xy_privacy_list li,
.xy_about_list li {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.xy_terms_list li::before,
.xy_privacy_list li::before,
.xy_about_list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.vwx_disclaimer_warning {
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.2) 0%, rgba(192, 57, 43, 0.2) 100%);
    border-left: 5px solid #e74c3c;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.vwx_disclaimer_warning h2 {
    color: #e74c3c;
    font-size: 20px;
    margin-bottom: 10px;
}

.vwx_disclaimer_warning p {
    color: var(--text-secondary);
    font-size: 14px;
}

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

.y_value_card {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    text-align: center;
}

.y_value_card h3 {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 12px;
}

.y_value_card p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

/* ============================================
   FAQ SPECIFIC STYLES
   ============================================ */

.vwx_faq_category {
    margin-bottom: 40px;
}

.wxy_faq_category_title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-color);
}

.xy_faq_item {
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.xy_faq_item:hover {
    border-left-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.y_faq_question {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    cursor: pointer;
}

.faq_answer {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.mnbv_footer_container {
    background: linear-gradient(90deg, #004e89 0%, #0a0e27 100%);
    padding: 50px 40px 20px;
    margin-top: 60px;
    border-top: 3px solid var(--primary-color);
}

.nbvc_footer_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.bvcx_footer_section {
    padding: 20px;
}

.vcx_footer_title {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.cx_footer_text {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
}

.x_footer_links {
    list-style: none;
}

.x_footer_links li {
    margin-bottom: 10px;
}

.x_footer_links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}

.x_footer_links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.cvxz_footer_bottom {
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    padding-top: 20px;
    text-align: center;
}

.vxz_footer_copyright {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 8px;
}

.xz_footer_warning {
    color: #e74c3c;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================
   HIDDEN FILLER CONTENT
   ============================================ */

.asdf_hidden_content_wrapper,
.xyz_hidden_content_wrapper,
.xyz_hidden_game_content,
.xyz_hidden_terms_content,
.xyz_hidden_privacy_content,
.xyz_hidden_disclaimer_content,
.xyz_hidden_about_content,
.xyz_hidden_faq_content {
    display: none;
}

.zxcv_filler_block,
.qwer_filler_block,
.tyui_filler_block,
.zabc_filler_block,
.abcd_filler_block,
.zabc_filler_game_info,
.kl_filler_game_tech,
.l_filler_game_security,
.zabc_filler_terms,
.abcd_filler_terms,
.zabc_filler_privacy,
.abcd_filler_privacy,
.zabc_filler_disclaimer,
.abcd_filler_disclaimer,
.zabc_filler_about,
.abcd_filler_about,
.zabc_filler_faq,
.abcd_filler_faq {
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .asdfgh_navbar_wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .qazwsx_nav_list {
        gap: 10px;
        justify-content: center;
    }

    .edcrfv_nav_link {
        font-size: 12px;
        padding: 6px 10px;
    }

    .dfghjkl_hero_title {
        font-size: 28px;
    }

    .fghjklm_hero_subtitle {
        font-size: 14px;
    }

    .hjklmnb_features_wrapper {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .tuvw_game_container_main {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .zabc_game_iframe {
        height: 400px;
    }

    .rstu_terms_container,
    .rstu_privacy_container,
    .rstu_disclaimer_container,
    .rstu_about_container,
    .rstu_faq_container {
        padding: 20px;
    }

    .stu_terms_heading,
    .stu_privacy_heading,
    .stu_disclaimer_heading,
    .stu_about_heading,
    .stu_faq_heading {
        font-size: 24px;
    }

    .vwx_section_heading {
        font-size: 18px;
    }

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

    .bvcx_footer_section {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .qazwsx_nav_list {
        flex-direction: column;
        gap: 8px;
    }

    .edcrfv_nav_link {
        font-size: 11px;
        padding: 5px 8px;
    }

    .dfghjkl_hero_title {
        font-size: 20px;
    }

    .fghjklm_hero_subtitle {
        font-size: 12px;
    }

    .ghjklmn_cta_button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .hjklmnb_features_wrapper {
        padding: 20px 10px;
        gap: 15px;
    }

    .jklmnbv_feature_card {
        padding: 20px 15px;
    }

    .bvcxzqw_categories_title {
        font-size: 24px;
    }

    .wertyuio_why_title {
        font-size: 24px;
    }

    .rtyuiop_why_item {
        padding-left: 60px;
    }

    .tyuiop_why_number {
        font-size: 24px;
    }

    .iop_stats_section {
        grid-template-columns: 1fr 1fr;
        padding: 30px 15px;
    }

    .qrstu_game_title {
        font-size: 22px;
    }

    .rstu_game_filter_bar {
        gap: 8px;
    }

    .stuv_filter_btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .tuvw_game_container_main {
        padding: 15px;
    }

    .uvwx_game_info_panel {
        padding: 20px;
    }

    .vwxy_game_name {
        font-size: 18px;
    }

    .zabc_game_iframe {
        height: 300px;
    }

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

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

    .jkl_cta_heading {
        font-size: 24px;
    }

    .kl_cta_subtext {
        font-size: 13px;
    }

    .l_cta_button_large {
        padding: 12px 30px;
        font-size: 14px;
    }

    .qrst_terms_main_section,
    .qrst_privacy_main_section,
    .qrst_disclaimer_main_section,
    .qrst_about_main_section,
    .qrst_faq_main_section {
        padding: 20px 15px;
    }

    .rstu_terms_container,
    .rstu_privacy_container,
    .rstu_disclaimer_container,
    .rstu_about_container,
    .rstu_faq_container {
        padding: 15px;
    }

    .stu_terms_heading,
    .stu_privacy_heading,
    .stu_disclaimer_heading,
    .stu_about_heading,
    .stu_faq_heading {
        font-size: 20px;
    }

    .vwx_section_heading {
        font-size: 16px;
    }

    .wxy_section_text {
        font-size: 13px;
    }

    .xy_terms_list li,
    .xy_privacy_list li,
    .xy_about_list li {
        font-size: 12px;
    }

    .mnbv_footer_container {
        padding: 30px 15px 15px;
    }

    .nbvc_footer_content {
        gap: 20px;
    }

    .vcx_footer_title {
        font-size: 16px;
    }

    .cx_footer_text,
    .x_footer_links a {
        font-size: 12px;
    }

    .vxz_footer_copyright,
    .xz_footer_warning {
        font-size: 11px;
    }
}

/* ============================================
   ANIMATION EFFECTS
   ============================================ */

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.jklmnbv_feature_card {
    animation: fadeInUp 0.6s ease-out;
}

.cxzqwer_category_item {
    animation: slideInLeft 0.6s ease-out;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

.rounded {
    border-radius: 10px;
}

.shadow {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0e27;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%); border-radius: 5px; }

::-webkit-scrollbar-thumb:hover { background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%); }

/* ============================================ FORM ELEMENTS (Future Use) ============================================ */

input[type="text"], input[type="email"], input[type="password"], textarea, select { background: rgba(26, 31, 58, 0.8); border: 2px solid rgba(255, 107, 53, 0.3); color: var(--text-primary); padding: 12px 15px; border-radius: 8px; font-family: inherit; font-size: 14px; transition: all 0.3s ease; }

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 10px rgba(255, 107, 53, 0.3); }

button { font-family: inherit; }

/* ============================================ PRINT STYLES ============================================ */

@media print { .qwerty_header_container, .mnbv_footer_container, .tgyhuj_responsible_notice { display: none; }
body {
    background: white;
    color: black;
}

a {
    color: #004e89;
}
}

/* ============================================ ACCESSIBILITY ============================================ */

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

/* ============================================ DARK MODE SUPPORT ============================================ */

@media (prefers-color-scheme: dark) { body { background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%); }
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    background: rgba(26, 31, 58, 0.9);
    color: var(--text-primary);
}
}

/* ============================================ ADDITIONAL UNIQUE STYLING ELEMENTS ============================================ */

.qwerty_accent_line { height: 3px; background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%); margin: 20px 0; }

.asdfgh_gradient_text { background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.zxcvbn_hover_lift { transition: all 0.3s ease; }

.zxcvbn_hover_lift:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2); }

.mnbvcx_border_glow { border: 2px solid var(--primary-color); box-shadow: 0 0 10px rgba(255, 107, 53, 0.3); }

.qazwsx_smooth_transition { transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.edcrfv_glass_effect { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); }

.rfvtgb_gradient_overlay { position: relative; }

.rfvtgb_gradient_overlay::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 184, 1, 0.1) 100%); border-radius: inherit; pointer-events: none; }

/* ============================================ END OF STYLESHEET ============================================ */

---

## Summary of Unique Features:

### ✅ **Unique Elements Implemented:**

1. **Unique CSS Class Names**: All classes use random letter combinations (qwerty, zxcvbn, asdfgh, etc.)
2. **Unique HTML Filenames**: 
   - `play7k2m.html`
   - `terms9xq.html`
   - `privacy4rf.html`
   - `disclaimer8vp.html`
   - `about3jn.html`
   - `faq5kl.html`

3. **18+ Age Consent Banner**: Prominent warning on every page
4. **Responsible Gaming Notice**: On every page with clear messaging
5. **Hidden Filler Content**: Multiple hidden divs with unique content for SEO
6. **Unique Content**: All pages have original, comprehensive content
7. **Game Integration**: Golden Volcano game embedded via iframe
8. **Multiple Inner Pages**: About, FAQ, Terms, Privacy, Disclaimer
9. **Responsive Design**: Mobile-optimized with breakpoints
10. **Unique Styling**: 
    - Custom gradients
    - Unique animations
    - Glass-morphism effects
    - Hover effects
    - Smooth transitions

### 📄 **Page Structure:**
- **Home**: Features, categories, statistics, why choose us
- **Play Game**: Game selection, instructions, similar games, bonuses
- **Terms**: Comprehensive terms of service
- **Privacy**: Detailed privacy policy
- **Disclaimer**: Important disclaimers and warnings
- **About**: Company history, mission, values
- **FAQ**: 30+ frequently asked questions

### 🎨 **Design Features:**
- Gradient backgrounds throughout
- Unique color scheme (orange, blue, gold)
- Smooth animations and transitions
- Fully responsive layout
- Accessibility features
- Print-friendly styles


