        * {
            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: #e0e7ff;
            line-height: 1.8;
            min-height: 100vh;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff9900;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff9900, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            transition: transform 0.3s;
            display: block;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #e0e7ff;
            text-decoration: none;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover {
            background: #ff9900;
            color: #0c1a2d;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 10px;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background: #ffcc00;
            border-radius: 2px;
            transition: 0.3s;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(12, 26, 45, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #ff9900;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #e0e7ff;
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid #2a4365;
            font-weight: 600;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background: #1a3a5f;
        }
        .breadcrumb {
            padding: 20px 0;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        .breadcrumb a {
            color: #ffcc00;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-container {
            background: rgba(26, 58, 95, 0.7);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid #2a4365;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 2px dashed #ff9900;
            padding-bottom: 30px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h2 {
            color: #ff9900;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a4365;
        }
        .article-body h3 {
            color: #ffcc00;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        .article-body p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .article-body strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article-body em {
            color: #a0aec0;
        }
        .highlight-box {
            background: linear-gradient(90deg, #1a365d, #2a4365);
            border-left: 5px solid #ff9900;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            border: 3px solid #ff9900;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            transition: transform 0.5s;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(26, 58, 95, 0.7);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #2a4365;
        }
        .widget h3 {
            color: #ff9900;
            margin-bottom: 20px;
            font-size: 1.5rem;
            border-bottom: 1px solid #2a4365;
            padding-bottom: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px;
            border: 1px solid #2a4365;
            border-radius: 10px 0 0 10px;
            background: #0c1a2d;
            color: #e0e7ff;
            font-size: 1rem;
        }
        .search-button {
            background: #ff9900;
            color: #0c1a2d;
            border: none;
            border-radius: 0 10px 10px 0;
            padding: 0 25px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #ffcc00;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-input, .form-textarea {
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #2a4365;
            background: #0c1a2d;
            color: #e0e7ff;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(90deg, #ff9900, #ffcc00);
            color: #0c1a2d;
            border: none;
            border-radius: 10px;
            padding: 15px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .submit-button:hover {
            transform: translateY(-3px);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            margin: 15px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #4a5568;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 60px 0 40px;
        }
        .web-link {
            background: rgba(26, 58, 95, 0.7);
            border-radius: 10px;
            padding: 20px;
            border-left: 4px solid #ff9900;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateX(10px);
            background: rgba(42, 67, 101, 0.8);
        }
        .web-link a {
            color: #ffcc00;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .main-footer {
            background: rgba(12, 26, 45, 0.95);
            border-top: 2px solid #ff9900;
            padding: 40px 0 20px;
            text-align: center;
        }
        .copyright {
            color: #a0aec0;
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #2a4365;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2rem;
            }
            .article-container {
                padding: 25px;
            }
            .main-content {
                padding: 20px 0;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
