* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1923;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #ff4655;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #fff;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a2332;
            padding: 15px 0;
            border-bottom: 2px solid #ff4655;
            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: bold;
            color: #ff4655;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            color: #fff;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: #ff4655;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #ff4655;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ff4655;
        }
        .search-box {
            margin: 20px 0;
            background: #1a2332;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #2a3a50;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 4px 0 0 4px;
            background: #2a3a50;
            color: #fff;
        }
        .search-form button {
            padding: 12px 20px;
            background: #ff4655;
            border: none;
            border-radius: 0 4px 4px 0;
            color: white;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #e03e4c;
        }
        main {
            padding: 30px 0;
        }
        article {
            background: #1a2332;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ff4655;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #00ff9d;
            margin: 30px 0 15px;
            border-left: 4px solid #ff4655;
            padding-left: 10px;
        }
        h3 {
            font-size: 1.5rem;
            color: #8bd1ff;
            margin: 20px 0 10px;
        }
        h4 {
            font-size: 1.2rem;
            color: #ffcc00;
            margin: 15px 0 8px;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: #2a3a50;
            padding: 15px;
            border-left: 4px solid #ff4655;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        strong {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            border: 2px solid #ff4655;
            display: block;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #ccc;
            margin-top: -10px;
            margin-bottom: 20px;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 20px;
        }
        .comment-section, .rating-section {
            background: #1a2332;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            border: 1px solid #2a3a50;
        }
        .comment-section h3, .rating-section h3 {
            color: #ff4655;
        }
        form {
            display: grid;
            gap: 15px;
            margin-top: 15px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #2a3a50;
            border-radius: 4px;
            background: #2a3a50;
            color: #fff;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        button[type="submit"] {
            background: #ff4655;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        button[type="submit"]:hover {
            background: #e03e4c;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .stars i {
            color: #ccc;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .stars i:hover, .stars i.active {
            color: #ffcc00;
        }
        footer {
            background: #1a2332;
            padding: 40px 0 20px;
            border-top: 2px solid #ff4655;
            margin-top: 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ff4655;
            margin-bottom: 15px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            color: #00ff9d;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a3a50;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            p {
                font-size: 1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
