/* Специальные стили для страницы win-disclaimer */

/* Стили для заголовка предупреждения */
.warning-header {
    text-align: center;
    margin-bottom: 25px;
}

.warning-header i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.warning-header h2 {
    color: #ff6b6b;
    justify-content: center;
}

.warning-header p {
    color: #b0b0d0;
    margin-top: 10px;
}

/* Стили для секции согласия */
.agreement-section {
    margin: 30px 0;
}

.agreement-section h3 {
    color: #d4c6ff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Группа чекбоксов */
.checkbox-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.checkbox-item:last-child {
    margin-bottom: 0;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: #4169e1;
    cursor: pointer;
}

.checkbox-item label {
    color: #d1d1e9;
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
}

.checkbox-item label strong {
    color: #fff;
}

/* Стили для подвала */
footer {
    text-align: center;
    padding: 25px;
    color: #cdcdcd;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.5s forwards;
}

.footer-note {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #cdcdcd;
}

/* Остальные стили */
.download-btn {
    margin-top: 10px;
    display: inline-flex;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 5px 10px;
    background: linear-gradient(135deg, rgb(65 105 225 / 25%), rgb(66 74 105 / 25%));;
    border-radius: 10px;
    color: #b19df7;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 0px solid rgba(234, 213, 253, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.project-link:hover {
    background: linear-gradient(135deg, rgba(78, 65, 225, 0.428), rgb(66 74 105 / 25%));
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.project-link i {
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: background 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.info-item.visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease;
}

/* Адаптивность для win-disclaimer */
@media (max-width: 768px) {
    .warning-header i {
        font-size: 2.5rem;
    }
    
    .checkbox-item {
        padding: 12px;
        gap: 12px;
    }
    
    .checkbox-item input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
}
