/* CASINO PAYMENTS - VERTICAL CARDS LAYOUT */

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

body {
    font-family: 'Sora', sans-serif;
    background: #fafbfc;
    color: #1a1d29;
    line-height: 1.5;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* MINIMAL HEADER */
.minimal-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text {
    font-size: 22px;
    font-weight: 800;
    color: #1a1d29;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #6b7280;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.header-nav-link:hover {
    background: #f9fafb;
    color: #1a1d29;
    text-decoration: none;
}

.nav-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon.crypto-symbol-small {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.icon-btn:hover {
    background: #f9fafb;
    border-color: #00D9FF;
}

.primary-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #00D9FF 0%, #0080FF 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    display: inline-block;
}

.primary-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* TABS SECTION */
.tabs-section {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 70px;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-container::-webkit-scrollbar {
    display: none;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    color: #6b7280;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.tab-item:hover {
    background: #f9fafb;
    color: #1a1d29;
    text-decoration: none;
}

.tab-item.active {
    color: #0080FF;
    border-bottom-color: #0080FF;
    background: linear-gradient(to bottom, rgba(0, 217, 255, 0.05), transparent);
    text-decoration: none;
}

.tab-icon {
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-icon.crypto-icon {
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.tab-label {
    font-size: 15px;
}

.tab-count {
    background: #e5e7eb;
    color: #6b7280;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
}

.tab-item.active .tab-count {
    background: linear-gradient(135deg, #00D9FF, #0080FF);
    color: #fff;
}

/* INTRO BLOCK */
.intro-block {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
    text-align: center;
}

.page-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1a1d29;
}

.highlight-text {
    background: linear-gradient(135deg, #00D9FF 0%, #0080FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* CONTENT WRAPPER */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* VERTICAL GRID */
.vertical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* VERTICAL CARD */
.vertical-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vertical-card:hover {
    border-color: #00D9FF;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15);
}

/* CARD HEADER */
.card-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.casino-avatar {
    width: 70px;
    height: 70px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
}

.casino-avatar img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.avatar-placeholder {
    font-size: 32px;
}

.header-info {
    flex: 1;
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1d29;
}

.rating-pills {
    display: flex;
    gap: 8px;
}

.pill-rating {
    padding: 5px 12px;
    background: linear-gradient(135deg, #00D9FF 0%, #0080FF 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
}

.pill-verified {
    padding: 5px 12px;
    background: #d1fae5;
    color: #065f46;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

/* PAYMENT ICONS */
.payment-icons-row {
    display: flex;
    gap: 10px;
}

.payment-icon {
    width: 45px;
    height: 45px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    cursor: pointer;
}

.payment-icon:hover {
    background: #fff;
    border-color: #00D9FF;
    transform: scale(1.1);
}

/* STATS GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #f9fafb;
    border-radius: 12px;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 18px;
    font-weight: 800;
    color: #1a1d29;
}

.stat-value.success {
    color: #10b981;
}

/* FEATURES CHECK */
.features-check {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features-check li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #d1fae5;
    color: #065f46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* BONUS INLINE */
.bonus-inline {
    padding: 16px 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bonus-icon {
    font-size: 24px;
}

.bonus-text {
    font-size: 15px;
    font-weight: 700;
    color: #78350f;
}

/* CARD FOOTER */
.card-footer {
    display: flex;
    gap: 12px;
}

.action-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
}

.action-btn.primary {
    background: linear-gradient(135deg, #00D9FF 0%, #0080FF 100%);
    color: #fff;
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 217, 255, 0.3);
}

.action-btn.secondary {
    background: #f9fafb;
    color: #1a1d29;
    border-color: #e5e7eb;
}

.action-btn.secondary:hover {
    border-color: #00D9FF;
    background: #fff;
}

/* INFO PANEL */
.info-panel {
    position: sticky;
    top: 180px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 25px;
}

.panel-card.highlight {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    border: none;
    position: relative;
}

.highlight-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 14px;
    background: #fbbf24;
    color: #000;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
}

.panel-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
}

.facts-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.facts-list li {
    font-size: 14px;
    color: #6b7280;
    padding-left: 20px;
    position: relative;
}

.facts-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00D9FF;
    font-weight: 800;
}

.panel-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.panel-btn {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.panel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row span {
    color: #6b7280;
}

.stat-row strong {
    color: #00D9FF;
    font-weight: 800;
}

/* MINIMAL FOOTER */
.minimal-footer {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 30px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-weight: 800;
    font-size: 18px;
    color: #1a1d29;
}

.footer-copy {
    font-size: 14px;
    color: #9ca3af;
}

.footer-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-right a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-right a:hover {
    color: #00D9FF;
}

.age-label {
    padding: 6px 14px;
    background: #dc2626;
    color: #fff;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
}

.footer-copyright-bottom {
    max-width: 1400px;
    margin: 20px auto 0;
    padding: 20px 30px 0;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.footer-copyright-bottom p {
    color: #9ca3af;
    font-size: 12px;
}

/* SEO CONTENT */
.seo-content {
    background: #f9fafb;
    padding: 80px 30px;
    margin-top: 80px;
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-article h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #00D9FF 0%, #0080FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-article h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 30px 0 15px;
    color: #1a1d29;
}

.seo-article p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.seo-article ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.seo-article li {
    padding: 12px 0 12px 30px;
    color: #6b7280;
    line-height: 1.7;
    position: relative;
}

.seo-article li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00D9FF;
    font-weight: 900;
    font-size: 18px;
}

/* COMMON PAGE STYLES */
.page-hero {
    background: linear-gradient(135deg, #00D9FF 0%, #0080FF 100%);
    padding: 80px 40px 60px;
    text-align: center;
    color: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.page-desc {
    font-size: 20px;
    opacity: 0.95;
}

.content-section {
    padding: 60px 0;
    min-height: 500px;
}

/* SECTION TITLES */
.section-title-left {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #1a1d29;
}

.section-title-center {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #00D9FF 0%, #0080FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* SECTION BACKGROUNDS */
.section {
    padding: 80px 0;
}

/* FAQ STYLES */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-acc {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-q {
    padding: 25px 30px;
    font-weight: 800;
    font-size: 18px;
    color: #1a1d29;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-q:hover {
    background: #f9fafb;
}

.faq-a {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #6b7280;
    line-height: 1.7;
}

.faq-item-acc.active .faq-a {
    padding: 0 30px 25px;
    max-height: 500px;
}

/* UTILITY CLASSES */
.section-spacer {
    height: 60px;
}

/* RATING HELPERS */
.rating-inline-sm {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* LOGO PLACEHOLDERS */
.logo-placeholder-sm, .avatar-placeholder {
    background: linear-gradient(135deg, #00D9FF, #0080FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1a1d29;
    border-radius: 3px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu a {
    color: #1a1d29;
    text-decoration: none;
    padding: 15px;
    font-weight: 700;
    border-radius: 8px;
    background: #f9fafb;
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: #e5e7eb;
}

@media (max-width: 768px) {
    .header-nav, .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .tabs-container {
        overflow-x: auto;
    }
    
    .vertical-grid {
        grid-template-columns: 1fr;
    }
    
    .info-panel {
        display: none;
    }
}

/* BANK CARDS PAGE STYLES */
.card-types-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.card-type-badge {
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-type-badge.visa {
    background: #1434CB;
    color: #fff;
}

.card-type-badge.mastercard {
    background: #EB001B;
    color: #fff;
}

.card-type-badge.maestro {
    background: #0099DF;
    color: #fff;
}

.cards-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.advantage-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.advantage-box:hover {
    transform: translateY(-5px);
}

.adv-icon-lg {
    font-size: 64px;
    margin-bottom: 20px;
}

.advantage-box h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1d29;
}

.advantage-box p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

.cards-casinos-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.card-casino-item {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.card-casino-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.casino-main-info {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.casino-logo-card {
    width: 70px;
    height: 70px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.casino-logo-card img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.casino-text-info h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a1d29;
}

.rating-inline-sm {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.cards-accepted {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.card-badge {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
}

.visa-badge {
    background: #e6f0ff;
    color: #1434CB;
}

.mc-badge {
    background: #ffe6eb;
    color: #EB001B;
}

.maestro-badge {
    background: #e6f6ff;
    color: #0099DF;
}

.card-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}

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

.spec-mini small {
    display: block;
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 6px;
}

.spec-mini strong {
    font-size: 16px;
    color: #1a1d29;
}

.btn-visit-card {
    display: block;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s;
    margin-top: 20px;
}

.btn-visit-card:hover {
    transform: scale(1.02);
}

.security-features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.security-feature-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sf-icon {
    font-size: 56px;
    margin-bottom: 15px;
}

.security-feature-box h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1d29;
}

.security-feature-box p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

/* CRYPTO PAGE STYLES */
.crypto-icons-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.crypto-icon {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: 800;
    font-size: 16px;
}

.crypto-icon.more {
    background: rgba(255, 255, 255, 0.15);
}

.info-grid-2col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.info-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-icon {
    font-size: 56px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1d29;
}

.info-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

.crypto-casinos-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.crypto-casino-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.crypto-casino-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}

.rank-badge-crypto {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f7931a, #627eea);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}

.top-choice-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
}

.crypto-casino-body {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.casino-logo-crypto {
    width: 80px;
    height: 80px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo-crypto img {
    max-width: 70px;
    max-height: 70px;
}

.casino-info-crypto h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-num {
    font-weight: 800;
    color: #00D9FF;
}

.crypto-features h4 {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.crypto-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.crypto-badge {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
}

.crypto-badge.btc {
    background: #fef3c7;
    color: #92400e;
}

.crypto-badge.eth {
    background: #e0e7ff;
    color: #3730a3;
}

.crypto-badge.ltc {
    background: #e0f2fe;
    color: #075985;
}

.crypto-badge.usdt {
    background: #d1fae5;
    color: #065f46;
}

.crypto-badge.more {
    background: #f3f4f6;
    color: #6b7280;
}

.crypto-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 25px 0;
    padding: 25px;
    background: #f9fafb;
    border-radius: 12px;
}

.spec {
    text-align: center;
}

.spec small {
    display: block;
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 8px;
}

.spec strong {
    font-size: 16px;
    color: #1a1d29;
    font-weight: 800;
}

.crypto-highlights {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.highlight-item {
    flex: 1;
    padding: 12px;
    background: #d1fae5;
    color: #065f46;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.crypto-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-visit-crypto {
    flex: 1;
    background: linear-gradient(135deg, #f7931a, #627eea);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s;
}

.btn-visit-crypto:hover {
    transform: scale(1.02);
}

.link-review {
    padding: 16px 24px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.link-review:hover {
    border-color: #00D9FF;
    color: #00D9FF;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.crypto-info-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.crypto-symbol {
    font-size: 56px;
    margin-bottom: 15px;
}

.crypto-symbol.btc-color {
    color: #f7931a;
}

.crypto-symbol.eth-color {
    color: #627eea;
}

.crypto-symbol.ltc-color {
    color: #345d9d;
}

.crypto-symbol.usdt-color {
    color: #26a17b;
}

.crypto-info-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.crypto-info-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.crypto-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crypto-stats span {
    display: block;
    font-size: 13px;
    color: #9ca3af;
}

.steps-horizontal {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.step-h {
    flex: 1;
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-h-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00D9FF, #0080FF);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.step-h h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.step-h p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: #00D9FF;
    font-weight: 900;
}

@media (max-width: 1200px) {
    .cards-advantages-grid,
    .info-grid-2col,
    .security-features-list,
    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards-casinos-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cards-advantages-grid,
    .info-grid-2col,
    .security-features-list,
    .crypto-grid,
    .cards-casinos-list {
        grid-template-columns: 1fr;
    }
    
    .card-specs-grid,
    .crypto-specs-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps-horizontal {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .info-panel {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .vertical-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .tabs-container {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .primary-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}
