        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #0056A7;
            --secondary: #8B1E3F;
            --accent: #FFD700;
            --dark: #222222;
            --light: #F8F9FA;
            --gray: #6C757D;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul { list-style: none; }
        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: 700; }
        .highlight { color: var(--secondary); font-weight: 600; }
        .emoji { font-size: 1.2em; }
        .section-spacing {
            padding: 60px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: #003f7a;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .main-header {
            background: var(--dark);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: white; }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: var(--accent);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--dark);
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-mobile a {
            display: block;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            color: var(--accent);
            padding-left: 10px;
        }
        .breadcrumb {
            background: #f1f1f1;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .search-box {
            background: rgba(255,255,255,0.1);
            border-radius: 30px;
            padding: 5px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-box input {
            background: transparent;
            border: none;
            color: white;
            outline: none;
            width: 200px;
        }
        .search-box input::placeholder {
            color: rgba(255,255,255,0.7);
        }
        .search-box button {
            background: transparent;
            border: none;
            color: white;
            cursor: pointer;
        }
        main {
            flex: 1;
        }
        .article-header {
            padding: 40px 0 30px;
            border-bottom: 3px solid var(--accent);
            margin-bottom: 40px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .article-header h1 { font-size: 2.2rem; }
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .article-meta i { margin-right: 5px; }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin: 30px 0;
        }
        .featured-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            padding: 10px;
            background: #f9f9f9;
        }
        .article-body {
            max-width: 900px;
            margin: 0 auto 60px;
        }
        .article-body p {
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        .article-body h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #ddd;
        }
        .article-body h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin: 35px 0 15px;
        }
        .article-body blockquote {
            border-left: 5px solid var(--accent);
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: var(--gray);
            background: #f9f9f9;
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .article-body ul, .article-body ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        .article-body li {
            margin-bottom: 10px;
        }
        .info-box {
            background: #e8f4ff;
            border-left: 5px solid var(--primary);
            padding: 20px;
            border-radius: 5px;
            margin: 30px 0;
        }
        .groups-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .group-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--secondary);
            transition: var(--transition);
        }
        .group-card:hover {
            transform: translateY(-10px);
        }
        .group-card h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .group-card ul li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .group-card .flag {
            width: 30px;
            height: 20px;
            object-fit: cover;
            border-radius: 2px;
        }
        .internal-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: underline;
        }
        .internal-link:hover {
            color: var(--secondary);
        }
        .interaction-section {
            background: #f8f9fa;
            padding: 50px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .interaction-section h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--dark);
        }
        .rating-widget {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            max-width: 600px;
            margin: 0 auto 40px;
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ddd;
            margin: 20px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 5px;
            transition: var(--transition);
        }
        .stars i.active,
        .stars i:hover {
            color: var(--accent);
        }
        .comment-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0,86,167,0.1);
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        @media (max-width: 600px) {
            .form-row { grid-template-columns: 1fr; }
        }
        .main-footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
            margin-top: auto;
        }
        .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: var(--accent);
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        friend-link h4 {
            color: var(--accent);
            margin-bottom: 15px;
        }
        friend-link ul li {
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
