        * { 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: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #f0f0f0;
            min-height: 100vh;
        }
        a { color: #f96816; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ff9a56; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 20, 0.95);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(249, 104, 22, 0.2);
            border-bottom: 2px solid #f96816;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f96816, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: -1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover { transform: scale(1.05); }
        .desktop-nav { display: flex; gap: 2rem; }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(249, 104, 22, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f0f0f0;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(10, 10, 20, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav a {
            padding: 1rem;
            border-bottom: 1px solid #333;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #ccc; }
        main {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            margin: 2rem auto;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(249, 104, 22, 0.3);
        }
        h1, h2, h3, h4 {
            font-family: 'Georgia', serif;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #ffcc00;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            text-align: center;
            border-bottom: 3px solid #f96816;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(249, 104, 22, 0.5);
        }
        h2 { font-size: 2.4rem; border-left: 5px solid #f96816; padding-left: 15px; }
        h3 { font-size: 1.8rem; color: #ff9a56; }
        h4 { font-size: 1.4rem; color: #ffcc99; }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #ffcc99;
            background: rgba(249, 104, 22, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #ffcc00;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(249, 104, 22, 0.2), transparent);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .emoji { font-size: 1.2em; }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            border: 3px solid #f96816;
            margin: 2rem auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
        }
        .links-module {
            background: rgba(30, 30, 46, 0.8);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #444;
        }
        .links-module h3 { margin-top: 0; }
        .links-module ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
        .links-module li { padding: 0.8rem; background: rgba(255,255,255,0.05); border-radius: 5px; }
        .links-module li:hover { background: rgba(249, 104, 22, 0.2); }
        .interactive-module {
            background: rgba(20, 20, 40, 0.9);
            padding: 2rem;
            border-radius: 15px;
            margin: 3rem 0;
            border: 2px solid #444;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #ffcc00;
            margin-bottom: 1.5rem;
        }
        .module-title i { font-size: 2rem; }
        #search-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        #search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #555;
            border-radius: 8px;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        #search-input:focus {
            outline: none;
            border-color: #f96816;
        }
        .btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, #f96816, #ff7700);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn:hover {
            background: linear-gradient(90deg, #ff7700, #ff9900);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(249, 104, 22, 0.4);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: #555;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.hovered { color: #ffcc00; }
        .rating-stars .star.selected { color: #ff9900; }
        #comment-form { display: flex; flex-direction: column; gap: 1rem; }
        #comment-text {
            padding: 1rem;
            border-radius: 8px;
            background: #222;
            border: 2px solid #555;
            color: #fff;
            font-family: inherit;
            min-height: 120px;
        }
        #comment-text:focus { outline: none; border-color: #f96816; }
        footer {
            background: rgba(5, 5, 15, 0.98);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid #f96816;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            color: #aaa;
            border-bottom: 1px dashed #444;
        }
        friend-link:hover { color: #f96816; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #444;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            main { padding: 1.5rem; }
            .footer-content { grid-template-columns: 1fr; }
        }
