* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a3a5f 100%);
            color: #f0f8ff;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #4fc3f7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: rgba(12, 26, 45, 0.95);
            padding: 15px 0;
            border-bottom: 2px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #4fc3f7;
        }
        .search-form {
            flex: 1;
            max-width: 400px;
            margin: 0 30px;
        }
        .search-box {
            display: flex;
            background: #1e3a5f;
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid #4fc3f7;
        }
        .search-box input {
            flex: 1;
            padding: 12px 20px;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: #ffcc00;
            color: #0c1a2d;
            border: none;
            padding: 12px 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ffb300;
        }
        .nav {
            display: flex;
            gap: 25px;
        }
        .nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav a:hover {
            background: rgba(79, 195, 247, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .breadcrumb {
            background: rgba(30, 58, 95, 0.8);
            padding: 10px 0;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #ffcc00;
        }
        .breadcrumb span {
            color: #ccc;
            margin: 0 8px;
        }
        .main-content {
            flex: 1;
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-section {
            background: rgba(30, 58, 95, 0.7);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-section h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px solid #4fc3f7;
            padding-bottom: 15px;
        }
        .article-section h2 {
            font-size: 2rem;
            color: #4fc3f7;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 5px solid #ffcc00;
        }
        .article-section h3 {
            font-size: 1.5rem;
            color: #ffcc00;
            margin: 20px 0 10px;
        }
        .article-section p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.1);
            border-left: 4px solid #ffcc00;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 15px;
            border: 3px solid #4fc3f7;
            max-width: 800px;
            width: 100%;
        }
        .featured-image figcaption {
            font-style: italic;
            margin-top: 10px;
            color: #ccc;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .sidebar {
            background: rgba(30, 58, 95, 0.7);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(12, 26, 45, 0.9);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #4fc3f7;
        }
        .widget h3 {
            color: #ffcc00;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form textarea,
        .rating-form select,
        .rating-form button,
        .comment-form button {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid #4fc3f7;
            background: #1e3a5f;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-form select {
            cursor: pointer;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }
        .star {
            color: #ccc;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .btn {
            background: #ffcc00;
            color: #0c1a2d;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .btn:hover {
            background: #ffb300;
        }
        .footer-links {
            background: rgba(12, 26, 45, 0.9);
            padding: 40px 0 20px;
            margin-top: 40px;
            border-top: 2px solid #ffcc00;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background: rgba(30, 58, 95, 0.8);
            padding: 15px;
            border-radius: 10px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(79, 195, 247, 0.3);
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 600;
            display: block;
            padding: 5px 0;
        }
        .copyright {
            text-align: center;
            padding: 20px;
            color: #ccc;
            font-size: 0.9rem;
            border-top: 1px solid #4fc3f7;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                max-width: 100%;
                margin: 15px 0 0;
            }
            .nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(12, 26, 45, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 1px solid #4fc3f7;
            }
            .nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-section h1 {
                font-size: 2.2rem;
            }
            .article-section h2 {
                font-size: 1.8rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-section, .sidebar, .footer-links {
            animation: fadeIn 0.8s ease-out;
        }
