        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f5f5f5;
            font-size: 18px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a {
            color: #ff6b6b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #ff8e8e;
        }
        .logo span {
            color: #4ecdc4;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 107, 107, 0.2);
            color: #ff6b6b;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 12px;
            width: 0;
            height: 3px;
            background-color: #ff6b6b;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: calc(100% - 24px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #16213e;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: block;
            padding: 12px 15px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 107, 107, 0.2);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 0;
            margin-bottom: 30px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: #ff6b6b;
        }
        .breadcrumb i {
            margin: 0 10px;
            color: #888;
            font-size: 0.9rem;
        }
        main {
            padding: 30px 0;
            min-height: 100vh;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px solid #ff6b6b;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #16213e;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #4ecdc4;
        }
        h3 {
            font-size: 1.6rem;
            color: #1a1a2e;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            font-weight: 600;
            color: #444;
            background-color: #f8f9fa;
            padding: 20px;
            border-left: 5px solid #ff6b6b;
            border-radius: 5px;
            margin-bottom: 35px;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 25px;
            border-radius: 8px;
            border: 1px solid #ffd166;
            margin: 30px 0;
        }
        .highlight strong {
            color: #e63946;
        }
        .stats-box {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(26, 26, 46, 0.2);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #4ecdc4;
            display: block;
            margin-bottom: 5px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            margin: 30px 0;
            border: 5px solid white;
            display: block;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -20px;
            margin-bottom: 30px;
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: #555;
            border-left: 5px solid #4ecdc4;
            padding-left: 25px;
            margin: 35px 0;
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 0 10px 10px 0;
        }
        .author {
            font-weight: bold;
            color: #1a1a2e;
            margin-top: 15px;
            text-align: right;
        }
        aside {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #16213e;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff6b6b;
        }
        .search-form {
            display: flex;
            margin-bottom: 25px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #ff6b6b;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #e63946;
        }
        .rating-form, .comment-form {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
        }
        .rating-form h4, .comment-form h4 {
            margin-bottom: 15px;
            color: #1a1a2e;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffd166;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #4ecdc4;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }
        .submit-btn:hover {
            background-color: #1a936f;
        }
        .internal-links {
            background-color: #1a1a2e;
            padding: 40px 0;
            margin-top: 60px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 107, 107, 0.2);
        }
        .web-link a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: #ff6b6b;
        }
        footer {
            background-color: #16213e;
            color: #ddd;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
        }
        .copyright {
            font-size: 1rem;
            color: #aaa;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            article {
                padding: 25px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .header-content {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 576px) {
            body {
                font-size: 16px;
            }
            .container {
                padding: 0 15px;
            }
            article {
                padding: 20px;
            }
            .logo {
                font-size: 1.8rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .text-bold {
            font-weight: 900;
            color: #1a1a2e;
        }
        .text-highlight {
            color: #e63946;
            font-weight: 700;
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-30 {
            margin-top: 30px;
        }
