        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a2a;
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #29b6f6;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        header {
            background: linear-gradient(135deg, #001f3f 0%, #0a0a2a 100%);
            padding: 20px 0;
            border-bottom: 3px solid #ff6f00;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6f00, #ffab00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(255, 111, 0, 0.3);
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 25px;
        }
        .desktop-nav a:hover {
            background: rgba(255, 111, 0, 0.1);
            color: #ffab00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffab00;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #001f3f;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 2px solid #ff6f00;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-radius: 8px;
        }
        .mobile-nav a:hover {
            background: rgba(255, 111, 0, 0.2);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(10, 10, 42, 0.8);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #b3e5fc;
        }
        .breadcrumb span {
            color: #ffcc80;
            margin: 0 8px;
        }
        .hero {
            background: radial-gradient(circle at center, #1a237e 0%, #0a0a2a 70%);
            text-align: center;
            padding: 80px 0;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff8a00, #e52e71);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #bbdefb;
        }
        .search-bar {
            max-width: 700px;
            margin: 40px auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid #3949ab;
        }
        .search-bar h3 {
            margin-bottom: 15px;
            color: #ffcc80;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            background: #1a237e;
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            padding: 15px 25px;
            background: linear-gradient(90deg, #ff6f00, #ff8a00);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #ff8a00, #ff6f00);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-body {
            background: rgba(26, 35, 126, 0.2);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid #303f9f;
        }
        .article-body h2 {
            font-size: 2.5rem;
            color: #82b1ff;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ff6f00;
        }
        .article-body h3 {
            font-size: 1.8rem;
            color: #b3e5fc;
            margin: 25px 0 15px;
        }
        .article-body p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body strong {
            color: #ffcc80;
            font-weight: 700;
        }
        .article-body em {
            color: #ce93d8;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a237e, #311b92);
            border-left: 6px solid #ff6f00;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 15px 15px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #bdbdbd;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(26, 35, 126, 0.3);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid #3949ab;
        }
        .sidebar-widget h3 {
            color: #ffab00;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #3949ab;
        }
        .link-list a {
            display: block;
            padding: 8px;
            border-radius: 8px;
        }
        .link-list a:hover {
            background: rgba(255, 111, 0, 0.1);
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            cursor: pointer;
            margin: 10px 0;
        }
        .star-rating .star {
            color: #555;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffd700;
        }
        .rating-widget input, .comment-widget input, .comment-widget textarea {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #3949ab;
            background: #1a237e;
            color: white;
            font-size: 1rem;
        }
        .rating-widget button, .comment-widget button {
            padding: 15px;
            background: linear-gradient(90deg, #00c853, #64dd17);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .rating-widget button:hover, .comment-widget button:hover {
            background: linear-gradient(90deg, #64dd17, #00c853);
        }
        footer {
            background: linear-gradient(135deg, #001f3f 0%, #000a12 100%);
            padding: 50px 0 20px;
            border-top: 5px solid #ff6f00;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6f00, #ffab00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        .footer-section h4 {
            color: #4fc3f7;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(79, 195, 247, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1a237e;
            color: #bdbdbd;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .article-body {
                padding: 25px;
            }
            .article-body h2 {
                font-size: 2rem;
            }
            .article-body h3 {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input,
            .search-form button {
                width: 100%;
                border-radius: 8px;
                margin-bottom: 10px;
            }
        }
