/* Slots Brasil - Основные стили */

:root {
    --primary: #00B83C;
    --secondary: #FFD700;
    --accent: #0066CC;
    --background: #F8F9FA;
    --text: #2C3E50;
    --primary-dark: #009F35;
}

/* Tailwind CSS classes будут загружены из CDN */

/* Дополнительные стили */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.cta-button {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    box-shadow: 0 4px 15px rgba(0, 184, 60, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 60, 0.4);
}

/* FAQ анимации */
.faq-answer {
    transition: all 0.3s ease;
}

/* Responsive типографика */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
.prose {
    max-width: none;
    line-height: 1.7;
    color: #374151;
}

.prose h2 {
    color: #00B83C;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #00B83C;
    padding-bottom: 0.5rem;
}

.prose h3 {
    color: #059669;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.prose h3:before {
    content: "▶";
    color: #00B83C;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.prose p {
    margin-bottom: 1.25rem;
    text-align: justify;
}

/* ===== СТИЛИ ТАБЛИЦ ===== */

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.prose table th {
    background: linear-gradient(135deg, #00B83C, #059669);
    color: white;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    font-size: 0.95rem;
}

.prose table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #E5E7EB;
    vertical-align: top;
}

.prose table tr:nth-child(even) {
    background-color: #F9FAFB;
}

.prose table tr:hover {
    background-color: #F0FDF4;
    transition: background-color 0.2s ease;
}

.prose table td strong {
    color: #00B83C;
    font-weight: 600;
}

/* ===== СТИЛИ СПИСКОВ ===== */

.prose ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.prose ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.prose ul li:before {
    content: "🎰";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

.prose ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    counter-reset: list-counter;
}

.prose ol li {
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    counter-increment: list-counter;
    padding-left: 0.5rem;
}

.prose ol li:before {
    content: counter(list-counter);
    position: absolute;
    left: -2rem;
    top: 0;
    background: #00B83C;
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== БЛОКИ ПРЕИМУЩЕСТВ/НЕДОСТАТКОВ ===== */

.prose ul li:has(strong:first-child) {
    background: #F0FDF4;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #00B83C;
}

.prose ul li:has(strong:first-child):before {
    content: "✅";
    top: 1rem;
    left: 1rem;
}

/* Для недостатков */
.prose ul li:has(strong:first-child:contains("❌")):before {
    content: "❌";
}

.prose ul li:has(strong:first-child:contains("❌")) {
    background: #FEF2F2;
    border-left-color: #EF4444;
}

/* ===== CTA БЛОКИ ===== */

.cta-container {
    background: linear-gradient(135deg, #00B83C, #059669);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2.5rem 0;
    box-shadow: 0 10px 25px -5px rgba(0, 184, 60, 0.3);
}

.cta-container a {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-container a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-container p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* ===== ИНФОРМАЦИОННЫЕ БЛОКИ ===== */

.info-box {
    background: #F0F9FF;
    border: 1px solid #0EA5E9;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.info-box:before {
    content: "💡";
    position: absolute;
    top: -10px;
    left: 20px;
    background: #0EA5E9;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.warning-box {
    background: #FFFBEB;
    border: 1px solid #F59E0B;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.warning-box:before {
    content: "⚠️";
    position: absolute;
    top: -10px;
    left: 20px;
    background: #F59E0B;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ===== ЦИТАТЫ И ВЫДЕЛЕНИЯ ===== */

.prose blockquote {
    border-left: 4px solid #00B83C;
    background: #F0FDF4;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    position: relative;
}

.prose blockquote:before {
    content: '"';
    font-size: 4rem;
    color: #00B83C;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: serif;
}

.prose strong {
    color: #00B83C;
    font-weight: 600;
}

.prose em {
    color: #059669;
    font-style: italic;
}

/* ===== АДАПТИВНОСТЬ ===== */

@media (max-width: 768px) {
    .prose table {
        font-size: 0.85rem;
    }
    
    .prose table th,
    .prose table td {
        padding: 0.5rem;
    }
    
    .prose h2 {
        font-size: 1.5rem;
    }
    
    .prose h3 {
        font-size: 1.25rem;
    }
    
    .cta-container {
        padding: 1.5rem;
    }
    
    .cta-container a {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== СПЕЦИАЛЬНЫЕ ЭЛЕМЕНТЫ ДЛЯ СЛОТОВ ===== */

.slot-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.slot-rating .stars {
    color: #F59E0B;
    font-size: 1.2rem;
}

.slot-rating .score {
    background: #00B83C;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.rtp-badge {
    background: linear-gradient(135deg, #00B83C, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin: 0.5rem 0;
}

.volatility-low {
    background: #10B981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.volatility-medium {
    background: #F59E0B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.volatility-high {
    background: #EF4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== АНИМАЦИИ ===== */

.prose table tr {
    transition: all 0.2s ease;
}

.prose h2 {
    transition: color 0.3s ease;
}

.prose h2:hover {
    color: #059669;
}

.prose a {
    color: #00B83C;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.prose a:hover {
    border-bottom-color: #00B83C;
    color: #059669;
}

/* ===== ПЕЧАТЬ ===== */

@media print {
    .cta-container {
        display: none;
    }
    
    .prose {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .prose table {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .prose h2 {
        color: #000;
        border-bottom: 2px solid #000;
    }
}