* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            font-size: 2rem;
        }
        .search-form {
            display: flex;
            background: white;
            border-radius: 25px;
            overflow: hidden;
        }
        .search-form input {
            padding: 10px 15px;
            border: none;
            outline: none;
            width: 250px;
        }
        .search-form button {
            background: #ff6b00;
            border: none;
            padding: 10px 15px;
            color: white;
            cursor: pointer;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            margin-top: 1rem;
            background: rgba(0,0,0,0.2);
            border-radius: 5px;
            padding: 10px;
        }
        nav ul li {
            margin: 0 15px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: #ff6b00;
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ddd;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            background: white;
            padding: 2rem 0;
            margin: 2rem auto;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }
        article {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.5rem;
            color: #1a2a6c;
            margin-bottom: 1.5rem;
            text-align: center;
            border-bottom: 3px solid #ff6b00;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 1.8rem;
            color: #b21f1f;
            margin: 2rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid #fdbb2d;
        }
        h3 {
            font-size: 1.4rem;
            color: #1a2a6c;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: #fff9e6;
            border-left: 4px solid #ff6b00;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }
        .stat-item {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-item i {
            font-size: 2.5rem;
            color: #ff6b00;
            margin-bottom: 10px;
        }
        .stat-item h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #1a2a6c;
        }
        .cod-points-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }
        .cod-points-table th, .cod-points-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .cod-points-table th {
            background: #1a2a6c;
            color: white;
        }
        .cod-points-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        .cod-points-table tr:hover {
            background: #e9ecef;
        }
        .user-interaction {
            margin: 3rem 0;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 10px;
        }
        .rating-section, .comment-section {
            margin-bottom: 2rem;
        }
        .rating-stars {
            display: flex;
            margin: 10px 0;
        }
        .rating-stars i {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            margin-right: 5px;
            transition: color 0.2s;
        }
        .rating-stars i:hover, .rating-stars i.active {
            color: #ffc107;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 10px;
            font-family: inherit;
        }
        .comment-form button, .rating-form button {
            background: #ff6b00;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background: #e55e00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 2rem 0;
        }
        .web-link {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            text-align: center;
        }
        .web-link a {
            color: #1a2a6c;
            text-decoration: none;
            font-weight: 500;
        }
        .web-link a:hover {
            text-decoration: underline;
            color: #ff6b00;
        }
        footer {
            background: #1a2a6c;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 1rem 0;
        }
        .footer-links a {
            color: #ddd;
            margin: 0 15px;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: #ff6b00;
        }
        .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            .search-form input {
                width: 100%;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
