        * { 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, #0c1a2a 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" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%23000" opacity="0.05"/></svg>');
            pointer-events: none;
            z-index: -1;
        }
        h1, h2, h3, h4 { font-family: 'Arial Black', Gadget, sans-serif; color: #ff7a45; margin-bottom: 1rem; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); text-shadow: 0 0 15px rgba(255, 122, 69, 0.5); border-bottom: 3px solid #ff7a45; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; color: #4dabf7; margin-top: 2.5rem; }
        h3 { font-size: 1.8rem; color: #69db7c; margin-top: 2rem; }
        h4 { font-size: 1.4rem; color: #ffa94d; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #ffa94d; text-shadow: 0 0 8px rgba(255, 169, 77, 0.7); }
        strong { color: #ffa94d; }
        em { color: #69db7c; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff7a45;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff7a45, #ffd43b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
        }
        .my-logo:hover { transform: scale(1.05); }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        nav a:hover {
            background: rgba(255, 122, 69, 0.2);
            color: #ff7a45;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ff7a45;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #ff7a45; }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        .content-area { background: rgba(20, 30, 48, 0.8); padding: 2.5rem; border-radius: 15px; border: 1px solid #333; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .sidebar {
            background: rgba(20, 30, 48, 0.8);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .search-box, .comment-form, .rating-form {
            background: rgba(30, 41, 59, 0.9);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border-left: 5px solid #ff7a45;
        }
        .form-group { margin-bottom: 1rem; }
        label { display: block; margin-bottom: 0.5rem; color: #ffa94d; }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid #555;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff7a45;
            box-shadow: 0 0 0 3px rgba(255, 122, 69, 0.3);
        }
        button {
            background: linear-gradient(90deg, #ff7a45, #ff922b);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 122, 69, 0.4);
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid #ff7a45;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
        }
        .internal-links {
            background: rgba(30, 41, 59, 0.9);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .internal-links ul { list-style: none; }
        .internal-links li { margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; }
        .internal-links li::before { content: '🔫'; position: absolute; left: 0; }
        footer {
            background: rgba(10, 25, 47, 0.95);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid #333;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h4 { color: #4dabf7; border-bottom: 2px solid #444; padding-bottom: 0.5rem; }
        .footer-links { list-style: none; margin-top: 1rem; }
        .footer-links li { margin-bottom: 0.8rem; }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: rgba(255,122,69,0.1);
            border-radius: 5px;
            margin-bottom: 0.5rem;
            border-left: 3px solid #ff7a45;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 25, 47, 0.98);
                padding: 1rem;
                border-top: 1px solid #333;
            }
            nav.active ul { display: flex; }
            .header-container { flex-wrap: wrap; }
        }
