        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #00a8ff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0097e6;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: #ff4757;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #ff4757, #ff9f43);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #f1f2f6;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 71, 87, 0.2);
            color: #ff4757;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            color: #f1f2f6;
            cursor: pointer;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a1a2e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #f1f2f6;
            padding: 1rem;
            border-bottom: 1px solid #2d3436;
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 71, 87, 0.2);
        }
        .breadcrumb {
            background-color: #2d3436;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #00a8ff;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #b2bec3;
        }
        .container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background-color: #1e272e;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        .sidebar {
            background-color: #1e272e;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ff9f43;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #00cec9;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #00cec9;
        }
        h3 {
            font-size: 1.5rem;
            color: #74b9ff;
            margin: 1.5rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #a29bfe;
            margin: 1rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        strong {
            color: #ff9f43;
            font-weight: 700;
        }
        .highlight {
            background-color: rgba(255, 159, 67, 0.1);
            padding: 1rem;
            border-left: 4px solid #ff9f43;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2rem auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
            border: 2px solid #00a8ff;
        }
        .image-caption {
            margin-top: 0.5rem;
            font-style: italic;
            color: #b2bec3;
            font-size: 0.9rem;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
            justify-content: center;
        }
        .link-list a {
            background-color: #2d3436;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            font-weight: 600;
            display: inline-block;
            border: 1px solid #00a8ff;
        }
        .link-list a:hover {
            background-color: #00a8ff;
            color: #0f1419;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 168, 255, 0.4);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .search-box, .comment-section, .rating-section {
            background-color: #2d3436;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        .search-box h3, .comment-section h3, .rating-section h3 {
            color: #ff9f43;
            margin-top: 0;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .search-form input {
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid #00a8ff;
            background-color: #1e272e;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-form button {
            padding: 0.8rem;
            border-radius: 8px;
            border: none;
            background-color: #00a8ff;
            color: #0f1419;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .search-form button:hover {
            background-color: #0097e6;
        }
        .comment-form textarea, .comment-form input, .rating-form select, .rating-form input {
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid #00a8ff;
            background-color: #1e272e;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .comment-form button, .rating-form button {
            padding: 0.8rem;
            border-radius: 8px;
            border: none;
            background-color: #ff4757;
            color: #f1f2f6;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .comment-form button:hover, .rating-form button:hover {
            background-color: #ff3838;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 0.5rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: #b2bec3;
            cursor: pointer;
        }
        .star:hover,
        .star.active {
            color: #ff9f43;
        }
        .footer {
            background-color: #1a1a2e;
            padding: 2rem;
            margin-top: 3rem;
            border-top: 3px solid #ff4757;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h4 {
            color: #00cec9;
            margin-bottom: 1rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #b2bec3;
        }
        .footer-links a:hover {
            color: #00a8ff;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
            padding: 1rem;
            background-color: #2d3436;
            border-radius: 8px;
            text-align: center;
        }
        friend-link a {
            font-size: 1.1rem;
            font-weight: 700;
        }
        .copyright {
            text-align: center;
            padding: 1.5rem;
            color: #b2bec3;
            font-size: 0.9rem;
            border-top: 1px solid #2d3436;
            margin-top: 2rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            .breadcrumb {
                padding: 0.8rem 1rem;
            }
            .container {
                padding: 0 1rem;
            }
            .main-content {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .main-content, .sidebar {
            animation: fadeIn 0.8s ease-out;
        }
