:root {
    --primary-color: #e6ff00;
    --secondary-color: #222222;
    --text-color: #ffffff;
    --bg-color: #121212;
    --sidebar-bg: #1a1a1a;
    --card-bg: #2a2a2a;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
}

.btn:hover {
    background-color: #ffff66;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.header {
    padding: 20px 0;
    background-color: rgba(18, 18, 18, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-size: 32px;
    font-weight: bold;
    font-style: italic;
}

.nav-links {
    display: flex;
}

.nav-link {
    margin-left: 20px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.main-content {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
}

.content {
    flex: 1;
    min-width: 0;
    padding-right: 30px;
}

.sidebar {
    width: 300px;
    background-color: var(--sidebar-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.sidebar-form {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

.sidebar-links {
    margin-top: 30px;
}

.sidebar-link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    color: #ddd;
    transition: all 0.3s;
}

.sidebar-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.sidebar-link i {
    margin-right: 10px;
    color: var(--primary-color);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/img/banner.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ddd;
}

.section {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-body {
    color: #ddd;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.table th, .table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.table th {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: bold;
}

.table tr:hover {
    background-color: rgba(255,255,255,0.05);
}

.game-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-info {
    padding: 15px;
}

.game-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.game-provider {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

.game-rating {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.provider-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.provider-item {
    background-color: var(--card-bg);
    padding: 15px;
    border-radius: 10px;
    width: calc(25% - 15px);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.provider-item:hover {
    transform: translateY(-5px);
}

.provider-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-name {
    font-weight: bold;
    margin-bottom: 10px;
}

.steps {
    counter-reset: steps;
    margin-bottom: 30px;
}

.step {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.step::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.bonuses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.bonus-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 4px solid var(--primary-color);
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.bonus-description {
    margin-bottom: 20px;
    color: #ddd;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-description {
    color: #ddd;
}

.faq-item {
    margin-bottom: 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 15px 15px;
    color: #ddd;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-color);
}

.footer {
    background-color: var(--secondary-color);
    padding: 50px 0 20px;
    color: #999;
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    width: 23%;
    margin-bottom: 30px;
}

.footer-title {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #999;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 30px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.payment-icon {
    background-color: #333;
    width: 50px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .nav-link {
        margin-left: 0;
        margin-right: 15px;
        margin-bottom: 10px;
    }
    
    .main-content {
        flex-direction: column;
    }
    
    .content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }
    
    .footer-column {
        width: 48%;
    }
    
    .provider-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .provider-item {
        width: 100%;
    }
}
