        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #0f4c75;
            --secondary: #3282b8;
            --accent: #bbe1fa;
            --dark: #1b262c;
            --light: #f8f9fa;
            --success: #28a745;
            --warning: #ffc107;
            --danger: #dc3545;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            color: white;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background-color: var(--accent); padding: 2px 6px; border-radius: 4px; }
        .site-header {
            background-color: var(--dark);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .my-logo i {
            margin-right: 10px;
            color: var(--warning);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            margin-left: 25px;
        }
        .main-nav a {
            color: white;
            font-weight: 500;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover {
            border-bottom-color: var(--accent);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--dark);
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #6c757d;
        }
        .hero {
            background: linear-gradient(rgba(27, 38, 44, 0.85), rgba(27, 38, 44, 0.9)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .search-bar {
            background-color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: -40px auto 40px;
            max-width: 800px;
            position: relative;
            z-index: 10;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid var(--accent);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 30px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--secondary);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 60px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article-content h2, .article-content h3, .article-content h4 {
            color: var(--primary);
            margin-top: 1.8em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        .article-content h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--secondary);
            padding-left: 15px;
        }
        .article-content h3 {
            font-size: 1.8rem;
        }
        .article-content h4 {
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
        }
        .article-content ul, .article-content ol {
            margin-bottom: 1.5em;
            padding-left: 30px;
        }
        .article-content li {
            margin-bottom: 0.5em;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #eee;
        }
        .sidebar a {
            color: #333;
            display: flex;
            align-items: center;
        }
        .sidebar a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .sidebar i {
            margin-right: 10px;
            color: var(--secondary);
        }
        .user-interaction {
            background-color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-top: 40px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .comment-box, .rating-box {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: var(--border-radius);
        }
        .rating-stars {
            font-size: 2rem;
            color: #ddd;
            margin: 15px 0;
            cursor: pointer;
        }
        .rating-stars .star {
            margin-right: 5px;
            transition: var(--transition);
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--warning);
        }
        textarea, select, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .site-footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background-color: rgba(255,255,255,0.05);
            margin-bottom: 8px;
            border-radius: 4px;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(255,255,255,0.1);
            padding-left: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2d3748;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .article-content { padding: 25px; }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: var(--transition);
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                width: 100%;
            }
            .main-nav li {
                margin: 0;
                width: 100%;
                text-align: center;
            }
            .main-nav a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid #2d3748;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input,
            .search-form button {
                border-radius: var(--border-radius);
                margin-bottom: 10px;
            }
        }
