        * { 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: #e0e0e0;
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            position: relative;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M50,0 L100,50 L50,100 L0,50 Z" fill="%23fff"/></svg>') repeat;
            pointer-events: none;
            z-index: -1;
        }
        h1, h2, h3, h4, h5, h6 { font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif; margin-bottom: 1rem; color: #ff4655; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; margin-top: 1.5rem; text-shadow: 0 0 15px rgba(255, 70, 85, 0.5); }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); border-left: 5px solid #00adb5; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: #00d4ff; margin-top: 2rem; }
        h4 { font-size: 1.3rem; color: #6ee7b7; margin-top: 1.5rem; }
        p { margin-bottom: 1.2rem; font-size: 1.1rem; }
        a { color: #00d4ff; text-decoration: none; transition: all 0.3s ease; border-bottom: 1px dotted transparent; }
        a:hover { color: #6ee7b7; border-bottom-color: #6ee7b7; }
        strong, b { color: #ffcc00; font-weight: 700; }
        em { color: #ff9e7a; font-style: italic; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px auto;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .site-header {
            background: rgba(12, 12, 29, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Courier New', monospace;
            font-size: 2.2rem;
            font-weight: 900;
            color: #ff4655;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo::before { content: 'ඞ'; font-size: 2.5rem; }
        .my-logo::after { content: 'Among Us India Guide'; font-size: 1.2rem; color: #00d4ff; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #e0e0e0;
            padding: 8px 12px;
            border-radius: 5px;
            font-weight: 600;
        }
        .main-nav a:hover {
            background: rgba(255, 70, 85, 0.2);
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ff4655;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(12, 12, 29, 0.98);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                padding: 20px;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
            }
        }
        .breadcrumb {
            background: rgba(26, 26, 46, 0.8);
            padding: 12px 20px;
            border-radius: 8px;
            margin: 20px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #6ee7b7; }
        .article-content {
            background: rgba(26, 26, 46, 0.7);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #2d3746;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #444;
            font-size: 0.95rem;
            color: #aaa;
        }
        .update-time { color: #6ee7b7; }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 25px 0;
            border: 3px solid #00adb5;
            box-shadow: 0 5px 15px rgba(0, 173, 181, 0.3);
        }
        .highlight-box {
            background: linear-gradient(90deg, rgba(255,70,85,0.1), rgba(0,173,181,0.1));
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .sidebar {
            background: rgba(22, 33, 62, 0.7);
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 { text-align: center; }
        .widget { margin-bottom: 30px; }
        .search-form { display: flex; margin-top: 15px; }
        .search-form input {
            flex-grow: 1;
            padding: 12px;
            background: rgba(255,255,255,0.1);
            border: 1px solid #444;
            border-radius: 5px 0 0 5px;
            color: #fff;
        }
        .search-form button {
            background: #ff4655;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #ff2e3b; }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 10px; padding-left: 20px; position: relative; }
        .link-list li::before { content: '▶'; color: #00d4ff; position: absolute; left: 0; }
        .rating-widget, .comment-form {
            background: rgba(12, 12, 29, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active { color: #ffcc00; transform: scale(1.1); }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; color: #6ee7b7; }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: rgba(255,255,255,0.05);
            border: 1px solid #2d3746;
            border-radius: 5px;
            color: #fff;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00d4ff;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff4655, #ff6b6b);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 70, 85, 0.4);
        }
        .site-footer {
            background: #0a0a18;
            margin-top: 60px;
            padding: 40px 0 20px;
            border-top: 2px solid #ff4655;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h4 { color: #ffcc00; margin-bottom: 20px; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.03);
            padding: 10px 15px;
            margin-bottom: 10px;
            border-radius: 5px;
            border-left: 3px solid #00adb5;
            transition: background 0.3s;
        }
        friend-link:hover { background: rgba(0, 173, 181, 0.1); }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #2d3746;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-inner { flex-direction: column; align-items: flex-start; }
            .my-logo { margin-bottom: 15px; }
            .article-content, .sidebar { padding: 20px; }
            .footer-content { flex-direction: column; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar { animation: fadeIn 0.8s ease; }
