        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4dabf7;
            transition: color 0.3s, transform 0.2s;
        }
        a:hover {
            color: #74c0fc;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; }
        .highlight {
            background: linear-gradient(90deg, #ff6b6b, #feca57);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: bold;
        }
        .emoji { font-size: 1.2em; }
        .section-padding {
            padding: 60px 0;
        }
        .main-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #feca57, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a { color: inherit; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #c0c0c0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #feca57;
            border-bottom-color: #feca57;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #feca57;
            border-radius: 2px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px 0;
            margin-bottom: 30px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            color: #aaa;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
        }
        .breadcrumb a:hover {
            color: #feca57;
        }
        .search-section {
            background: rgba(26, 58, 95, 0.6);
            padding: 25px;
            border-radius: 15px;
            margin: 30px auto;
            max-width: 800px;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #4dabf7;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            border-color: #feca57;
        }
        .search-btn {
            background: linear-gradient(45deg, #4dabf7, #1c7ed6);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0 30px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(29, 123, 243, 0.4);
        }
        .main-content {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 40px;
        }
        .article-header {
            margin-bottom: 40px;
            border-bottom: 3px solid #feca57;
            padding-bottom: 20px;
        }
        .article-header h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: #aaa;
            font-size: 0.9rem;
        }
        .article-meta i { margin-right: 5px; }
        .content-section {
            margin-bottom: 50px;
        }
        .content-section h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #feca57;
            padding-left: 15px;
            border-left: 5px solid #ff6b6b;
        }
        .content-section h3 {
            font-size: 1.7rem;
            margin: 25px 0 15px;
            color: #74c0fc;
        }
        .content-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .content-section p:has(.bold) {
            font-size: 1.2rem;
            line-height: 1.8;
        }
        .featured-image {
            float: right;
            margin: 0 0 20px 30px;
            max-width: 500px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            border: 5px solid #1a3a5f;
        }
        .pull-quote {
            border-left: 5px solid #feca57;
            padding: 25px;
            margin: 30px 0;
            background: rgba(254, 202, 87, 0.08);
            font-style: italic;
            font-size: 1.3rem;
            border-radius: 0 10px 10px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #1a3a5f, #0c1a2d);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
            border: 1px solid #2a4a7a;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-card .number {
            font-size: 3rem;
            font-weight: 900;
            color: #ff6b6b;
            line-height: 1;
        }
        .stat-card .label {
            font-size: 1.1rem;
            color: #feca57;
            margin-top: 10px;
        }
        .interaction-section {
            background: rgba(26, 58, 95, 0.7);
            padding: 40px;
            border-radius: 20px;
            margin-top: 50px;
        }
        .interaction-section h2 {
            color: #feca57;
            margin-bottom: 30px;
            text-align: center;
        }
        .rating-form, .comment-form {
            background: rgba(12, 26, 45, 0.8);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #feca57;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #aaa;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #4dabf7;
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .form-control:focus {
            border-color: #feca57;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(45deg, #40c057, #2b8a3e);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            display: block;
            margin: 0 auto;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(64, 192, 87, 0.4);
        }
        .footer-links {
            background: rgba(12, 26, 45, 0.9);
            padding: 40px 0;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            margin: 10px;
            padding: 15px 25px;
            border-radius: 50px;
            border: 1px solid #2a4a7a;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(254, 202, 87, 0.15);
            border-color: #feca57;
            transform: translateY(-5px);
        }
        .links-container {
            text-align: center;
        }
        .main-footer {
            background: #0c1a2d;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 3px solid #1a3a5f;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #2a4a7a;
        }
        @media (max-width: 992px) {
            .main-nav ul { gap: 15px; }
            .article-header h1 { font-size: 2.5rem; }
            .content-section h2 { font-size: 2rem; }
            .featured-image {
                float: none;
                margin: 20px auto;
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: rgba(12, 26, 45, 0.98);
                padding: 30px;
                transition: left 0.5s ease;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .main-nav.active { left: 0; }
            .main-nav ul {
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }
            .main-nav a { font-size: 1.3rem; }
            .header-content { padding: 0 10px; }
            .search-form { flex-direction: column; }
            .search-btn { padding: 15px; }
            .main-content { padding: 25px; }
            .interaction-section { padding: 25px; }
            .stats-box { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .logo { font-size: 1.8rem; }
            .article-header h1 { font-size: 2rem; }
            .content-section h2 { font-size: 1.7rem; }
            .content-section h3 { font-size: 1.4rem; }
            .stat-card .number { font-size: 2.5rem; }
            .web-link { display: block; margin: 10px auto; }
        }
