/* Arcada Casino - Main Stylesheet */

/* ========================================
   1. RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Golden/Black theme for casino */
    --primary-color: #FFD700;
    --primary-dark: #FFA500;
    --secondary-color: #1a1a1a;
    --accent-color: #FF6B35;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-gray: #f8f8f8;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 40px 0;
    
    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style-position: inside;
}

/* ========================================
   2. LAYOUT & CONTAINERS
   ======================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.arcada-section {
    padding: var(--section-padding);
}

.arcada-section--gray {
    background-color: var(--bg-gray);
}

.arcada-section__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--secondary-color);
}

.arcada-section__description {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.arcada-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.arcada-section__cta {
    text-align: center;
    margin-top: 40px;
}

.arcada-content-block {
    max-width: 900px;
    margin: 0 auto;
}

.arcada-content-block h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--secondary-color);
}

.arcada-content-block h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.arcada-content-block h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.arcada-content-block p {
    margin-bottom: 16px;
}

.arcada-content-block ul,
.arcada-content-block ol {
    margin: 16px 0 16px 20px;
}

.arcada-content-block li {
    margin-bottom: 8px;
}

/* ========================================
   3. HEADER
   ======================================== */

.arcada-header {
    background-color: var(--secondary-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.arcada-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arcada-header__logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-heading);
}

.arcada-nav__list {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
}

.arcada-nav__item a {
    color: #ffffff;
    font-weight: 500;
    transition: var(--transition);
}

.arcada-nav__item a:hover,
.arcada-nav__item--active a {
    color: var(--primary-color);
}

.arcada-header__actions {
    display: flex;
    gap: 12px;
}

.arcada-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.arcada-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition);
}

/* ========================================
   4. MOBILE MENU
   ======================================== */

.arcada-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999;
    overflow-y: auto;
    padding: 80px 20px 40px;
}

.arcada-mobile-menu.active {
    display: block;
}

.arcada-mobile-nav__list {
    list-style: none;
    margin: 0;
}

.arcada-mobile-nav__item {
    margin-bottom: 20px;
}

.arcada-mobile-nav__item a {
    color: #ffffff;
    font-size: 20px;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.arcada-mobile-menu__actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================
   5. BUTTONS
   ======================================== */

.arcada-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    font-size: 16px;
}

.arcada-btn--primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.arcada-btn--primary:hover {
    background-color: var(--primary-dark);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.arcada-btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.arcada-btn--secondary:hover {
    background-color: #ffffff;
    color: var(--secondary-color);
}

.arcada-btn--outline {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.arcada-btn--outline:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.arcada-btn--large {
    padding: 16px 32px;
    font-size: 18px;
}

.arcada-btn--small {
    padding: 8px 16px;
    font-size: 14px;
}

.arcada-btn--block {
    display: block;
    width: 100%;
}

/* ========================================
   6. BREADCRUMBS
   ======================================== */

.arcada-breadcrumbs {
    background-color: var(--bg-gray);
    padding: 12px 0;
}

.arcada-breadcrumbs__list {
    display: flex;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
}

.arcada-breadcrumbs__item {
    color: var(--text-light);
    font-size: 14px;
}

.arcada-breadcrumbs__item:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: var(--border-color);
}

.arcada-breadcrumbs__item a {
    color: var(--text-light);
}

.arcada-breadcrumbs__item a:hover {
    color: var(--primary-color);
}

.arcada-breadcrumbs__item--active {
    color: var(--text-color);
}

/* ========================================
   7. HERO SECTION
   ======================================== */

.arcada-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.arcada-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.arcada-hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.arcada-hero__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.arcada-hero__subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.arcada-hero__features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.arcada-hero__feature {
    text-align: center;
}

.arcada-hero__feature-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.arcada-hero__feature-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

.arcada-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.arcada-hero__trust {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    opacity: 0.8;
}

.arcada-hero--small {
    padding: 60px 0;
}

/* ========================================
   8. CARDS & GRIDS
   ======================================== */

.arcada-advantages__grid,
.arcada-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.arcada-advantage,
.arcada-related-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.arcada-advantage:hover,
.arcada-related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.arcada-advantage__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.arcada-advantage__title,
.arcada-related-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.arcada-advantage__text,
.arcada-related-card__text {
    color: var(--text-light);
    font-size: 15px;
}

/* ========================================
   9. SLOTS GRID
   ======================================== */

.arcada-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.arcada-slot-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.arcada-slot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.arcada-slot-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.arcada-slot-card__image {
    width: 100%;
    height: 180px;
    background-color: var(--bg-gray);
    background-size: cover;
    background-position: center;
}

.arcada-slot-card__content {
    padding: 20px;
}

.arcada-slot-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.arcada-slot-card__provider {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.arcada-slot-card__info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 16px;
}

.arcada-slot-card__rtp {
    color: var(--success-color);
    font-weight: 600;
}

.arcada-slot-card__volatility {
    color: var(--text-light);
}

.arcada-slot-card__actions {
    display: flex;
    gap: 8px;
}

/* ========================================
   10. FAQ
   ======================================== */

.arcada-faq__list {
    max-width: 900px;
    margin: 40px auto 0;
}

.arcada-faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.arcada-faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.arcada-faq-item__question:hover {
    color: var(--primary-color);
}

.arcada-faq-item__icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.arcada-faq-item.active .arcada-faq-item__icon {
    transform: rotate(45deg);
}

.arcada-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.arcada-faq-item.active .arcada-faq-item__answer {
    max-height: 2000px;
    padding: 0 20px 20px;
}

/* ========================================
   11. TABLES
   ======================================== */

.arcada-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.arcada-table thead {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.arcada-table th,
.arcada-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.arcada-table tr:last-child td {
    border-bottom: none;
}

.arcada-table tbody tr:hover {
    background-color: var(--bg-gray);
}

.arcada-table--compact th,
.arcada-table--compact td {
    padding: 12px;
    font-size: 14px;
}

/* Horizontal scroll for mobile */
@media (max-width: 768px) {
    .arcada-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ========================================
   12. ALERTS
   ======================================== */

.arcada-alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 4px solid;
}

.arcada-alert--info {
    background-color: #d1ecf1;
    border-color: var(--info-color);
    color: #0c5460;
}

.arcada-alert--success {
    background-color: #d4edda;
    border-color: var(--success-color);
    color: #155724;
}

.arcada-alert--warning {
    background-color: #fff3cd;
    border-color: var(--warning-color);
    color: #856404;
}

.arcada-alert--danger {
    background-color: #f8d7da;
    border-color: var(--danger-color);
    color: #721c24;
}

/* ========================================
   13. STEPS
   ======================================== */

.arcada-steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.arcada-step {
    text-align: center;
}

.arcada-step__number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.arcada-step__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.arcada-step__text {
    color: var(--text-light);
    font-size: 15px;
}

/* ========================================
   14. FOOTER
   ======================================== */

.arcada-footer {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 60px 0 20px;
}

.arcada-footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.arcada-footer__logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.arcada-footer__text {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.arcada-footer__trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    opacity: 0.7;
}

.arcada-footer__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.arcada-footer__links {
    list-style: none;
}

.arcada-footer__links li {
    margin-bottom: 8px;
}

.arcada-footer__links a {
    color: #ffffff;
    opacity: 0.8;
    font-size: 14px;
}

.arcada-footer__links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.arcada-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

.arcada-footer__copyright {
    margin-bottom: 8px;
}

/* ========================================
   15. 404 PAGE
   ======================================== */

.arcada-404 {
    padding: 100px 0;
    text-align: center;
}

.arcada-404__code {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

.arcada-404__title {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.arcada-404__text {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.arcada-404__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   16. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .arcada-nav {
        display: none;
    }
    
    .arcada-burger {
        display: flex;
    }
    
    .arcada-section__title {
        font-size: 32px;
    }
    
    .arcada-hero__title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .arcada-section {
        padding: var(--section-padding-mobile);
    }
    
    .arcada-hero {
        padding: 60px 0;
    }
    
    .arcada-hero__title {
        font-size: 32px;
    }
    
    .arcada-hero__subtitle {
        font-size: 16px;
    }
    
    .arcada-hero__features {
        flex-direction: column;
        gap: 20px;
    }
    
    .arcada-hero__actions {
        flex-direction: column;
    }
    
    .arcada-section__title {
        font-size: 28px;
    }
    
    .arcada-content-block h2 {
        font-size: 24px;
    }
    
    .arcada-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .arcada-header__actions {
        display: none;
    }
    
    .arcada-404__code {
        font-size: 80px;
    }
    
    .arcada-404__title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .arcada-hero__title {
        font-size: 24px;
    }
    
    .arcada-section__title {
        font-size: 24px;
    }
    
    .arcada-slots-grid {
        grid-template-columns: 1fr;
    }
    
    .arcada-btn--large {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* ========================================
   17. UTILITY CLASSES
   ======================================== */

.arcada-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.arcada-link:hover {
    color: var(--primary-dark);
}

.arcada-link--arrow::after {
    content: " →";
}

/* Additional table wrapper for scroll */
.arcada-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
}

/* ========================================
   18. HOME PAGE - PAYMENTS PREVIEW
   ======================================== */

.arcada-payments-preview {
    text-align: center;
}

.arcada-payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.arcada-payment-method {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.arcada-payment-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.arcada-payment-method__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.arcada-payment-method__text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.arcada-payments-preview__note {
    text-align: center;
    margin-top: 32px;
    color: var(--text-light);
    font-size: 15px;
}

/* ========================================
   19. SLOTS PAGE STYLES
   ======================================== */

/* Hide filters section */
.arcada-slots-filters {
    display: none;
}

.arcada-filters {
    display: none;
}

/* Providers section */
.arcada-providers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.arcada-provider {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.arcada-provider:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.arcada-provider__name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.arcada-provider__info {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.arcada-provider__description {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.arcada-providers-list {
    margin-top: 40px;
    padding: 24px;
    background: var(--bg-gray);
    border-radius: 12px;
}

.arcada-providers-list p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.8;
}

/* Volatility info */
.arcada-volatility-types {
    display: grid;
    gap: 24px;
    margin: 32px 0;
}

.arcada-volatility-type {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.arcada-volatility-type h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.arcada-volatility-type p,
.arcada-volatility-type ul {
    margin-bottom: 12px;
}

/* ========================================
   20. BONUSES PAGE STYLES
   ======================================== */

.arcada-bonus-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.arcada-bonus-hero__badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.arcada-bonus-hero__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.arcada-bonus-hero__description {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.arcada-welcome-bonuses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.arcada-welcome-bonus {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.arcada-welcome-bonus:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.arcada-welcome-bonus__header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.arcada-welcome-bonus__number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.arcada-welcome-bonus__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.arcada-welcome-bonus__amount {
    padding: 24px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}

.arcada-welcome-bonus__features {
    padding: 24px;
    list-style: none;
    margin: 0;
}

.arcada-welcome-bonus__features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-gray);
    font-size: 14px;
}

.arcada-welcome-bonus__features li:last-child {
    border-bottom: none;
}

.arcada-welcome-bonus__example {
    padding: 16px 24px 24px;
    background: var(--bg-gray);
    font-size: 14px;
    margin: 0;
}

/* Bonuses grid */
.arcada-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.arcada-bonus-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.arcada-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.arcada-bonus-card__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.arcada-bonus-card__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.arcada-bonus-card__value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.arcada-bonus-card__description {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.6;
}

.arcada-bonus-card__features {
    list-style: none;
    margin: 0;
}

.arcada-bonus-card__features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-light);
}

/* Tournaments */
.arcada-tournaments {
    display: grid;
    gap: 32px;
    margin-top: 40px;
}

.arcada-tournament {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.arcada-tournament__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.arcada-tournament__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.arcada-tournament__prize {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.arcada-tournament__description {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.6;
}

.arcada-tournament__rules {
    margin-top: 16px;
    padding: 16px;
    background: var(--bg-gray);
    border-radius: 8px;
    font-size: 14px;
}

.arcada-tournament__features {
    list-style: none;
    margin: 16px 0;
}

.arcada-tournament__features li {
    padding: 8px 0;
    font-size: 15px;
}

/* ========================================
   21. ABOUT PAGE STYLES
   ======================================== */

.arcada-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.arcada-principle {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.arcada-principle:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.arcada-principle__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.arcada-principle__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.arcada-principle__text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.arcada-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.arcada-stat {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.arcada-stat__value {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    display: block;
}

.arcada-stat__label {
    font-size: 14px;
    color: var(--secondary-color);
    opacity: 0.8;
    display: block;
}

/* ========================================
   22. PAYMENTS PAGE STYLES
   ======================================== */

.arcada-payment-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.arcada-payment-highlight {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.arcada-payment-highlight:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.arcada-payment-highlight__icon {
    font-size: 40px;
    flex-shrink: 0;
}

.arcada-payment-highlight__content {
    flex: 1;
}

.arcada-payment-highlight__title {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.arcada-payment-highlight__value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.arcada-payment-methods {
    display: grid;
    gap: 32px;
    margin-top: 40px;
}

.arcada-payment-method-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.arcada-payment-method-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.arcada-payment-method-card__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.arcada-payment-method-card__badge {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.arcada-payment-method-card__description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.arcada-methods {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.arcada-method {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
}

.arcada-method__number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.arcada-method__content {
    flex: 1;
}

.arcada-method__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.arcada-method__text {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.arcada-access-methods {
    display: grid;
    gap: 32px;
    margin-top: 40px;
}

.arcada-access-method {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.arcada-access-method__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.arcada-access-method p,
.arcada-access-method ul,
.arcada-access-method ol {
    margin-bottom: 16px;
}

.arcada-problem {
    background: var(--bg-gray);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.arcada-problem h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.arcada-problem p,
.arcada-problem ul,
.arcada-problem ol {
    margin-bottom: 12px;
}

/* ========================================
   23. SUPPORT PAGE STYLES
   ======================================== */

.arcada-contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.arcada-contact-method {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.arcada-contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.arcada-contact-method__icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.arcada-contact-method__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.arcada-contact-method__description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.arcada-contact-method__details {
    text-align: left;
    margin-bottom: 24px;
}

.arcada-contact-method__details p {
    margin-bottom: 8px;
    font-size: 14px;
}

.arcada-support-categories {
    display: grid;
    gap: 32px;
    margin-top: 40px;
}

.arcada-support-category {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.arcada-support-category__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.arcada-support-category__list {
    list-style: none;
    margin: 16px 0;
}

.arcada-support-category__list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-gray);
    font-size: 15px;
    line-height: 1.6;
}

.arcada-support-category__list li:last-child {
    border-bottom: none;
}

.arcada-support-category__list strong {
    color: var(--secondary-color);
}

.arcada-cabinet-sections {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.arcada-cabinet-section {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.arcada-cabinet-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.arcada-cabinet-section ul {
    list-style: none;
    margin: 12px 0;
}

.arcada-cabinet-section ul li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-light);
}

.arcada-verification-docs,
.arcada-verification-doc {
    margin-bottom: 24px;
}

.arcada-verification-doc h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.arcada-vip-levels {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.arcada-vip-level {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.arcada-vip-level:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.arcada-vip-level__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-gray);
}

.arcada-vip-level__name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.arcada-vip-level__requirement {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.arcada-vip-level__benefits {
    list-style: none;
    margin: 0;
}

.arcada-vip-level__benefits li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-color);
    padding-left: 24px;
    position: relative;
}

.arcada-vip-level__benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* ========================================
   24. RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    .arcada-payments-grid,
    .arcada-payment-highlights,
    .arcada-bonuses-grid,
    .arcada-welcome-bonuses,
    .arcada-principles,
    .arcada-stats,
    .arcada-contact-methods {
        grid-template-columns: 1fr;
    }
    
    .arcada-providers {
        grid-template-columns: 1fr;
    }
    
    .arcada-payment-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .arcada-method {
        flex-direction: column;
        text-align: center;
    }
    
    .arcada-bonus-hero__title {
        font-size: 28px;
    }
    
    .arcada-bonus-hero__description {
        font-size: 16px;
    }
}

