/* CSS стили для лендинга Куш Казино */

:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --success-green: #00ff00;
    --warning-red: #ff4444;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--gradient-dark);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-gold);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-gold);
    color: var(--darker-bg);
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    padding: 12px 24px;
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--darker-bg);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-xlarge {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(circle at center, #2a2a2a 0%, var(--darker-bg) 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.promocode {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    padding: 2px 8px;
    border: 1px solid var(--primary-gold);
    border-radius: 5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.feature {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-gold);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-gold);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonuses,
.registration,
.mirror,
.games,
.faq {
    padding: 80px 0;
}

/* Bonuses Section */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: var(--gradient-dark);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.bonus-amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--success-green);
    margin-bottom: 15px;
}

.bonus-description {
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* Registration Section */
.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--gradient-dark);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.step-number {
    background: var(--gradient-gold);
    color: var(--darker-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h4 {
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.registration-benefits {
    background: var(--gradient-dark);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.registration-benefits h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.registration-benefits ul {
    list-style: none;
}

.registration-benefits li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.registration-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Mirror Section */
.mirror-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.mirror-info h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.mirror-info ul {
    list-style: none;
    margin: 20px 0;
}

.mirror-info li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.mirror-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.mirror-warning {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid var(--warning-red);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.mirror-action {
    background: var(--gradient-dark);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--primary-gold);
}

.mirror-action h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

/* Games Section */
.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--gradient-dark);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.category-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.category-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.category-card ul {
    list-style: none;
    margin: 20px 0;
}

.category-card li {
    padding: 5px 0;
    color: var(--text-light);
}

/* SEO Content */
.seo-content {
    padding: 60px 0;
    background: var(--gradient-dark);
}

.seo-article {
    max-width: 800px;
    margin: 0 auto;
}

.seo-article h2 {
    color: var(--primary-gold);
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.seo-article h3 {
    color: var(--primary-gold);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.seo-article p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* FAQ */
.faq-items {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: var(--gradient-dark);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.faq-item h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: radial-gradient(circle at center, #2a2a2a 0%, var(--darker-bg) 70%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.promocode-banner {
    background: var(--gradient-dark);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--primary-gold);
}

.promocode-banner p {
    margin: 5px 0;
    font-size: 1.1rem;
}

.promocode-banner strong {
    color: var(--primary-gold);
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 40px 0 20px;
    border-top: 2px solid var(--primary-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer h3,
.footer h4 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    padding: 5px 0;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .bonuses-grid,
    .games-categories {
        grid-template-columns: 1fr;
    }
    
    .registration-steps {
        grid-template-columns: 1fr;
    }
    
    .mirror-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .btn-xlarge {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.btn-primary {
    animation: pulse 2s infinite;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}