/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background: linear-gradient(135deg, #eaeced 0%, #e8f9ef 100%);
    color: #200867;
    line-height: 1.7;
}

.container-hindi {
    max-width: 1100px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 2.2rem;
    color: #1212f5;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 1.5px;
}

.subtitle {
    font-size: 1.3rem;
    color: #2d0c83;
    font-weight: 500;
    margin-top: 10px;
}

.section {
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 25px;
    border-radius: 12px;
    padding: 22px;
    border-left: 6px solid #d80ca9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow-x: scroll;
}

.section h2 {
    color: #200867;
    font-size: 1.5rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.section h3 {
    color: #d80ca9;
    font-size: 1.3rem;
    margin: 16px 0 10px;
}

.section p, .section ul, .section ol {
    font-size: 1.1rem;
    color: #200867;
}

.section ul, .section ol {
    padding-left: 25px;
    margin: 12px 0;
}

.section ul li, .section ol li {
    margin-bottom: 8px;
}

.highlight {
    background: rgba(0, 255, 0, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
}

.note {
    background: rgba(255, 255, 0, 0.2);
    border-left: 5px solid #ffcc00;
    padding: 14px;
    border-radius: 8px;
    margin: 16px 0;
    font-weight: 500;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 1rem;
}

table th, table td {
    border: 1px solid #d80ca9;
    padding: 12px;
    text-align: center;
}

table th {
    background: rgba(216, 12, 169, 0.2);
    color: #200867;
    font-weight: 600;
}

table tr.highlight {
    background: rgba(0, 255, 0, 0.1);
}

/* Responsive */
@media (max-width: 800px) {
    .container-hindi {
        padding: 20px;
        margin: 10px;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 1.1rem;
    }
    .section {
        padding: 18px;
    }
    table {
        font-size: 0.9rem;
    }
    table th, table td {
        padding: 8px;
    }
}