        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #0c4a6e; 
            --secondary: #dc2626; 
            --accent: #10b981; 
            --dark: #1f2937;
            --light: #f8fafc;
            --gray: #6b7280;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 80px 0;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.2) 50%, transparent 100%);
            padding: 2px 8px;
            border-left: 3px solid var(--accent);
        }
        .site-header {
            background-color: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #334155;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #60a5fa, #10b981);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo a { color: inherit; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #cbd5e1;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #cbd5e1;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #1e293b;
            padding: 20px;
            border-top: 1px solid #334155;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            color: #cbd5e1;
            font-weight: 600;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: #334155;
        }
        .breadcrumb {
            background-color: #1e293b;
            padding: 15px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #334155;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: #64748b;
        }
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 100px 20px;
            text-align: center;
            border-bottom: 1px solid #334155;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #60a5fa, #10b981);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #cbd5e1;
        }
        .search-container {
            max-width: 600px;
            margin: 40px auto;
            background: #1e293b;
            padding: 30px;
            border-radius: 10px;
            border: 1px solid #334155;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px 20px;
            background: #0f172a;
            border: 1px solid #475569;
            border-radius: 5px 0 0 5px;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--secondary);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #1e293b;
            border-radius: 10px;
            padding: 40px;
            border: 1px solid #334155;
        }
        article h2, article h3, article h4 {
            color: #f1f5f9;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        article h2 {
            font-size: 2.2rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 10px;
        }
        article h3 {
            font-size: 1.8rem;
            color: #60a5fa;
        }
        article h4 {
            font-size: 1.4rem;
            color: #86efac;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #cbd5e1;
        }
        article ul, article ol {
            margin-left: 25px;
            margin-bottom: 1.5rem;
        }
        article li {
            margin-bottom: 0.7rem;
        }
        .article-img {
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid #475569;
        }
        .sidebar {
            background-color: #1e293b;
            border-radius: 10px;
            padding: 30px;
            border: 1px solid #334155;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h3 {
            color: #f1f5f9;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #475569;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 20px 0;
            font-size: 1.8rem;
            color: #fbbf24;
        }
        .rating-form label {
            display: block;
            margin-bottom: 10px;
        }
        .rating-form select, .rating-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            background: #0f172a;
            border: 1px solid #475569;
            border-radius: 5px;
            color: #e2e8f0;
        }
        .rating-form button {
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background: var(--accent);
        }
        .related-links a {
            display: block;
            padding: 12px 15px;
            margin-bottom: 10px;
            background: #0f172a;
            border-radius: 5px;
            border-left: 4px solid var(--accent);
            transition: var(--transition);
        }
        .related-links a:hover {
            background: #334155;
            transform: translateX(5px);
        }
        .comments-section {
            margin-top: 60px;
            background-color: #1e293b;
            border-radius: 10px;
            padding: 40px;
            border: 1px solid #334155;
        }
        .comment-form label {
            display: block;
            margin-bottom: 10px;
            color: #f1f5f9;
        }
        .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background: #0f172a;
            border: 1px solid #475569;
            border-radius: 5px;
            color: #e2e8f0;
        }
        .comment-form button {
            padding: 15px 30px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: var(--accent);
        }
        .site-footer {
            background-color: #0f172a;
            border-top: 1px solid #334155;
            padding: 60px 0 30px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #60a5fa, #10b981);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: #f1f5f9;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            padding: 50px 20px;
            background: #1e293b;
            border-top: 1px solid #334155;
            border-bottom: 1px solid #334155;
        }
        .friend-links-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        .friend-links-container a {
            padding: 12px 25px;
            background: #0f172a;
            border-radius: 5px;
            border: 1px solid #475569;
            transition: var(--transition);
        }
        .friend-links-container a:hover {
            background: var(--primary);
            border-color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding: 30px 20px;
            color: #94a3b8;
            font-size: 0.9rem;
            border-top: 1px solid #334155;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .main-nav { display: none; }
            .hamburger { display: block; }
            .section-padding { padding: 50px 0; }
            article, .sidebar, .comments-section { padding: 25px; }
            .header-container { padding: 15px; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
            article h2 { font-size: 1.8rem; }
            article h3 { font-size: 1.5rem; }
        }
