/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-blue-light);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--accent-blue);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(156, 39, 176, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(156, 39, 176, 0);
    }
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-medium));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    display: block;
}

.logo svg {
    height: 40px;
    width: auto;
    color: var(--text-light);
}

.desktop-nav {
    display: none;
}

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

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    margin-right: 1rem;
    padding: 0.25rem;
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
}

.moon-icon {
    display: none;
}

body.light-theme .sun-icon {
    display: none;
}

body.light-theme .moon-icon {
    display: block;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    padding: 5rem 1.5rem 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 5;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu nav ul li a {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300a8ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-content {
    max-width: 100%;
}

.hero-image {
    display: none;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-blue-light);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature svg {
    flex-shrink: 0;
}

.hero-text {
    margin-top: 2rem;
    font-size: 0.95rem;
}

/* Games Section */
.games-section {
    padding: 3rem 0;
    background-color: var(--bg-primary);
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.game-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.game-image {
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-title {
    padding: 1rem 1rem 0.5rem;
    color: var(--accent-blue);
}

.game-description {
    padding: 0 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.game-meta {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.game-button {
    display: block;
    background-color: var(--accent-purple);
    color: var(--text-light);
    text-align: center;
    padding: 0.75rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.game-button:hover {
    background-color: var(--accent-purple-light);
    color: var(--text-light);
}

.games-content {
    margin-top: 3rem;
}

.games-categories {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Banking Section */
.banking-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    position: relative;
}

.banking-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.methods-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.method-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.method-icon svg {
    margin-bottom: 0.5rem;
}

.method-icon span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.banking-table {
    margin-bottom: 2rem;
    overflow-x: auto;
}

.banking-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.banking-table th, .banking-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.banking-table th {
    background-color: var(--bg-secondary);
    color: var(--accent-blue);
    font-weight: 600;
}

.banking-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Security Section */
.security-section {
    padding: 3rem 0;
    background-color: var(--bg-primary);
}

.security-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.security-certificates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.certificate {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.certificate svg {
    margin-bottom: 0.5rem;
}

.certificate span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.badge svg {
    margin-bottom: 0.5rem;
}

.badge span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.security-list {
    margin-top: 1rem;
}

.security-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.security-list li svg {
    flex-shrink: 0;
}

/* VIP Section */
.vip-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    position: relative;
}

.vip-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.level-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 8px;
    background-color: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    width: 40%;
    background: linear-gradient(to right, var(--accent-blue), var(--accent-purple));
    border-radius: 4px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.vip-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.benefit svg {
    margin-bottom: 1rem;
}

.benefit h4 {
    color: var(--accent-purple);
    margin-bottom: 0.75rem;
}

.reward-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.reward-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.reward-icon svg {
    margin-bottom: 0.5rem;
}

.reward-icon span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.vip-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
}

.vip-cta h3 {
    color: var(--accent-blue);
}

.vip-cta .cta-button {
    margin-top: 1rem;
}

/* Support Section */
.support-section {
    padding: 3rem 0;
    background-color: var(--bg-primary);
}

.support-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.support-channels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.channel {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.channel svg {
    margin-bottom: 1rem;
}

.channel h4 {
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
}

.channel-info {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--accent-blue-light);
}

.faq-section {
    margin-top: 2rem;
}

.faq-list {
    margin-top: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
}

.faq-question h4 {
    margin-bottom: 0;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1rem;
}

.support-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
}

.support-cta h3 {
    color: var(--accent-blue);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.chat-button {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--accent-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.chat-button:hover {
    background-color: var(--accent-blue);
    color: var(--text-light);
}

/* Mobile Section */
.mobile-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    position: relative;
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.device-mockup {
    text-align: center;
    margin-bottom: 2rem;
}

.device-mockup img {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.mobile-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
}

.mobile-cta h3 {
    color: var(--accent-blue);
}

.app-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--accent-purple);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.app-button:hover {
    background-color: var(--accent-purple);
    color: var(--text-light);
}

.app-button svg {
    flex-shrink: 0;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo svg {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-cta {
    background-color: var(--primary-medium);
    padding: 1.5rem;
    border-radius: 8px;
}

.footer-cta h3 {
    color: var(--accent-blue);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.footer-nav-column h4 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.footer-nav-column ul li {
    margin-bottom: 0.5rem;
}

.footer-nav-column ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav-column ul li a:hover {
    color: var(--accent-blue-light);
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.footer-contact h4 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-certificates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--primary-light);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.age-restriction {
    font-weight: 600;
    margin-top: 0.5rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-dark);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--bg-primary);
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin-bottom: 0;
    color: var(--accent-blue);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-body {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

/* Media Queries */
@media (min-width: 576px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .feature {
        width: calc(50% - 0.5rem);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vip-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-channels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .desktop-nav {
        display: block;
    }
    
    .desktop-nav ul {
        display: flex;
        gap: 1.5rem;
    }
    
    .desktop-nav ul li a {
        color: var(--text-light);
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .desktop-nav ul li a:hover {
        color: var(--accent-blue-light);
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .hero-image {
        display: block;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .games-categories {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .banking-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .security-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .vip-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .support-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .mobile-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-main {
        grid-template-columns: 2fr 1fr;
    }
    
    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .hero-section {
        padding: 5rem 0;
    }
    
    .methods-icons {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .security-certificates {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .security-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .vip-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .support-channels {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0;
    }
    
    .hero-content {
        max-width: 50%;
    }
}
.hero-section {
    padding: 3rem 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-grid {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature .icon-check {
    width: 24px;
    height: 24px;
    background-image: url('check-icon.svg');
    /* Замените на свою иконку */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.cta-button {
    display: inline-block;
    background-color: #a64eff;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #9036e0;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

.hero-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}.banking-section {
    padding: 60px 20px;
}

.banking-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.banking-text {
    flex: 1 1 500px;
}

.banking-methods {
    flex: 1 1 400px;
}

.methods-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.method-icon {
    flex: 1 1 140px;
    min-width: 120px;
    max-width: 160px;
    background-color: var(--bg-dark-secondary);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    color: white;
    font-size: 14px;
}

.method-icon svg {
    margin-bottom: 8px;
}

.banking-table {
    overflow-x: auto;
    margin-bottom: 32px;
}

.banking-table table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

.banking-table th,
.banking-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--accent-blue-dark);
}

.banking-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.feature {
    flex: 1 1 160px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-dark-secondary);
    padding: 12px;
    border-radius: 10px;
    color: white;
    font-size: 14px;
}

.feature svg {
    flex-shrink: 0;
}

/* ✅ Media Queries для адаптивности */
@media (max-width: 1024px) {
    .banking-content {
        flex-direction: column;
    }

    .banking-methods {
        width: 100%;
    }

    .banking-text {
        width: 100%;
    }

    .method-icon {
        flex: 1 1 45%;
    }

    .feature {
        flex: 1 1 45%;
    }
}

@media (max-width: 600px) {
    .method-icon {
        flex: 1 1 100%;
    }

    .feature {
        flex: 1 1 100%;
    }

    .section-title,
    .section-subtitle {
        text-align: center;
    }

    .banking-table th,
    .banking-table td {
        font-size: 13px;
    }
}