        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #a5d8ff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a {
            background: none;
            color: inherit;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #b0b7c3;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #4ecdc4;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover {
            color: #ffffff;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: #b0b7c3;
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a2332;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 8px 16px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #b0b7c3;
            padding: 0.8rem;
            border-bottom: 1px solid #2a3446;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            color: #ffffff;
            background-color: #2a3446;
        }
        .breadcrumb {
            background-color: #1a2332;
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #8a9bb2;
        }
        .breadcrumb a:hover {
            color: #4ecdc4;
        }
        .breadcrumb span {
            color: #6c7d99;
        }
        .search-section {
            background: linear-gradient(90deg, #2a3446, #1a2332);
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 3rem;
            text-align: center;
        }
        .search-section h2 {
            color: #4ecdc4;
            margin-bottom: 1rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #4ecdc4;
            border-radius: 50px 0 0 50px;
            background: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(90deg, #4ecdc4, #2aa79a);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #2aa79a, #4ecdc4);
            transform: scale(1.05);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: #1a2332;
            border-radius: 16px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 3.2rem;
            color: #ff6b6b;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            color: #4ecdc4;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #2a3446;
        }
        h3 {
            font-size: 1.6rem;
            color: #ffd166;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #cdd4e0;
        }
        .lead {
            font-size: 1.4rem;
            color: #b0b7c3;
            font-weight: 300;
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,107,107,0.2), rgba(78,205,196,0.2));
            border-left: 5px solid #4ecdc4;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 12px 12px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #2a3446;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #ff6b6b;
            margin-bottom: 1rem;
        }
        .feature-img {
            width: 100%;
            border-radius: 16px;
            margin: 2.5rem auto;
            box-shadow: 0 12px 24px rgba(0,0,0,0.7);
            border: 3px solid #4ecdc4;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #8a9bb2;
            margin-top: 0.5rem;
        }
        .emoji {
            font-size: 1.4em;
            margin-right: 0.5rem;
        }
        .strong {
            font-weight: 800;
            color: #ffd166;
        }
        .quote {
            font-size: 1.3rem;
            color: #a5d8ff;
            border-left: 4px solid #ff6b6b;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
        }
        .rating-section, .comment-section {
            background: #2a3446;
            border-radius: 16px;
            padding: 2.5rem;
            margin: 3rem 0;
        }
        .rating-section h2, .comment-section h2 {
            color: #ffd166;
            border-bottom-color: #4ecdc4;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .star {
            font-size: 2.5rem;
            color: #6c7d99;
            cursor: pointer;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .star.active, .star:hover {
            color: #ffd166;
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 0.5rem;
            color: #b0b7c3;
            font-weight: 600;
        }
        input, textarea, select {
            padding: 1rem;
            border-radius: 8px;
            border: 2px solid #4ecdc4;
            background: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            align-self: flex-start;
        }
        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(255,107,107,0.4);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: #2a3446;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #3a4456;
            transform: translateX(5px);
        }
        .web-link a {
            color: #a5d8ff;
            font-weight: 600;
        }
        footer {
            background: #0a0e14;
            padding: 3rem 0 1.5rem;
            text-align: center;
            border-top: 3px solid #4ecdc4;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .copyright {
            color: #8a9bb2;
            font-size: 0.9rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
            .header-container { padding: 0 1rem; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 1rem; }
            .search-btn { border-radius: 50px; }
            .stats-grid { grid-template-columns: 1fr; }
            .web-links { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            .lead { font-size: 1.2rem; }
            article { padding: 1.5rem; }
            .rating-section, .comment-section { padding: 1.5rem; }
        }
