        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #0c1a2d 0%, #1a3a5f 100%);
            color: #f0f8ff;
            max-width: 100%;
            overflow-x: hidden;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #74c0fc; transform: translateY(-1px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; color: #ffd43b; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .section-spacing { padding: 60px 0; }
        .card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }
        .site-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ffd43b;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffd43b, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover { transform: scale(1.05); }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) { .nav-desktop { display: none; } }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 8px;
        }
        .nav-desktop a:hover {
            background: rgba(255, 212, 59, 0.15);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #ffd43b;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) { .hamburger { display: block; } }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(12, 26, 45, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #2c3e50;
            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 #2c3e50;
            font-weight: 600;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #2c3e50;
        }
        .breadcrumb a { color: #74c0fc; }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 20px;
            text-align: center;
            border-radius: 0 0 30px 30px;
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ffd43b, #ffa94d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) { h1 { font-size: 2.5rem; } }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #e9ecef;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 16px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 10px 0 0 10px;
            font-size: 1rem;
            background: #1e3a5f;
            color: white;
        }
        .search-form button {
            background: linear-gradient(90deg, #ffd43b, #ffa94d);
            color: #0c1a2d;
            border: none;
            padding: 0 25px;
            border-radius: 0 10px 10px 0;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-form button:hover { opacity: 0.9; }
        .main-content { padding: 20px 0; }
        h2, h3, h4 {
            margin-top: 40px;
            margin-bottom: 20px;
            color: #ffd43b;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 6px solid #ff6b6b;
            padding-left: 20px;
        }
        h3 { font-size: 2rem; }
        h4 { font-size: 1.5rem; color: #74c0fc; }
        @media (max-width: 768px) {
            h2 { font-size: 2rem; }
            h3 { font-size: 1.7rem; }
            h4 { font-size: 1.3rem; }
        }
        p, li {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            color: #e9ecef;
        }
        ul, ol { padding-left: 30px; margin-bottom: 1.5em; }
        .highlight-box {
            background: linear-gradient(90deg, rgba(255,212,59,0.1), rgba(255,107,107,0.1));
            border-left: 5px solid #ffd43b;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            margin: 40px auto;
            border-radius: 16px;
            overflow: hidden;
            border: 3px solid #ffd43b;
        }
        .article-image img { width: 100%; transition: transform 0.5s ease; }
        .article-image:hover img { transform: scale(1.03); }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            padding: 10px;
            background: rgba(0,0,0,0.5);
        }
        .content-link {
            background: rgba(77, 171, 247, 0.15);
            padding: 2px 6px;
            border-radius: 4px;
            border-bottom: 2px dotted #4dabf7;
        }
        .content-link:hover { background: rgba(77, 171, 247, 0.3); }
        .user-interaction { margin-top: 60px; }
        .rating-form, .comment-form {
            background: rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 16px;
            margin-bottom: 40px;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            margin-bottom: 20px;
        }
        .star-rating input { display: none; }
        .star-rating label {
            color: #aaa;
            font-size: 2rem;
            padding: 0 5px;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #ffd43b; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #2c3e50;
            background: #1e3a5f;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea { min-height: 150px; resize: vertical; }
        .submit-btn {
            background: linear-gradient(90deg, #40c057, #51cf66);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
            font-size: 1.1rem;
        }
        .submit-btn:hover { opacity: 0.9; }
        .site-footer {
            background: #0c1a2d;
            border-top: 3px solid #ffd43b;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-links h4 { color: #ffd43b; margin-bottom: 20px; font-size: 1.3rem; }
        .footer-links ul { list-style: none; padding-left: 0; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #adb5bd; }
        .footer-links a:hover { color: #ffd43b; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            font-weight: bold;
            text-align: center;
            border: 1px dashed #4dabf7;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2c3e50;
            color: #868e96;
            font-size: 0.9rem;
        }
