        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #0f4c75;
            --highlight: #00b4d8;
            --text: #e6e6e6;
            --text-secondary: #b0b0b0;
            --border: #2d3748;
            --success: #4ade80;
            --warning: #fbbf24;
            --card-bg: rgba(26, 26, 46, 0.8);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text);
            background: linear-gradient(135deg, var(--primary) 0%, #0d0d1a 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        header {
            background: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--highlight), #48cae4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(0, 180, 216, 0.3);
        }
        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 1.8rem;
            list-style: none;
        }
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--highlight);
            background: rgba(15, 76, 117, 0.2);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--highlight);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 80%;
        }
        .search-box {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 0.5rem 1rem;
            border: 1px solid var(--border);
        }
        .search-box input {
            background: transparent;
            border: none;
            color: var(--text);
            padding: 0.5rem;
            width: 200px;
            outline: none;
        }
        .search-box button {
            background: transparent;
            border: none;
            color: var(--highlight);
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-box button:hover {
            transform: scale(1.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--text);
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1.5rem auto;
            padding: 0 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--highlight);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        .breadcrumb a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--text-secondary);
        }
        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }
        .content-area {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 3rem;
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        article {
            margin-bottom: 4rem;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #fff, var(--highlight));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.4rem;
            margin: 3rem 0 1.5rem;
            color: var(--highlight);
            border-left: 4px solid var(--highlight);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            color: #48cae4;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text);
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #f0f0f0;
            background: rgba(15, 76, 117, 0.15);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--highlight);
            margin-bottom: 2.5rem;
        }
        .highlight-box {
            background: rgba(15, 76, 117, 0.2);
            border: 1px solid var(--accent);
            border-radius: 8px;
            padding: 2rem;
            margin: 2.5rem 0;
            position: relative;
            overflow: hidden;
        }
        .highlight-box::before {
            content: '⚡';
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            opacity: 0.3;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: rgba(22, 33, 62, 0.7);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid var(--border);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 180, 216, 0.2);
            border-color: var(--highlight);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--highlight);
            display: block;
            margin-bottom: 0.5rem;
        }
        .interview {
            background: rgba(26, 26, 46, 0.9);
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border-left: 5px solid var(--warning);
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: #f0f0f0;
            position: relative;
            padding-left: 2rem;
        }
        .quote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 4rem;
            color: var(--warning);
            opacity: 0.3;
            font-family: serif;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            border: 2px solid var(--border);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        .image-caption {
            text-align: center;
            color: var(--text-secondary);
            font-style: italic;
            margin-top: -1rem;
            margin-bottom: 2rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid var(--border);
        }
        .widget-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--highlight);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .star {
            font-size: 2rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .star:hover {
            color: var(--warning);
            transform: scale(1.2);
        }
        .star.active {
            color: var(--warning);
        }
        .rating-form {
            display: none;
        }
        .btn {
            background: linear-gradient(90deg, var(--accent), var(--highlight));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            text-decoration: none;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
        }
        .comment-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: var(--text);
        }
        .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 0.8rem;
            color: var(--text);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--highlight);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .footer-links {
            max-width: 1400px;
            margin: 4rem auto 2rem;
            padding: 0 2rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(22, 33, 62, 0.7);
            border-radius: 8px;
            padding: 1.2rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: var(--highlight);
            box-shadow: 0 10px 20px rgba(0, 180, 216, 0.2);
        }
        .web-link a {
            color: var(--highlight);
            text-decoration: none;
            font-weight: 600;
            display: block;
            transition: color 0.3s ease;
        }
        .web-link a:hover {
            color: #48cae4;
            text-decoration: underline;
        }
        .web-link p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-top: 0.5rem;
            margin-bottom: 0;
        }
        footer {
            background: rgba(10, 15, 30, 0.95);
            border-top: 2px solid var(--accent);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .copyright {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .copyright a {
            color: var(--highlight);
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        @media (max-width: 1200px) {
            main {
                grid-template-columns: 1fr;
                padding: 1.5rem;
            }
            .sidebar {
                grid-column: 1;
                grid-template-columns: repeat(2, 1fr);
                display: grid;
                gap: 2rem;
            }
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            .header-container {
                padding: 0 1.5rem;
            }
            .nav-links {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .mobile-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(22, 33, 62, 0.98);
                backdrop-filter: blur(10px);
                padding: 2rem;
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.4s ease;
                z-index: 999;
                border-top: 1px solid var(--border);
            }
            .mobile-nav.active {
                transform: translateY(0);
                opacity: 1;
            }
            .mobile-nav a {
                color: var(--text);
                text-decoration: none;
                font-size: 1.2rem;
                padding: 0.8rem;
                border-radius: 6px;
                transition: all 0.3s ease;
                border-left: 3px solid transparent;
            }
            .mobile-nav a:hover {
                background: rgba(15, 76, 117, 0.3);
                border-left-color: var(--highlight);
                padding-left: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .content-area {
                padding: 2rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
            .search-box input {
                width: 150px;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .breadcrumb, .footer-links, .header-container {
                padding: 0 1rem;
            }
            .content-area {
                padding: 1.5rem;
            }
            .search-box {
                display: none;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .delayed-1 { animation-delay: 0.2s; }
        .delayed-2 { animation-delay: 0.4s; }
        .delayed-3 { animation-delay: 0.6s; }
        .text-highlight {
            color: var(--highlight);
            font-weight: 700;
        }
        .bold {
            font-weight: 800;
            color: #fff;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
            margin: 3rem 0;
            border: none;
        }
