        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            line-height: 1.7;
            font-size: 18px;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #3b82f6;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 15px 0;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 28px;
            font-weight: 800;
            color: #38bdf8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #0ea5e9;
            text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
        }
        .search-form {
            display: flex;
            flex-grow: 0.5;
            max-width: 400px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #475569;
            border-radius: 30px 0 0 30px;
            background-color: #1e293b;
            color: #f1f5f9;
            font-size: 16px;
        }
        .search-form button {
            padding: 12px 25px;
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            border: none;
            border-radius: 0 30px 30px 0;
            color: white;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #1d4ed8, #1e40af);
        }
        .main-nav {
            margin-top: 15px;
            width: 100%;
        }
        .breadcrumb {
            font-size: 14px;
            color: #94a3b8;
            margin-bottom: 10px;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .nav-links {
            display: flex;
            list-style: none;
            background-color: #1e293b;
            border-radius: 10px;
            padding: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-links li {
            margin: 5px 15px;
        }
        .nav-links a {
            padding: 10px 15px;
            display: block;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background-color: #334155;
            color: #60a5fa;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            color: #38bdf8;
            cursor: pointer;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin: 30px 0;
        }
        .article-section {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        .sidebar {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 20px;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        h1 {
            font-size: 42px;
            color: #38bdf8;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 32px;
            color: #60a5fa;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #334155;
        }
        h3 {
            font-size: 24px;
            color: #93c5fd;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: #334155;
            padding: 20px;
            border-left: 5px solid #3b82f6;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        b {
            color: #fbbf24;
        }
        .comment-form, .rating-form {
            background-color: #0f172a;
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #cbd5e1;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 2px solid #475569;
            border-radius: 10px;
            background-color: #1e293b;
            color: #f1f5f9;
            font-size: 16px;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #3b82f6;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 30px;
            color: #fbbf24;
            margin-bottom: 15px;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        button[type="submit"] {
            padding: 15px 30px;
            background: linear-gradient(90deg, #10b981, #059669);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s;
            width: 100%;
        }
        button[type="submit"]:hover {
            background: linear-gradient(90deg, #059669, #047857);
            transform: translateY(-3px);
        }
        .internal-links {
            background-color: #1e293b;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0 20px;
        }
        .web-link {
            display: inline-block;
            background-color: #0f172a;
            padding: 15px 25px;
            margin: 10px;
            border-radius: 10px;
            border: 1px solid #334155;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #334155;
            border-color: #60a5fa;
            transform: translateY(-5px);
        }
        .footer {
            text-align: center;
            padding: 30px;
            background-color: #0f172a;
            border-top: 2px solid #334155;
            font-size: 16px;
            color: #94a3b8;
        }
        .footer p {
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .search-form {
                max-width: 100%;
                width: 100%;
                margin-top: 15px;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .nav-links {
                flex-direction: column;
                display: none;
                width: 100%;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 20px;
            }
        }
        @media (min-width: 769px) {
            .nav-links {
                display: flex !important;
            }
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-item {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            color: white;
        }
        .interview {
            background-color: #0f172a;
            padding: 25px;
            border-radius: 15px;
            border: 2px solid #475569;
            margin: 30px 0;
        }
        .quote {
            font-style: italic;
            color: #cbd5e1;
            border-left: 4px solid #10b981;
            padding-left: 20px;
            margin: 20px 0;
        }
