/* 1xSlots Casino - Professional CSS */
/* Официальный стиль 2026 */

/* === БАЗОВЫЕ СТИЛИ === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Цвета официального сайта */
    --primary-bg: #0a0e27;
    --secondary-bg: #151b3d;
    --accent-cyan: #00d4ff;
    --accent-purple: #7b2cbf;
    --accent-gold: #ffd700;
    --text-primary: #ffffff;
    --text-secondary: #b8c1e8;
    --success-green: #00ff88;
    --warning-orange: #ff9500;
    
    /* Шрифты */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Тени */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-gold: 0 0 20px rgba(255, 215, 0, 0.5);
}

body {
    font-family: var(--font-main);
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* === HEADER === */
.header {
    background: var(--secondary-bg);
    border-bottom: 2px solid var(--accent-cyan);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(var(--glow-cyan));
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav a:hover {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

/* === КНОПКИ === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-cyan);
}

.btn-login:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg);
    box-shadow: var(--glow-cyan);
}

.btn-register {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--glow-cyan);
}

.btn-download {
    background: linear-gradient(135deg, var(--accent-gold), #ff9500);
    color: var(--primary-bg);
    font-size: 18px;
    padding: 16px 40px;
    box-shadow: var(--glow-gold);
    animation: pulse 2s infinite;
}

.btn-download:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--glow-gold); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

.btn-icon {
    font-size: 22px;
}

/* === HERO SECTION === */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.feature-badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--accent-cyan);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* === SECTIONS === */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 50px;
}

/* === GAMES SECTION === */
.games-section {
    background: var(--secondary-bg);
}

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

.game-card {
    background: var(--primary-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-lg), var(--glow-cyan);
}

.game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--text-primary);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--glow-cyan);
    transition: all 0.3s;
}

.btn-play:hover {
    transform: scale(1.1);
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.game-provider {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.game-stats {
    display: flex;
    gap: 10px;
}

.rtp, .volatility {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* === WHY CHOOSE SECTION === */
.why-choose-section {
    background: var(--primary-bg);
}

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

.feature-card {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-lg), var(--glow-cyan);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === SEO CONTENT === */
.seo-content {
    background: var(--secondary-bg);
}

.content-article {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--primary-bg);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.content-article h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--accent-cyan);
}

.content-article h3 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--accent-cyan);
}

.content-article h4 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-primary);
}

.content-article p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.content-intro {
    background: rgba(0, 212, 255, 0.05);
    padding: 30px;
    border-left: 4px solid var(--accent-cyan);
    border-radius: 8px;
    margin-bottom: 40px;
}

.check-list, .vip-benefits, .responsible-gaming, .mirrors-list {
    list-style: none;
    padding-left: 0;
}

.check-list li, .vip-benefits li, .responsible-gaming li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.catalog-item {
    background: var(--secondary-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.catalog-item h4 {
    margin-top: 0;
    color: var(--accent-gold);
}

.catalog-item ul {
    margin-top: 15px;
    padding-left: 20px;
}

.catalog-item li {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.bonus-block {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.1), rgba(0, 212, 255, 0.1));
    padding: 40px;
    border-radius: 20px;
    margin: 30px 0;
    border: 2px solid var(--accent-purple);
}

.bonus-stages {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.stage {
    flex: 1;
    background: var(--secondary-bg);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.stage-number {
    background: linear-gradient(135deg, var(--accent-gold), #ff9500);
    color: var(--primary-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.bonus-terms {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.bonus-terms ul {
    padding-left: 20px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.payment-item {
    background: var(--secondary-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.min-amount {
    display: block;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 10px;
}

.withdrawal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.withdrawal-table th,
.withdrawal-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.withdrawal-table td {
    color: var(--text-secondary);
}

.limits-info, .verification-note, .mirrors-note {
    background: rgba(255, 149, 0, 0.1);
    border-left: 4px solid var(--warning-orange);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.verification-steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.verification-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.verification-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--accent-cyan);
    color: var(--primary-bg);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.app-info {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 44, 191, 0.1));
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
}

.installation-steps {
    background: var(--secondary-bg);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.support-item {
    background: var(--secondary-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.support-item h4 {
    margin-top: 0;
    color: var(--accent-cyan);
}

/* === BONUS SECTION === */
.bonus-section {
    background: linear-gradient(135deg, var(--secondary-bg), var(--primary-bg));
}

.bonus-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.bonus-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.bonus-amount {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold), #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.bonus-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.bonus-conditions-short {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.condition-item {
    background: rgba(0, 212, 255, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.btn-bonus {
    background: linear-gradient(135deg, var(--accent-gold), #ff9500);
    color: var(--primary-bg);
    font-size: 20px;
    padding: 18px 50px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    box-shadow: var(--glow-gold);
    transition: all 0.3s;
}

.btn-bonus:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
}

.bonus-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* === REVIEWS SECTION === */
.reviews-section {
    background: var(--primary-bg);
}

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

.review-card {
    background: var(--secondary-bg);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-lg), var(--glow-cyan);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 14px;
}

.review-rating {
    font-size: 18px;
    white-space: nowrap;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.review-date {
    color: var(--text-secondary);
    font-size: 13px;
    opacity: 0.7;
}

/* === FAQ SECTION === */
.faq-section {
    background: var(--secondary-bg);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--primary-bg);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent-cyan);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.faq-arrow {
    margin-left: auto;
    transition: transform 0.3s;
    color: var(--accent-cyan);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    padding: 0 25px;
}

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

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === FOOTER === */
.footer {
    background: var(--secondary-bg);
    border-top: 2px solid var(--accent-cyan);
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    color: var(--accent-cyan);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
    filter: drop-shadow(var(--glow-cyan));
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
}

.footer-contacts,
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-contacts li,
.footer-links li {
    margin-bottom: 12px;
}

.footer-contacts li {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-warning {
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid var(--warning-orange);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.footer-warning p {
    color: var(--warning-orange);
    font-size: 14px;
    margin: 0;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .hero-wrapper,
    .bonus-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image,
    .bonus-image {
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-grid,
    .payment-methods,
    .support-channels {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-stages {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .content-article {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .btn-download {
        font-size: 16px;
        padding: 14px 30px;
    }
}