        * { 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, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a { color: #ff6b8b; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #ff4757; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: white;
            padding: 1.5rem 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover { transform: scale(1.05); }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            background: rgba(255,255,255,0.1);
        }
        .nav-desktop a:hover {
            background: rgba(255,255,255,0.25);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a2a6c;
            width: 100%;
            padding: 1rem;
            margin-top: 1rem;
            border-radius: 10px;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            max-width: 1300px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #666; }
        .breadcrumb a:hover { color: #ff6b8b; }
        .container {
            max-width: 1300px;
            margin: 2rem auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            overflow: hidden;
            padding: 3rem;
        }
        @media (max-width: 768px) {
            .container { padding: 1.5rem; margin: 1rem; }
        }
        h1 {
            font-size: 3.2rem;
            color: #1a2a6c;
            margin-bottom: 1.5rem;
            border-bottom: 5px solid #fdbb2d;
            padding-bottom: 1rem;
        }
        @media (max-width: 768px) { h1 { font-size: 2.5rem; } }
        h2 {
            font-size: 2.4rem;
            color: #b21f1f;
            margin: 3rem 0 1.5rem;
            padding-left: 1rem;
            border-left: 6px solid #ffcc00;
        }
        h3 {
            font-size: 1.8rem;
            color: #1a2a6c;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #555;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #444;
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #ff6b8b;
        }
        .highlight {
            background: linear-gradient(120deg, #ffcc00 0%, #ffcc00 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
        }
        .note {
            background: #e3f2fd;
            border-left: 5px solid #2196f3;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .search-box, .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            margin: 3rem 0;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
        }
        .search-box h3, .comment-form h3, .rating-form h3 { margin-top: 0; }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #555;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #ff6b8b;
            outline: none;
        }
        button {
            background: linear-gradient(90deg, #ff6b8b, #ff4757);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            font-weight: 700;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 107, 139, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            direction: rtl;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #ffcc00; }
        .feature-img {
            width: 80%;
            margin: 3rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            transition: transform 0.5s;
        }
        .feature-img:hover { transform: scale(1.02); }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .related-links {
            background: #fff9e6;
            padding: 2rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
        .related-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            list-style: none;
        }
        .related-links li { padding: 0.8rem; border-bottom: 1px dashed #ffcc00; }
        .related-links a { color: #1a2a6c; font-weight: 500; }
        .site-footer {
            max-width: 1300px;
            margin: 4rem auto 0;
            padding: 2rem;
            text-align: center;
            color: #666;
            border-top: 2px solid #eee;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0 1rem;
            padding: 0.7rem 1.5rem;
            background: #f1f1f1;
            border-radius: 30px;
            color: #555;
        }
        .copyright {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 6px solid #1a2a6c;
            transition: transform 0.3s;
        }
        .stat-card:hover { transform: translateY(-10px); }
        .stat-card h4 { color: #1a2a6c; }
        .stat-value {
            font-size: 3rem;
            font-weight: 900;
            color: #ff6b8b;
            text-align: center;
            margin: 1rem 0;
        }
        @media (max-width: 768px) {
            .header-container, .breadcrumb, .container { padding-left: 1rem; padding-right: 1rem; }
            .stats-grid { grid-template-columns: 1fr; }
            .related-links ul { grid-template-columns: 1fr; }
        }
