/**
 * Info/Disclaimer Page Styles
 * Dark theme informational page
 */

/* Page Layout */
.info-page {
    min-height: 100vh;
    padding: 80px 20px 40px;
    background: linear-gradient(135deg, #0a0e17 0%, #151b28 100%);
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.info-header {
    text-align: center;
    margin-bottom: 40px;
}

.info-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.info-subtitle {
    font-size: 1.1rem;
    color: #8892a0;
}

/* Disclaimer Box */
.disclaimer-box {
    background: linear-gradient(135deg, #3d1c1c 0%, #2a1515 100%);
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.disclaimer-box h2 {
    color: #fca5a5;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.disclaimer-box p {
    color: #fecaca;
    line-height: 1.7;
    margin-bottom: 12px;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.disclaimer-box strong {
    color: #ffffff;
}

/* Info Sections */
.info-section {
    background: #1a2233;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 24px;
}

.info-section h2 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #2a3441;
}

.info-section p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 12px;
}

.info-section p:last-child {
    margin-bottom: 0;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background: #0d1117;
    border-radius: 8px;
    padding: 20px;
}

.feature-item h3 {
    color: #4a9eff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Use Cases */
.use-case-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.use-case {
    background: #0d1117;
    border-radius: 8px;
    padding: 16px;
    border-left: 3px solid #4a9eff;
}

.use-case h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 8px;
}

.use-case p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Limitations Section */
.info-section.limitations {
    background: linear-gradient(135deg, #1f2937 0%, #1a2233 100%);
    border-left: 4px solid #f59e0b;
}

.info-section.limitations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section.limitations li {
    color: #d1d5db;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid #2a3441;
}

.info-section.limitations li:last-child {
    border-bottom: none;
}

.info-section.limitations li::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background: #f59e0b;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Legal Section */
.info-section.legal {
    background: #0d1117;
    border: 1px solid #2a3441;
}

.info-section.legal p {
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Contact Section */
.info-section.contact {
    text-align: center;
    background: linear-gradient(135deg, #1a2233 0%, #0d1117 100%);
}

.info-section.contact p {
    color: #8892a0;
}

/* Responsive */
@media (max-width: 768px) {
    .info-header h1 {
        font-size: 2rem;
    }

    .disclaimer-box,
    .info-section {
        padding: 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .use-case-list {
        grid-template-columns: 1fr;
    }
}
