        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e63946;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            letter-spacing: 1px;
        }
        .logo span {
            color: #fdcb6e;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: #dfe6e9;
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: #fdcb6e;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #fdcb6e;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1e3799;
            padding: 20px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #495057;
        }
        .search-container {
            padding: 30px 20px;
            background-color: white;
            border-bottom: 1px solid #dee2e6;
            text-align: center;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .search-box input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: linear-gradient(to right, #e63946, #d63031);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(to right, #d63031, #c0392b);
        }
        main {
            padding: 40px 20px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 10px;
            margin: 30px auto;
        }
        h1 {
            font-size: 2.8rem;
            color: #0c2461;
            margin-bottom: 25px;
            line-height: 1.2;
            border-left: 6px solid #e63946;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            color: #1e3799;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #fdcb6e;
        }
        h3 {
            font-size: 1.6rem;
            color: #2d3436;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #636e72;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #2d3436;
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #0984e3;
            margin-bottom: 35px;
        }
        .highlight {
            background-color: #fff9db;
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: 600;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-link {
            color: #e63946;
            font-weight: 600;
            border-bottom: 1px dashed #e63946;
        }
        .content-link:hover {
            border-bottom-style: solid;
        }
        .quote {
            font-size: 1.3rem;
            color: #555;
            border-left: 5px solid #00b894;
            padding: 25px;
            margin: 40px 0;
            background-color: #f9f9f9;
            font-style: italic;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
            padding: 25px;
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            border-radius: 15px;
            color: white;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
        }
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        .rating-section, .comments-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #dfe6e9;
        }
        .rating-form, .comment-form {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0 25px;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2d3436;
        }
        form input, form textarea, form select {
            width: 100%;
            padding: 15px;
            margin-bottom: 25px;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        form input:focus, form textarea:focus, form select:focus {
            border-color: #74b9ff;
            outline: none;
        }
        form button {
            background: linear-gradient(to right, #00b894, #00a085);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        form button:hover {
            background: linear-gradient(to right, #00a085, #008b74);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0, 184, 148, 0.3);
        }
        footer {
            background-color: #2d3436;
            color: #dfe6e9;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: #fdcb6e;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #b2bec3;
        }
        .footer-links a:hover {
            color: #fdcb6e;
            padding-left: 5px;
            transition: all 0.3s ease;
        }
        friend-link {
            display: block;
            background-color: #34495e;
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
        }
        friend-link h4 {
            color: #fdcb6e;
            margin-bottom: 20px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .friend-links a {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .friend-links a:hover {
            background-color: #fdcb6e;
            color: #2d3436;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #4a5568;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; padding-left: 15px; }
            .lead { font-size: 1.2rem; padding: 20px; }
            .search-box { flex-direction: column; border-radius: 10px; }
            .search-box input, .search-box button { width: 100%; border-radius: 0; padding: 18px; }
            .search-box button { border-radius: 0 0 10px 10px; }
            .stats-box { grid-template-columns: 1fr; }
            .friend-links { justify-content: center; }
        }
        @media (max-width: 480px) {
            .header-top { flex-direction: column; gap: 15px; }
            .logo a { font-size: 1.5rem; }
            .breadcrumb { font-size: 0.8rem; }
            form button { width: 100%; }
        }
