* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #0f1b2d;
            --secondary: #1a2d4a;
            --accent: #ffcc00;
            --accent-dark: #e6b800;
            --text: #e6f1ff;
            --text-muted: #a3b8cc;
            --card-bg: rgba(255, 255, 255, 0.05);
            --border: rgba(255, 255, 255, 0.1);
            --success: #00cc88;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        body {
            background: linear-gradient(135deg, var(--primary) 0%, #152642 50%, var(--secondary) 100%);
            color: var(--text);
            line-height: 1.7;
            min-height: 100vh;
            padding-top: 80px;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-dark);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(15, 27, 45, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 1px solid var(--border);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--accent), #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: rgba(26, 45, 74, 0.5);
            font-size: 0.95rem;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .search-container {
            max-width: 600px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background-color: var(--card-bg);
            color: var(--text);
            font-size: 1.1rem;
        }
        .search-input::placeholder {
            color: var(--text-muted);
        }
        .search-button {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            padding: 0 30px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: var(--accent-dark);
        }
        main {
            padding: 30px 0 60px;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            line-height: 1.2;
            color: var(--accent);
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            margin: 45px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            color: var(--text);
        }
        h3 {
            font-size: 1.7rem;
            margin: 35px 0 15px;
            color: var(--text);
        }
        h4 {
            font-size: 1.4rem;
            margin: 25px 0 10px;
            color: var(--text-muted);
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: var(--text-muted);
            margin-bottom: 35px;
            line-height: 1.8;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.15);
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
            vertical-align: middle;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            display: block;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            margin-top: -20px;
            margin-bottom: 30px;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
        }
        .rating-widget, .comment-widget {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid var(--border);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        label {
            font-weight: 600;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 10px;
            border: 1px solid var(--border);
            background-color: rgba(255,255,255,0.08);
            color: var(--text);
            font-size: 1rem;
        }
        button[type="submit"] {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            padding: 16px 30px;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.1rem;
            align-self: flex-start;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            background-color: var(--accent-dark);
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--primary);
            border-top: 1px solid var(--border);
            padding: 50px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
            margin-left: 0;
        }
        .footer-links a {
            color: var(--text-muted);
            display: block;
            padding: 8px 0;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            padding: 15px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 10px;
            margin: 10px 0;
            border-left: 3px solid var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            .header-container { padding: 15px; }
            nav ul { gap: 20px; }
        }
        @media (max-width: 768px) {
            body { padding-top: 70px; }
            .hamburger { display: block; }
            nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 20px;
                box-shadow: var(--shadow);
                transform: translateY(-150%);
                opacity: 0;
                transition: transform 0.4s ease, opacity 0.3s ease;
                z-index: 999;
            }
            nav.active {
                transform: translateY(0);
                opacity: 1;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            article { padding: 25px; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .search-form { flex-direction: column; border-radius: 15px; }
            .search-button { padding: 15px; border-radius: 0 0 15px 15px; }
        }
