/* Основные стили для Zeus vs Hades сайтов */

/* Стили для кнопок */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.btn-primary {
    background-color: #EAB308;
    color: #1F2937;
    border-color: #EAB308;
    box-shadow: 0 4px 6px rgba(234, 179, 8, 0.25);
}

.btn-primary:hover {
    background-color: #F59E0B;
    border-color: #F59E0B;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #EAB308;
    border-color: #EAB308;
}

.btn-secondary:hover {
    background-color: rgba(234, 179, 8, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(234, 179, 8, 0.15);
}

/* Стили для карточек */
.card {
    background-color: #1F2937;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Стили для таблиц */
.table-compare {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.table-compare th, .table-compare td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #374151;
}

.table-compare th {
    background-color: #111827;
    color: #EAB308;
    font-weight: 600;
}

.table-compare tr:nth-child(even) {
    background-color: #1F2937;
}

.table-compare tr:nth-child(odd) {
    background-color: #111827;
}

.table-compare tr:last-child td {
    border-bottom: none;
}

/* Стили для FAQ */
.faq-item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #1F2937;
}

.faq-question {
    padding: 1rem;
    background-color: #1F2937;
    color: #EAB308;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #D1D5DB;
}

/* Утилиты для текста */
.text-yellow-400 {
    color: #EAB308;
}

.text-gray-300 {
    color: #D1D5DB;
}

.text-gray-400 {
    color: #9CA3AF;
}

.text-gray-500 {
    color: #6B7280;
}

.text-green-500 {
    color: #10B981;
}

/* Анимации */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Медиа запросы для адаптивности */
@media (max-width: 768px) {
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .table-compare {
        font-size: 0.875rem;
    }
    
    .table-compare th, .table-compare td {
        padding: 0.5rem;
    }
}
