* {
            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 {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #339af0;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a1f2b;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ff6b6b;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 107, 107, 0.7);
        }
        .my-logo:hover {
            color: #ff8787;
            text-shadow: 0 0 15px rgba(255, 135, 135, 0.9);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .nav-links a:hover {
            background-color: #2d3748;
            color: #74c0fc;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff6b6b;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #adb5bd;
        }
        .breadcrumb a {
            color: #74c0fc;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 30px 0;
        }
        article {
            background-color: #1e2532;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffa94d;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2rem;
            color: #74c0fc;
            margin: 25px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #339af0;
        }
        h3 {
            font-size: 1.6rem;
            color: #ffd43b;
            margin: 20px 0 12px;
        }
        h4 {
            font-size: 1.3rem;
            color: #b197fc;
            margin: 15px 0 10px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #2d3748;
            padding: 15px;
            border-left: 5px solid #ff6b6b;
            border-radius: 5px;
            margin: 20px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px auto;
            display: block;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #adb5bd;
            margin-top: -15px;
            margin-bottom: 25px;
        }
        .search-section, .comments-section, .rating-section {
            background-color: #1e2532;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        .section-title {
            font-size: 1.8rem;
            color: #ffa94d;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title i {
            font-size: 1.5rem;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: #adb5bd;
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 2px solid #4dabf7;
            border-radius: 8px;
            background-color: #2d3748;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ffa94d;
            box-shadow: 0 0 8px rgba(255, 169, 77, 0.5);
        }
        button {
            padding: 14px 25px;
            background: linear-gradient(135deg, #339af0, #4dabf7);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        }
        button:hover {
            background: linear-gradient(135deg, #4dabf7, #339af0);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(51, 154, 240, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ffd43b;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffa94d;
        }
        .star-rating input:checked ~ label {
            color: #ffa94d;
        }
        footer {
            background-color: #1a1f2b;
            padding: 40px 0 20px;
            border-top: 3px solid #339af0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #74c0fc;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        .friend-links {
            list-style: none;
        }
        .friend-links li {
            margin-bottom: 12px;
        }
        .friend-links a {
            font-size: 1.1rem;
            padding: 5px 0;
            display: block;
            border-radius: 5px;
            padding-left: 10px;
            transition: background-color 0.3s ease;
        }
        .friend-links a:hover {
            background-color: #2d3748;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4d5a6b;
            color: #adb5bd;
            font-size: 0.95rem;
        }
        .last-updated {
            font-style: italic;
            color: #ffa94d;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: #1a1f2b;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 80px);
                padding: 30px;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            }
            #nav-toggle:checked ~ .nav-links {
                right: 0;
            }
            .nav-links a {
                padding: 15px;
                border-bottom: 1px solid #4d5a6b;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.8rem;
            }
        }
