        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a2e1d 0%, #0d1a29 100%);
            color: #e8f4f8;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4ecdc4;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffd166;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 25, 34, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #1a5a4d;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #ffd166, #4ecdc4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(78, 205, 196, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #4ecdc4;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #0a1922;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #1a5a4d;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #1a3a35;
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #a0c8d0;
            background: rgba(10, 40, 35, 0.5);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #a0c8d0;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 2px dashed #2a6b5e;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #ffd166;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        .article-meta {
            color: #8ab4b8;
            font-style: italic;
            margin-top: 15px;
        }
        .content-section {
            margin-bottom: 50px;
            background: rgba(15, 35, 40, 0.6);
            padding: 30px;
            border-radius: 12px;
            border-left: 5px solid #4ecdc4;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        h2 {
            color: #4ecdc4;
            font-size: 2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2a6b5e;
        }
        h3 {
            color: #ffd166;
            font-size: 1.6rem;
            margin: 25px 0 15px;
        }
        h4 {
            color: #a0e7d0;
            font-size: 1.3rem;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 209, 102, 0.1);
            border-left: 4px solid #ffd166;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-style: italic;
            color: #b8e0d2;
            border-left: 4px solid #1a5a4d;
            padding-left: 20px;
            margin: 25px 0;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
            border: 2px solid #2a6b5e;
        }
        .image-caption {
            font-size: 0.9rem;
            color: #8ab4b8;
            margin-top: 10px;
            font-style: italic;
        }
        .feature-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .search-box, .comment-box, .rating-box {
            background: rgba(20, 45, 50, 0.8);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #2a6b5e;
        }
        .feature-box h3 {
            margin-top: 0;
            color: #ffd166;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 6px;
            border: 1px solid #3a7a6d;
            background: rgba(255, 255, 255, 0.05);
            color: #e8f4f8;
            font-size: 1rem;
        }
        button {
            padding: 14px 20px;
            background: linear-gradient(to right, #1a5a4d, #4ecdc4);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        button:hover {
            background: linear-gradient(to right, #4ecdc4, #1a5a4d);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #555;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffd166;
        }
        .site-footer {
            background: #0a1922;
            padding: 40px 0 20px;
            border-top: 3px solid #1a5a4d;
            margin-top: 60px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #2a6b5e;
        }
        friend-link {
            display: inline-block;
            background: rgba(26, 90, 77, 0.3);
            padding: 10px 20px;
            border-radius: 6px;
            border: 1px solid #2a6b5e;
        }
        friend-link a {
            color: #a0e7d0;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            color: #8ab4b8;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .text-bold {
            font-weight: 800;
            color: #ffd166;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
