* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
    line-height: 1.7;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    min-height: 100vh;
}
h1, h2, h3, h4 { font-weight: 700; color: #ff9900; margin-bottom: 1rem; }
h1 { font-size: 2.8rem; text-shadow: 0 0 10px rgba(255, 153, 0, 0.3); }
h2 { font-size: 2.2rem; border-left: 5px solid #ff9900; padding-left: 15px; margin-top: 2.5rem; }
h3 { font-size: 1.8rem; color: #ffcc80; margin-top: 2rem; }
p { margin-bottom: 1.5rem; text-align: justify; font-size: 1.1rem; }
a { color: #4fc3f7; text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #ff9900; text-shadow: 0 0 8px rgba(255, 153, 0, 0.5); }
img { max-width: 100%; height: auto; border-radius: 8px; }
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ff9900;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo a {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(to right, #ff9900, #ff3300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: #ff9900;
    cursor: pointer;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
nav a {
    font-size: 1.1rem;
    padding: 8px 15px;
    border-radius: 5px;
}
nav a:hover {
    background: rgba(255, 153, 0, 0.1);
}
.breadcrumb {
    padding: 12px 0;
    font-size: 0.95rem;
    color: #aaa;
    border-bottom: 1px solid #333;
}
.breadcrumb a { color: #aaa; }
.breadcrumb a:hover { color: #ff9900; }
.hero {
    text-align: center;
    padding: 50px 20px;
    background: radial-gradient(circle at center, rgba(255,153,0,0.1) 0%, transparent 70%);
}
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 30px; color: #cccccc; }
.search-box {
    max-width: 600px;
    margin: 30px auto;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #444;
}
.search-box h3 { text-align: center; }
.search-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.search-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #555;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 1rem;
}
.search-form button {
    padding: 15px 25px;
    background: linear-gradient(45deg, #ff9900, #ff5500);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}
.search-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255,153,0,0.5);
}
main { padding: 40px 0; }
.content-section {
    background: rgba(20, 20, 30, 0.7);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 40px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.highlight {
    background: rgba(255,153,0,0.1);
    border-left: 5px solid #ff9900;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}
.image-container {
    margin: 30px 0;
    text-align: center;
}
.image-container img {
    border: 3px solid #ff9900;
    box-shadow: 0 0 25px rgba(255,153,0,0.3);
}
.caption {
    font-style: italic;
    color: #aaa;
    margin-top: 10px;
    font-size: 0.95rem;
}
.interactive-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}
.comment-box, .rating-box {
    background: rgba(30, 30, 45, 0.9);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #444;
}
.comment-form textarea, .rating-form select {
    width: 100%;
    padding: 15px;
    margin-top: 15px;
    background: #111;
    border: 2px solid #555;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    resize: vertical;
}
.comment-form button, .rating-form button {
    width: 100%;
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(45deg, #0099cc, #0066cc);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.comment-form button:hover { background: linear-gradient(45deg, #00aaff, #0088ff); }
.rating-form button { background: linear-gradient(45deg, #00cc66, #00994d); }
.rating-form button:hover { background: linear-gradient(45deg, #00ff80, #00cc66); }
.stars { color: #ffcc00; font-size: 1.5rem; margin: 10px 0; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(10,10,20,0.8);
    border-radius: 10px;
}
.web-link {
    background: rgba(255,153,0,0.1);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid #444;
}
.web-link a { font-weight: bold; }
.web-link:hover {
    background: rgba(255,153,0,0.2);
    transform: translateY(-3px);
}
footer {
    background: #0a0a14;
    padding: 40px 0 20px;
    text-align: center;
    border-top: 2px solid #ff9900;
}
.copyright {
    color: #888;
    font-size: 0.9rem;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    .header-top { flex-wrap: wrap; }
    .hamburger { display: block; }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(10,10,20,0.98);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        border-top: 1px solid #333;
    }
    nav.active ul { display: flex; }
    .interactive-section { grid-template-columns: 1fr; }
    .footer-links { gap: 15px; padding: 20px; }
    .web-link { padding: 10px 20px; }
}
