:root {
            --primary-blue: #0a1428;
            --accent-orange: #f99e1a;
            --highlight-gold: #ffd700;
            --neutral-light: #f5f5f5;
            --neutral-dark: #1e2a47;
            --text-primary: #e6e6e6;
            --text-secondary: #b3b3b3;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-blue);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-orange);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--highlight-gold);
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, rgba(10, 20, 40, 0.95), var(--primary-blue));
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-orange);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-orange), #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--accent-orange);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--neutral-dark);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 0 0 15px 15px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            color: var(--highlight-gold);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--neutral-light);
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            padding: 1.5rem;
            background-color: rgba(30, 42, 71, 0.8);
            border-radius: 10px;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--accent-orange);
            border-radius: 8px 0 0 8px;
            background-color: var(--neutral-light);
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--accent-orange);
            color: var(--primary-blue);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: var(--highlight-gold);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        .main-content h2 {
            font-size: 2.5rem;
            color: var(--accent-orange);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--neutral-dark);
        }
        .main-content h3 {
            font-size: 2rem;
            color: var(--highlight-gold);
            margin: 2rem 0 1rem;
        }
        .main-content h4 {
            font-size: 1.5rem;
            color: #4fc3f7;
            margin: 1.5rem 0 0.8rem;
        }
        .main-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .main-content strong {
            color: var(--accent-orange);
        }
        .article-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            border: 3px solid var(--neutral-dark);
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .related-links {
            background-color: var(--neutral-dark);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .related-links li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }
        .sidebar-widget {
            background-color: var(--neutral-dark);
            padding: 1.8rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border-left: 5px solid var(--accent-orange);
        }
        .sidebar-widget h3 {
            color: var(--highlight-gold);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }
        .rating-box, .comment-box {
            background-color: rgba(30, 42, 71, 0.9);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: var(--text-secondary);
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--highlight-gold);
        }
        .rating-box form, .comment-box form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-box input, .comment-box input,
        .comment-box textarea {
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #444;
            background-color: var(--neutral-light);
            font-size: 1rem;
        }
        .comment-box textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-btn {
            background-color: var(--accent-orange);
            color: var(--primary-blue);
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            align-self: flex-start;
            transition: background-color 0.3s;
        }
        .form-btn:hover {
            background-color: var(--highlight-gold);
        }
        footer {
            background-color: var(--neutral-dark);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--accent-orange);
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--highlight-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 5px;
            margin-bottom: 1rem;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-blue);
                flex-direction: column;
                padding: 2rem;
                text-align: center;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .main-content h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            .search-box form {
                flex-direction: column;
            }
            .search-box input, .search-box button {
                width: 100%;
                border-radius: 8px;
                margin-bottom: 0.5rem;
            }
        }
