* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #2c2c2c;
            background: #f8f4f0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #e94560;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(45deg, #e94560, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .main-nav a {
            color: #ddd;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            transition: background 0.3s, color 0.3s;
        }
        .main-nav a:hover {
            background: #e94560;
            color: #fff;
        }
        .breadcrumb {
            background: #f1eae3;
            padding: 10px 20px;
            font-size: 0.85rem;
            border-bottom: 1px solid #e0d5cc;
        }
        .breadcrumb a {
            color: #b83245;
            text-decoration: none;
        }
        .breadcrumb span {
            color: #777;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1618336753974-74dcd5e1a5e0?w=1200') center/cover;
            color: #fff;
            text-align: center;
            padding: 80px 20px;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 750px;
            margin: 0 auto 25px;
            opacity: 0.9;
        }
        .hero .btn-primary {
            background: #e94560;
            color: #fff;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }
        .hero .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(233, 69, 96, 0.4);
        }
        .update-info {
            font-size: 0.85rem;
            margin-top: 15px;
            color: #ffd700;
            font-weight: 600;
        }
        .search-bar {
            max-width: 100%;
            margin: 30px auto 0;
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        .search-bar input {
            padding: 12px 20px;
            width: 60%;
            max-width: 400px;
            border-radius: 50px;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-bar button {
            background: #e94560;
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 0 22px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-bar button:hover {
            background: #c7354f;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 40px 0;
        }
        @media(min-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr 300px;
            }
        }
        article {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
        }
        article h2 {
            font-size: 2rem;
            color: #1a1a2e;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #e94560;
            position: relative;
        }
        article h3 {
            font-size: 1.4rem;
            color: #2c2c2c;
            margin: 30px 0 12px;
        }
        article h4 {
            font-size: 1.1rem;
            color: #b83245;
            margin: 20px 0 8px;
        }
        article p {
            margin-bottom: 16px;
            line-height: 1.8;
            color: #444;
        }
        article img {
            max-width: 100%;
            border-radius: 12px;
            margin: 20px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .callout {
            background: #fffaec;
            border-left: 4px solid #ffd700;
            padding: 18px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        .sidenote {
            background: #f0f4ff;
            border-left: 4px solid #4a8af4;
            padding: 18px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .sidebar-widget {
            background: #fff;
            border-radius: 12px;
            padding: 22px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.1rem;
            color: #1a1a2e;
            margin-bottom: 12px;
            border-bottom: 2px solid #e94560;
            padding-bottom: 6px;
        }
        .sidebar-widget ul {
            list-style: none;
        }
        .sidebar-widget li {
            margin: 8px 0;
        }
        .sidebar-widget a {
            color: #b83245;
            text-decoration: none;
            font-size: 0.9rem;
            transition: padding-left 0.3s;
        }
        .sidebar-widget a:hover {
            padding-left: 6px;
            color: #e94560;
        }
        .review-form,
        .comment-form {
            background: #f9f6f2;
            border-radius: 12px;
            padding: 25px;
            margin-top: 30px;
        }
        .review-form h3,
        .comment-form h3 {
            margin-bottom: 15px;
            color: #1a1a2e;
            font-size: 1.3rem;
        }
        .review-form label,
        .comment-form label {
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
        }
        .review-form input,
        .review-form textarea,
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }
        .review-form button,
        .comment-form button {
            background: #e94560;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .review-form button:hover,
        .comment-form button:hover {
            background: #c7354f;
        }
        .rating-select {
            display: flex;
            gap: 8px;
        }
        .rating-select input[type="radio"] {
            display: none;
        }
        .rating-select label {
            font-size: 1.8rem;
            cursor: pointer;
            color: #ddd;
            transition: color 0.2s;
        }
        .rating-select label:hover,
        .rating-select input:checked+label {
            color: #ffd700;
        }
        .site-footer {
            background: #1a1a2e;
            color: #aaa;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media(min-width: 768px) {
            .footer-inner {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        .footer-col h4 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .footer-col a {
            color: #bbb;
            text-decoration: none;
            font-size: 0.9rem;
            display: block;
            margin: 5px 0;
        }
        .footer-col a:hover {
            color: #e94560;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            margin-top: 20px;
            font-size: 0.85rem;
            color: #666;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
            font-style: normal;
        }
        friend-link a {
            color: #bbb;
            text-decoration: none;
            font-size: 0.9rem;
            padding: 5px 12px;
            background: #2a2a3e;
            border-radius: 30px;
            transition: background 0.3s;
        }
        friend-link a:hover {
            background: #e94560;
            color: #fff;
        }
        @media(max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                background: #1a1a2e;
                padding: 10px 0;
            }
            .main-nav.open {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
                padding: 0 15px;
            }
            .main-nav a {
                display: block;
                padding: 10px 0;
                border-bottom: 1px solid #333;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        article section {
            animation: fadeInUp 0.6s ease-out;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        .info-table th,
        .info-table td {
            border: 1px solid #eee;
            padding: 12px;
            text-align: left;
        }
        .info-table th {
            background: #f8f4f0;
            font-weight: 600;
            color: #1a1a2e;
        }
        @media(max-width: 600px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            article {
                padding: 20px;
            }
            .search-bar input {
                width: 75%;
            }
        }
