        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a { color: #e63946; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #a81c28; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; }
        .py-1 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .py-3 { padding-top: 3rem; padding-bottom: 3rem; }
        .my-2 { margin-top: 2rem; margin-bottom: 2rem; }
        .highlight-box {
            background: linear-gradient(135deg, #ffddc1 0%, #ffb4a2 100%);
            border-left: 5px solid #e63946;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .site-header {
            background: linear-gradient(90deg, #1d3557 0%, #457b9d 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #f1faee;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo span { color: #e63946; }
        .my-logo:hover { color: #a8dadc; }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #f1faee;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #e63946;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1d3557;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            padding: 1rem;
            border-bottom: 1px solid #457b9d;
            font-weight: 600;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #6c757d; }
        .breadcrumb a:hover { color: #e63946; }
        .breadcrumb span { color: #495057; }
        main { background: white; padding: 2rem 0; }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: #1d3557;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #e63946;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #457b9d;
            margin-top: 3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #a8dadc;
        }
        h3 {
            font-size: 1.6rem;
            color: #1d3557;
            margin-top: 2.5rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #e63946;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #495057;
            font-weight: 500;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2.5rem;
        }
        .search-module {
            background: #f1faee;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .search-module h3 { margin-top: 0; color: #1d3557; }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px;
            border: 2px solid #a8dadc;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-input:focus { border-color: #457b9d; }
        .search-btn {
            background: #e63946;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-btn:hover { background: #a81c28; }
        .user-interaction {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 2.5rem;
            margin: 4rem 0;
            border: 1px solid #dee2e6;
        }
        .interaction-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .rating-widget {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .star {
            color: #ddd;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active,
        .star:hover { color: #ffc107; }
        .comment-form, .rating-form {
            display: grid;
            gap: 1.2rem;
        }
        .form-group { display: flex; flex-direction: column; }
        label { font-weight: 600; margin-bottom: 0.5rem; color: #495057; }
        input, textarea, select {
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #457b9d;
            box-shadow: 0 0 0 3px rgba(69, 123, 157, 0.2);
        }
        .submit-btn {
            background: #1d3557;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
            justify-self: start;
        }
        .submit-btn:hover { background: #14213d; }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #6c757d;
            padding: 0.8rem;
            background: #f8f9fa;
            font-size: 0.95rem;
        }
        .site-footer {
            background: #1d3557;
            color: #f1faee;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #a8dadc;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 12px 15px;
            margin-bottom: 10px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        friend-link a { color: #f1faee; }
        friend-link:hover { background: rgba(255,255,255,0.1); }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #457b9d;
            color: #a8dadc;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container, .breadcrumb, article { padding-left: 15px; padding-right: 15px; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 8px; margin-bottom: 10px; }
            .search-btn { border-radius: 8px; padding: 15px; }
            .interaction-header { flex-direction: column; align-items: flex-start; }
        }
