        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a1a2a;
            color: #e0e7ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffeb3b;
            text-shadow: 0 0 5px rgba(255, 235, 59, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0c2461 0%, #1a3a5f 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #ff9800;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff9800, #ffeb3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            animation: pulse 1s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .my-logo i {
            font-size: 2rem;
            color: #ff9800;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ffeb3b;
            margin: 4px 0;
            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);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #bbdefb;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #ff9800;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 100%;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #ffeb3b;
            background-color: rgba(255, 152, 0, 0.1);
        }
        .breadcrumb {
            background-color: #11283d;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a4365;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: #90caf9;
        }
        .breadcrumb i {
            margin: 0 5px;
            color: #64b5f6;
        }
        .breadcrumb span.current {
            color: #ffcc80;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 26, 42, 0.9), rgba(10, 26, 42, 0.9)), url('https://images.unsplash.com/photo-1536152471326-642d74f4a465?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 3rem 0;
            text-align: center;
            margin-bottom: 2rem;
            border-radius: 0 0 15px 15px;
        }
        .hero-section h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #ffeb3b;
            text-shadow: 0 2px 10px rgba(0,0,0,0.7);
        }
        .hero-section p.lead {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #bbdefb;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 152, 0, 0.2);
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            color: #ffcc80;
            border: 1px dashed #ff9800;
        }
        .main-content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(17, 40, 61, 0.8);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #2a4365;
        }
        .article-content h1,
        .article-content h2,
        .article-content h3,
        .article-content h4 {
            color: #4fc3f7;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article-content h1 { font-size: 2.8rem; border-bottom: 3px solid #ff9800; padding-bottom: 0.5rem; }
        .article-content h2 { font-size: 2.2rem; color: #ffcc80; padding-left: 10px; border-left: 5px solid #4fc3f7; }
        .article-content h3 { font-size: 1.8rem; color: #80deea; }
        .article-content h4 { font-size: 1.4rem; color: #a5d6a7; }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: #ffeb3b;
            font-weight: 700;
        }
        .article-content em {
            color: #ce93d8;
            font-style: italic;
        }
        .article-content ul, .article-content ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .article-content li {
            margin-bottom: 0.8rem;
            padding-left: 0.5rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            border-left: 5px solid #ff9800;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            padding: 1.5rem;
            background: rgba(42, 67, 101, 0.5);
            border-radius: 8px;
            margin: 2rem 0;
        }
        .inline-link-list a {
            background: rgba(33, 150, 243, 0.2);
            padding: 0.7rem 1.2rem;
            border-radius: 6px;
            border: 1px solid #2196f3;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .inline-link-list a:hover {
            background: rgba(33, 150, 243, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
        }
        .featured-image {
            margin: 2.5rem auto;
            max-width: 900px;
            border: 3px solid #ff9800;
            box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background: rgba(0, 0, 0, 0.7);
            color: #ffcc80;
            border-radius: 0 0 5px 5px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-widget {
            background: rgba(17, 40, 61, 0.9);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #2a4365;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .sidebar-widget h3 {
            color: #ffcc80;
            border-bottom: 2px solid #4fc3f7;
            padding-bottom: 0.7rem;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-widget h3 i {
            color: #ff9800;
        }
        .search-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .search-form input[type="search"] {
            padding: 0.9rem 1.2rem;
            border-radius: 50px;
            border: 2px solid #4fc3f7;
            background: #0a1a2a;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .search-form input[type="search"]:focus {
            outline: none;
            border-color: #ffeb3b;
            box-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
        }
        .search-form button {
            padding: 0.9rem;
            border-radius: 50px;
            border: none;
            background: linear-gradient(to right, #4fc3f7, #2196f3);
            color: #0a1a2a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #29b6f6, #1e88e5);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(33, 150, 243, 0.6);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #bbdefb;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid #546e7a;
            background: rgba(10, 26, 42, 0.8);
            color: #e0e7ff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ff9800;
            box-shadow: 0 0 8px rgba(255, 152, 0, 0.3);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            font-size: 2rem;
            color: #546e7a;
            cursor: pointer;
        }
        .star-rating .star {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffeb3b;
            transform: scale(1.2);
        }
        .submit-btn {
            padding: 1rem;
            border-radius: 8px;
            border: none;
            background: linear-gradient(to right, #ff9800, #ffb74d);
            color: #0a1a2a;
            font-weight: 800;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            letter-spacing: 1px;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #fb8c00, #ffa726);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 152, 0, 0.5);
        }
        .site-footer {
            background: linear-gradient(135deg, #0c2461 0%, #1a3a5f 100%);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 5px solid #ff9800;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-widget h4 {
            color: #ffcc80;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #4fc3f7;
        }
        .footer-widget ul {
            list-style: none;
        }
        .footer-widget li {
            margin-bottom: 0.8rem;
        }
        .footer-widget a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #bbdefb;
        }
        .footer-widget a:hover {
            color: #ffeb3b;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255, 152, 0, 0.1);
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            border: 1px dashed #ff9800;
            text-align: center;
            font-weight: 600;
            color: #ffcc80;
        }
        friend-link a {
            color: #4fc3f7;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a4365;
            color: #90caf9;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .hamburger {
                display: flex;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            .main-nav {
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .main-nav a {
                display: block;
                padding: 0.8rem;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.05);
            }
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
        }
