/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-purple: #1a0b2e;
    --medium-purple: #2d1b4e;
    --light-purple: #4a2c8c;
    --accent-purple: #7e57c2;
    --text-light: #e2d9f3;
    --text-white: #ffffff;
    --gold: #ffd700;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--dark-purple) 0%, #0d0618 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Хедер */
.header {
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--accent-purple);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo_img {
    height: 40px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header__nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header__nav a:hover {
    color: var(--gold);
}

.header__buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--accent-purple);
    color: var(--text-white);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-purple);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(126, 87, 194, 0.4);
}

/* Главный баннер с размытым фоном */
.hero {
    position: relative;
    margin-top: 80px;
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 70vh;
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
}

/* Псевдоэлемент для размытого фона */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background-image: var(--bg-url, url('https://images.unsplash.com/photo-1519003722824-194d4455a60e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(15px);
    -webkit-filter: blur(15px);
    transform: scale(1.1);
}

/* Слой поверх размытого фона для лучшей читаемости */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 11, 46, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--gold), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.bonus-card {
    background: rgba(126, 87, 194, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 220px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

.bonus-card h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-card p {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Контент */
.content-section {
    background: rgba(45, 27, 78, 0.6);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(126, 87, 194, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.content-section h2 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 2rem;
}

.content-section h3 {
    color: var(--accent-purple);
    margin: 25px 0 15px 0;
    font-size: 1.5rem;
}

.content-section p {
    margin-bottom: 15px;
}

.content-section ul, .content-section ol {
    margin: 15px 0;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(26, 11, 46, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--accent-purple);
}

table th {
    background: var(--medium-purple);
    color: var(--gold);
}

blockquote {
    border-left: 4px solid var(--accent-purple);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    background: rgba(126, 87, 194, 0.1);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Слоты */
.slots-section {
    margin: 50px 0;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.slot-card {
    background: rgba(45, 27, 78, 0.8);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.slot-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(126, 87, 194, 0.3);
    background: rgba(45, 27, 78, 0.9);
}

.slot-card h4 {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.slot-card .rtp {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Футер */
.footer {
    background: var(--dark-purple);
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 1px solid var(--accent-purple);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(126, 87, 194, 0.3);
    color: var(--text-light);
    opacity: 0.8;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .hero {
        margin-top: 70px;
        padding: 60px 0;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .bonus-cards {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 30px 0;
    }

    .bonus-card {
        width: 100%;
        max-width: 300px;
        padding: 20px;
    }

    .bonus-card h3 {
        font-size: 1.5rem;
    }

    .content-section {
        padding: 25px 20px;
    }

    .content-section h2 {
        font-size: 1.7rem;
    }

    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 20px;
        margin-top: 60px;
        min-height: 50vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .header__buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 150px;
    }

    .bonus-card {
        min-width: auto;
        padding: 15px;
    }

    .bonus-card h3 {
        font-size: 1.3rem;
    }

    .content-section {
        padding: 20px 15px;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.3rem;
    }
}

/* Дополнительные медиа-запросы для очень маленьких экранов */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .bonus-card h3 {
        font-size: 1.2rem;
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
}