* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2D3748;
    background-color: #F7FAFC;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

:root {
    --primary-color: #ff6600;
    --primary-hover: #ff8533;
    --primary-dark: #e55e03;
    --secondary-color: #244859;
    --text-dark: #000;
    --text-medium: #4A5568;
    --text-light: #718096;
    --text-white: #ffffff;
    --bg-light: #F7FAFC;
    --bg-white: #ffffff;
    --border-color: #E2E8F0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    --container-width: 1290px;
    --container-padding: 1.5rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 15px 30px rgba(0, 0, 0, 0.15);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-hover);
}

strong {
    font-weight: 600;
    color: var(--text-dark);
}

em {
    font-style: italic;
}

.site-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

figure {
    margin: var(--spacing-lg) 0;
}

ul, ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

li {
    margin-bottom: var(--spacing-xs);
    color: #000;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    line-height: 1.5;
}

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.site-header {
    background: var(--secondary-color);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    width: 100%;
}

.site-header-wrap {
    position: relative;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: var(--spacing-md);
}

.site-branding {
    flex-shrink: 0;
    z-index: 2;
}

.site-branding .brand {
    display: block;
    line-height: 0;
}

.site-branding img {
    max-width: 200px;
    height: auto;
    transition: transform var(--transition-normal);
}

.site-branding img:hover {
    transform: scale(1.05);
}

.main-navigation {
    display: none;
    flex: 1;
    justify-content: center;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-menu li {
    margin: 0;
}

.primary-menu a {
    display: flex;
    align-items: center;
    padding: 0.6em 1.2em;
    color: #F7FAFC;
    font-family: var(--primary-nav-font, inherit);
    font-size: 1.125rem;
    font-weight: 700;
    font-style: italic;
    text-decoration: none;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.primary-menu a:hover,
.primary-menu a:focus {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: var(--z-modal);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition-normal);
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    z-index: var(--z-modal);
    transition: right var(--transition-normal);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: -1;
}

.mobile-drawer.active .drawer-overlay {
    opacity: 1;
    visibility: visible;
}

.drawer-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
}

.mobile-drawer.active .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 80px;
}

.drawer-close {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    line-height: 1;
    padding: 0;
    transition: transform var(--transition-fast);
}

.drawer-close:hover {
    transform: rotate(90deg);
}

.mobile-navigation {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-md);
}

.mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-navigation li {
    margin: 0;
}

.mobile-navigation a {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: #F7FAFC;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.mobile-navigation a:hover,
.mobile-navigation a:focus {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

body.menu-open {
    overflow: hidden;
}

@media (min-width: 1025px) {
    .main-navigation {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .site-branding img {
        max-width: 200px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .primary-menu a {
        font-size: 1rem;
        padding: 0.5em 0.8em;
    }
    
    .site-branding img {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .site-header-inner {
        min-height: 70px;
    }
    
    .site-branding img {
        max-width: 160px;
    }
    
    .mobile-drawer {
        max-width: 280px;
    }
    
    .mobile-navigation a {
        font-size: 1rem;
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {
    .site-header-inner {
        min-height: 60px;
        padding: 0 var(--spacing-sm);
    }
    
    .site-branding img {
        max-width: 140px;
    }
    
    .mobile-drawer {
        max-width: 260px;
    }
}

.mobile-menu-toggle:focus,
.drawer-close:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.primary-menu a:focus,
.mobile-navigation a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

html {
    scroll-padding-top: 100px;
}

.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2332 0%, #244859 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(4, 122, 190, 0) 20%, rgb(20, 82, 109) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-spacer {
    height: 100px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
    font-style: italic;
    color: white;
    margin-bottom: var(--spacing-xl);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.site-main {
    flex: 1;
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.content-container {
    max-width: 1500px;
    margin: 0 auto;
}

.entry-content {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.content-section {
    margin-bottom: var(--spacing-xxl);
}

.content-section:last-child {
    margin-bottom: 0;
}

.table-of-contents {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
}

.toc-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.toc-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}

.toc-toggle[aria-expanded="false"] .toc-icon {
    transform: rotate(-90deg);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--spacing-sm);
}

.toc-list li {
    margin: 0;
    position: relative;
    color: var(--text-dark);
    padding-left: var(--spacing-lg);
}

.toc-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.toc-list a {
    color: var(--text-dark);
    font-weight: 500;
    display: block;
    padding: var(--spacing-xs) 0;
    transition: all var(--transition-fast);
}

.toc-list a:hover {
    color: var(--primary-color);
    padding-left: var(--spacing-xs);
}

.page-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--primary-color);
}

.intro-section {
    margin-bottom: var(--spacing-xxl);
}

.featured-image {
    display: block;
    margin: var(--spacing-xl) auto;
    text-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 768px;
    width: 100%;
    background: #f0f0f0;
}

.featured-image img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
}

.content-image {
    display: block;
    margin: var(--spacing-xl) auto;
    text-align: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    width: 100%;
    background: #f0f0f0;
}

.content-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
}

.security-features,
.freespins-list {
    background: #f8f9fa;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.security-features li,
.freespins-list li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid #e9ecef;
}

.security-features li:last-child,
.freespins-list li:last-child {
    border-bottom: none;
}

.highlight-box {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) 0;
    box-shadow: var(--shadow-lg);
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: white;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-sm);
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.highlight-box.success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.info-box,
.bonus-info-box {
    background: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    margin: var(--spacing-lg) 0;
}

.info-box.warning {
    background: #f8d7da;
    border-left-color: var(--danger-color);
}

.warning-box {
    background: #fff3cd;
    border: 2px solid var(--warning-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.warning-box strong {
    color: #856404;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.note {
    background: #e7f3ff;
    border-left: 4px solid #2196F3;
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    color: #004085;
    margin: var(--spacing-lg) 0;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-spacer {
        height: 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .site-main {
        padding: var(--spacing-lg) 0;
    }
    
    .entry-content {
        padding: var(--spacing-lg);
        border-radius: var(--radius-md);
    }
    
    .table-of-contents {
        padding: var(--spacing-md);
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .featured-image {
        margin: var(--spacing-lg) auto;
        border-radius: var(--radius-md);
    }
    
    .featured-image img {
        height: 350px;
    }
    
    .content-image {
        margin: var(--spacing-lg) auto;
    }
    
    .content-image img {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 350px;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-spacer {
        height: 40px;
    }
    
    .entry-content {
        padding: var(--spacing-md);
    }
    
    .content-section {
        margin-bottom: var(--spacing-xl);
    }
    
    .highlight-box,
    .warning-box {
        padding: var(--spacing-md);
    }
    
    .featured-image img {
        height: 250px;
    }
    
    .content-image img {
        max-height: 300px;
    }
}

.payment-table-wrapper,
.crypto-table-wrapper {
    overflow-x: auto;
    margin: var(--spacing-xl) 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.payment-methods-table,
.crypto-table,
.support-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    font-size: 0.9375rem;
}

.payment-methods-table thead,
.crypto-table thead,
.support-table thead {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3a47 100%);
    color: white;
}

.payment-methods-table th,
.crypto-table th,
.support-table th {
    padding: var(--spacing-md);
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.payment-methods-table td,
.crypto-table td,
.support-table td {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.payment-methods-table tbody tr:hover,
.crypto-table tbody tr:hover,
.support-table tbody tr:hover {
    background: #f8f9fa;
}

.payment-methods-table tbody tr:last-child td,
.crypto-table tbody tr:last-child td,
.support-table tbody tr:last-child td {
    border-bottom: none;
}

.payment-table-wrapper::after,
.crypto-table-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
}

.support-table-wrapper {
    overflow-x: auto;
    margin: var(--spacing-lg) 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.support-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.support-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.support-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.vip-level {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border-top: 4px solid var(--primary-color);
}

.vip-level:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.level-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.vip-level strong {
    display: block;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-top: var(--spacing-sm);
}

.games-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.provider-badge {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
}

.provider-badge:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #ffffff 0%, #fff5eb 100%);
}

.mobile-features,
.responsible-gaming-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.feature-card,
.tool-item {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
}

.feature-card:hover,
.tool-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-icon,
.tool-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.feature-card h4,
.tool-item h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.feature-card p,
.tool-item p {
    color: var(--text-medium);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.steps-container {
    display: grid;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.step-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.3);
}

.step-item p {
    margin: 0;
    line-height: 1.6;
}

.cashback-table {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
    border: 2px solid var(--border-color);
}

.cashback-table h4 {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.cashback-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cashback-table li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.cashback-table li:last-child {
    border-bottom: none;
}

.support-section {
    background: #f8f9fa;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) 0;
}

.support-section h3 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 768px) {
    .vip-levels {
        grid-template-columns: 1fr;
    }
    
    .games-stats {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .provider-badge {
        padding: var(--spacing-sm);
        font-size: 0.875rem;
    }
    
    .mobile-features,
    .responsible-gaming-tools {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .payment-methods-table,
    .crypto-table {
        font-size: 0.875rem;
    }
    
    .payment-methods-table th,
    .crypto-table th,
    .payment-methods-table td,
    .crypto-table td {
        padding: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .feature-icon,
    .tool-icon {
        font-size: 2.5rem;
    }
    
    .support-section {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 640px) {
    .payment-methods-table th:nth-child(n+4),
    .payment-methods-table td:nth-child(n+4),
    .crypto-table th:nth-child(n+4),
    .crypto-table td:nth-child(n+4) {
        display: none;
    }
    
    .payment-methods-table::after,
    .crypto-table::after {
        content: "←";
        display: block;
        text-align: center;
        padding: var(--spacing-sm);
        font-size: 0.75rem;
        color: var(--text-light);
        font-style: italic;
    }
}

.faq-container {
    margin: var(--spacing-xl) 0;
}

.faq-item {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    margin: 0;
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.faq-toggle:hover {
    color: var(--primary-color);
    background: rgba(255, 102, 0, 0.05);
}

.faq-toggle span:first-child {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all var(--transition-normal);
    line-height: 1;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    margin: 0;
    color: var(--text-medium);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-toggle {
        padding: var(--spacing-md);
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 var(--spacing-md) var(--spacing-md);
        font-size: 0.9375rem;
    }
}

.site-footer {
    background: var(--secondary-color);
    color: white;
    margin-top: auto;
}

.footer-container {
    width: 100%;
}

.footer-top {
    background: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.copyright {
    margin: 0;
    font-size: 0.9375rem;
    opacity: 0.9;
}

.footer-middle {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.footer-info p {
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
    line-height: 1.6;
}

.disclaimer {
    font-size: 0.875rem;
    color: var(--warning-color);
    font-weight: 600;
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(255, 193, 7, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-md) 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: var(--z-fixed);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.back-to-top:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .faq-toggle {
        padding: var(--spacing-md);
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 var(--spacing-md) var(--spacing-md);
        font-size: 0.9375rem;
    }
    
    .footer-middle {
        padding: var(--spacing-lg) 0;
    }
    
    .footer-info h3 {
        font-size: 1.25rem;
    }
    
    .footer-info p {
        font-size: 0.9375rem;
    }
    
    .footer-links {
        gap: var(--spacing-md);
        font-size: 0.875rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq-toggle {
        padding: var(--spacing-sm);
        font-size: 0.9375rem;
        gap: var(--spacing-sm);
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 0.875rem;
    }
    
    .footer-top,
    .footer-middle {
        padding: var(--spacing-md) 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .disclaimer {
        font-size: 0.8125rem;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
}

@media print {
    .site-header,
    .mobile-drawer,
    .mobile-menu-toggle,
    .back-to-top,
    .hero-cta,
    .toc-toggle,
    .faq-toggle {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: var(--spacing-md) 0;
    }
    
    .entry-content {
        box-shadow: none;
        padding: 0;
    }
    
    .faq-answer {
        max-height: none !important;
    }
    
    a {
        text-decoration: underline;
    }
    
    .highlight-box,
    .warning-box,
    .info-box {
        border: 2px solid #000;
        page-break-inside: avoid;
    }
}

*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-contrast: high) {
    .btn,
    .faq-item,
    .feature-card,
    .tool-item {
        border-width: 3px;
    }
    
    .highlight-box {
        border: 3px solid white;
    }
}

.primary-menu a.active {
    color: var(--primary-color);
    position: relative;
}

.primary-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.mobile-navigation a.active {
    color: var(--primary-color);
    background: rgba(255, 102, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.toc-list a.active {
    color: var(--primary-color);
    font-weight: 700;
    padding-left: var(--spacing-sm);
}

img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img.loaded,
img[loading="eager"] {
    opacity: 1;
}

img[loading="lazy"]:not(.loaded) {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }
}

.hero-cta .btn-primary {
    animation: pulse 2s infinite;
}

[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--text-dark);
    color: white;
    font-size: 0.875rem;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
    z-index: var(--z-tooltip);
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    border: 6px solid transparent;
    border-top-color: var(--text-dark);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
    z-index: var(--z-tooltip);
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    white-space: nowrap;
}

.badge-primary {
    background: var(--primary-color);
    color: white;
}

.badge-success {
    background: var(--success-color);
    color: white;
}

.badge-warning {
    background: var(--warning-color);
    color: var(--text-dark);
}

.badge-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.rating {
    display: inline-flex;
    gap: 0.25rem;
    color: var(--warning-color);
}

.rating-star {
    font-size: 1.25rem;
}

.rating-star.filled {
    color: var(--warning-color);
}

.rating-star.empty {
    color: #e0e0e0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 50px;
    transition: width 0.3s ease;
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin: var(--spacing-xl) 0;
}

.divider-text {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
    color: var(--text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.alert {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
    border-left: 4px solid;
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.alert-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
}

.alert-content {
    flex: 1;
}

.alert-info {
    background: #e7f3ff;
    border-color: #2196F3;
    color: #004085;
}

.alert-success {
    background: #d4edda;
    border-color: var(--success-color);
    color: #155724;
}

.alert-warning {
    background: #fff3cd;
    border-color: var(--warning-color);
    color: #856404;
}

.alert-danger {
    background: #f8d7da;
    border-color: var(--danger-color);
    color: #721c24;
}

.external-icon {
    display: inline-block;
    margin-left: 0.25rem;
    font-size: 0.875em;
    opacity: 0.7;
}

.scroll-indicator {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 102, 0, 0.1);
    z-index: var(--z-sticky);
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    width: 0%;
    transition: width 0.1s ease;
}

::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-light);
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .btn,
    .faq-toggle,
    .mobile-menu-toggle,
    .toc-toggle,
    a {
        min-height: 44px;
        min-width: 44px;
    }
}

.menu-open {
    padding-right: var(--scrollbar-width, 0);
}

.mobile-drawer,
.drawer-content,
.back-to-top,
.faq-answer {
    will-change: transform;
}

img[width][height] {
    height: auto;
}

.feature-card,
.stat-card,
.vip-level,
.provider-badge {
    contain: layout paint;
}

@media (max-width: 360px) {
    :root {
        --container-padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 1440px) {
    :root {
        --container-width: 1400px;
    }
}

@media (min-width: 1920px) {
    :root {
        --container-width: 1600px;
    }
}