/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2d2d2d;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header - яркий промо-стиль */
.site-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.site-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 4rem 0;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-content {
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Articles Grid - карточки бонусов */
.articles-grid {
    padding: 3rem 0;
}

.section-title {
    color: #fff;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 3px solid transparent;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: #FF6B35;
}

.card-content {
    padding: 2rem;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #764ba2;
}

.card h3 a {
    color: #764ba2;
    text-decoration: none;
    transition: color 0.3s;
}

.card h3 a:hover {
    color: #FF6B35;
}

.excerpt {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.read-more:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Single Article */
.single-article {
    background: #fff;
    margin: 2rem auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.article-date {
    font-size: 1rem;
    opacity: 0.9;
}

.article-content {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.article-content h2 {
    color: #764ba2;
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    border-left: 5px solid #FF6B35;
    padding-left: 1rem;
}

.article-content h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: #333;
}

.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    color: #333;
}

.article-content strong {
    color: #764ba2;
    font-weight: 700;
}

.article-content em {
    color: #FF6B35;
}

/* List Page */
.list-page {
    background: #fff;
    margin: 2rem auto;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.page-header h1 {
    color: #764ba2;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.list-item {
    border-bottom: 2px solid #f0f0f0;
    padding: 2rem 0;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.list-item h2 a {
    color: #764ba2;
    text-decoration: none;
    transition: color 0.3s;
}

.list-item h2 a:hover {
    color: #FF6B35;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.site-footer p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav {
        gap: 1rem;
    }
}
