:root {
        --primary: #ff9c00; 
        --primary-dark: #e68a00;
        --secondary: #2186c4; 
        --dark: #1a1a2e;
        --light: #f8f9fa;
        --gray: #6c757d;
        --success: #28a745;
        --border: #dee2e6;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        --radius: 8px;
        --transition: all 0.3s ease;
    }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.7;
        color: #333;
        background-color: #fefefe;
        overflow-x: hidden;
    }
    a {
        color: var(--secondary);
        text-decoration: none;
        transition: var(--transition);
    }
    a:hover {
        color: var(--primary);
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: var(--radius);
    }
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .site-header {
        background-color: var(--dark);
        color: white;
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo a {
        font-size: 1.8rem;
        font-weight: 800;
        color: white;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .logo .ow {
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .logo .india {
        color: #ff9933; 
        font-weight: 600;
    }
    .logo .two {
        color: var(--secondary);
        font-weight: 700;
    }
    .main-nav ul {
        display: flex;
        list-style: none;
        gap: 2rem;
    }
    .main-nav a {
        color: white;
        font-weight: 600;
        padding: 0.5rem 0;
        position: relative;
    }
    .main-nav a:hover {
        color: var(--primary);
    }
    .main-nav a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        background: var(--primary);
        left: 0;
        bottom: 0;
        transition: var(--transition);
    }
    .main-nav a:hover::after {
        width: 100%;
    }
    .hamburger {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
    }
    .breadcrumb {
        background-color: #f1f3f5;
        padding: 1rem 0;
        font-size: 0.9rem;
    }
    .breadcrumb ol {
        display: flex;
        list-style: none;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .breadcrumb li:not(:last-child)::after {
        content: '›';
        margin-left: 0.5rem;
        color: var(--gray);
    }
    .breadcrumb a {
        color: var(--gray);
    }
    .breadcrumb a:hover {
        color: var(--primary);
    }
    .search-section {
        background: linear-gradient(135deg, var(--dark) 0%, #2d3047 100%);
        padding: 3rem 0;
        text-align: center;
        color: white;
    }
    .search-section h2 {
        margin-bottom: 1.5rem;
        font-size: 2.2rem;
    }
    .search-form {
        max-width: 700px;
        margin: 0 auto;
        display: flex;
        border-radius: 50px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }
    .search-input {
        flex: 1;
        padding: 1rem 1.5rem;
        border: none;
        font-size: 1.1rem;
    }
    .search-btn {
        background-color: var(--primary);
        color: white;
        border: none;
        padding: 0 2rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }
    .search-btn:hover {
        background-color: var(--primary-dark);
    }
    .main-content {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 2.5rem;
        padding: 2.5rem 0;
    }
    .article-content {
        background: white;
        border-radius: var(--radius);
        padding: 2rem;
        box-shadow: var(--shadow);
    }
    .last-updated {
        font-style: italic;
        color: var(--gray);
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px dashed var(--border);
        text-align: right;
    }
    h1 {
        color: var(--dark);
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        border-left: 5px solid var(--primary);
        padding-left: 1rem;
    }
    h2 {
        color: var(--secondary);
        font-size: 2rem;
        margin: 2.5rem 0 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--border);
    }
    h3 {
        color: var(--dark);
        font-size: 1.6rem;
        margin: 2rem 0 0.8rem;
    }
    h4 {
        color: var(--gray);
        font-size: 1.3rem;
        margin: 1.5rem 0 0.6rem;
    }
    p {
        margin-bottom: 1.2rem;
        text-align: justify;
    }
    .lead {
        font-size: 1.2rem;
        color: var(--dark);
        font-weight: 500;
        background: #f8f9fa;
        padding: 1.5rem;
        border-radius: var(--radius);
        border-left: 4px solid var(--secondary);
        margin-bottom: 2rem;
    }
    .highlight {
        background-color: #fff9e6;
        padding: 1.5rem;
        border-radius: var(--radius);
        border-left: 4px solid var(--primary);
        margin: 1.5rem 0;
    }
    .emoji {
        font-size: 1.2em;
        margin-right: 0.3rem;
    }
    strong {
        color: var(--dark);
        font-weight: 700;
    }
    .img-container {
        margin: 2rem 0;
        position: relative;
    }
    .img-caption {
        text-align: center;
        font-style: italic;
        color: var(--gray);
        margin-top: 0.5rem;
        font-size: 0.95rem;
    }
    .link-list {
        background: #f8f9fa;
        padding: 1.5rem;
        border-radius: var(--radius);
        margin: 2rem 0;
    }
    .link-list h3 {
        margin-top: 0;
    }
    .link-list ul {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 0.8rem;
        margin-top: 1rem;
    }
    .link-list li {
        padding: 0.5rem 0;
        border-bottom: 1px dotted var(--border);
    }
    .link-list a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .link-list a:hover {
        color: var(--primary);
    }
    .sidebar {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .widget {
        background: white;
        border-radius: var(--radius);
        padding: 1.5rem;
        box-shadow: var(--shadow);
    }
    .widget-title {
        color: var(--dark);
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--primary);
    }
    .rating-form, .comment-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .stars {
        display: flex;
        gap: 0.3rem;
        font-size: 1.5rem;
        color: #ddd;
        cursor: pointer;
    }
    .stars .star:hover,
    .stars .star.active {
        color: gold;
    }
    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    input, textarea, select {
        padding: 0.8rem;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        font-family: inherit;
        font-size: 1rem;
    }
    button[type="submit"] {
        background-color: var(--secondary);
        color: white;
        border: none;
        padding: 0.8rem 1.5rem;
        border-radius: var(--radius);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }
    button[type="submit"]:hover {
        background-color: #1a75bb;
    }
    .site-footer {
        background-color: var(--dark);
        color: white;
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }
    .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }
    .footer-links h4 {
        color: var(--primary);
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }
    .footer-links ul {
        list-style: none;
    }
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    .footer-links a {
        color: #ccc;
    }
    .footer-links a:hover {
        color: white;
        padding-left: 5px;
    }
    friend-links {
        display: block;
        background: rgba(255,255,255,0.05);
        padding: 1rem;
        border-radius: var(--radius);
        margin: 1rem 0;
    }
    friend-links a {
        color: #ffcc80;
        margin-right: 1rem;
    }
    .copyright {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        color: #aaa;
        font-size: 0.9rem;
    }
    @media (max-width: 992px) {
        .main-content {
            grid-template-columns: 1fr;
        }
        h1 {
            font-size: 2.4rem;
        }
        h2 {
            font-size: 1.8rem;
        }
    }
    @media (max-width: 768px) {
        .hamburger {
            display: block;
        }
        .main-nav {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 80%;
            height: calc(100vh - 70px);
            background: var(--dark);
            flex-direction: column;
            transition: left 0.4s ease;
            padding: 2rem;
            box-shadow: 5px 0 15px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .main-nav.active {
            left: 0;
        }
        .main-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .header-container {
            padding: 0 15px;
        }
        .search-form {
            flex-direction: column;
            border-radius: var(--radius);
        }
        .search-input, .search-btn {
            border-radius: 0;
            width: 100%;
        }
        .link-list ul {
            grid-template-columns: 1fr;
        }
    }
