        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0f1923 0%, #1a2b3c 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: #ff4655; transition: all 0.3s ease; }
        a:hover { color: #ff7a85; text-shadow: 0 0 8px rgba(255, 70, 85, 0.5); }
        ul, ol { padding-left: 2rem; margin: 1rem 0; }
        li { margin-bottom: 0.5rem; }
        blockquote {
            border-left: 4px solid #ff4655;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            background: rgba(255, 70, 85, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { color: #ff4655; }
        .emoji { margin-right: 0.5rem; }
        .section-padding { padding: 4rem 0; }
        .bg-dark { background-color: rgba(15, 25, 35, 0.9); }
        .rounded { border-radius: 8px; }
        .shadow { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
        header { background-color: #0f1923; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #ff4655; }
        .header-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 20px; }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #ff4655, #9a4c95);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover { transform: scale(1.03); }
        nav ul { display: flex; list-style: none; gap: 2rem; }
        nav a { color: #ece8e1; font-weight: 600; padding: 0.5rem 1rem; border-radius: 4px; }
        nav a:hover { background-color: rgba(255, 70, 85, 0.2); }
        .hamburger { display: none; font-size: 1.8rem; color: #ece8e1; cursor: pointer; }
        .breadcrumb { padding: 1rem 20px; background-color: #1a2b3c; font-size: 0.9rem; }
        .breadcrumb a { color: #9a9a9a; }
        .breadcrumb a:hover { color: #ff4655; }
        .breadcrumb span { color: #ccc; margin: 0 0.5rem; }
        .search-container { padding: 2rem 0; background: linear-gradient(90deg, #1a2b3c, #0f1923); }
        .search-form { max-width: 600px; margin: 0 auto; display: flex; }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            background: #ece8e1;
            color: #0f1923;
            font-size: 1rem;
        }
        .search-button {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #ff4655, #d43a48);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
        }
        .search-button:hover { background: linear-gradient(90deg, #ff5a67, #ff4655); }
        main { padding: 2rem 0; }
        article { background: rgba(26, 43, 60, 0.8); border-radius: 12px; padding: 3rem; margin-bottom: 3rem; }
        h1 {
            font-size: 3.5rem;
            color: #ff4655;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }
        h2 { font-size: 2.5rem; color: #ece8e1; margin: 2.5rem 0 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid #2a3d52; }
        h3 { font-size: 1.8rem; color: #9a4c95; margin: 2rem 0 1rem; }
        h4 { font-size: 1.4rem; color: #4a9c95; margin: 1.5rem 0 0.8rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; color: #d1d1d1; }
        .intro { font-size: 1.3rem; color: #ece8e1; margin-bottom: 2.5rem; }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2.5rem auto;
            border: 3px solid #ff4655;
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .card {
            background: #1a2b3c;
            padding: 2rem;
            border-radius: 10px;
            border-top: 5px solid #ff4655;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(255, 70, 85, 0.2); }
        .stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 2rem 0; }
        .stat-box { text-align: center; padding: 1.5rem; background: rgba(255, 255, 255, 0.05); border-radius: 8px; }
        .stat-number { font-size: 2.5rem; color: #ff4655; font-weight: 800; }
        .stat-label { font-size: 1rem; color: #aaa; }
        .interaction-section { margin: 3rem 0; padding: 2.5rem; background: rgba(15, 25, 35, 0.7); border-radius: 12px; }
        .interaction-section h2 { text-align: center; }
        .rating-container { display: flex; justify-content: center; align-items: center; gap: 1rem; margin: 2rem 0; }
        .star { font-size: 2.5rem; color: #444; cursor: pointer; transition: color 0.2s; }
        .star:hover, .star.active { color: #ffcc00; }
        .form-group { margin-bottom: 1.5rem; }
        .form-label { display: block; margin-bottom: 0.5rem; color: #ece8e1; }
        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 6px;
            border: 1px solid #2a3d52;
            background: #0f1923;
            color: #ece8e1;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus { border-color: #ff4655; outline: none; }
        .form-textarea { min-height: 150px; resize: vertical; }
        .submit-button {
            background: linear-gradient(90deg, #ff4655, #9a4c95);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            margin: 1.5rem auto 0;
        }
        .submit-button:hover { background: linear-gradient(90deg, #ff5a67, #a855a3); transform: scale(1.05); }
        footer { background-color: #0a141f; padding: 3rem 0 1.5rem; margin-top: 4rem; border-top: 2px solid #ff4655; }
        .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; }
        .footer-logo { font-size: 2rem; margin-bottom: 1rem; }
        .footer-heading { color: #ff4655; margin-bottom: 1.5rem; font-size: 1.5rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: #b0b0b0; }
        .footer-links a:hover { color: #ff4655; padding-left: 5px; }
        friend-link {
            display: block;
            background: rgba(255, 70, 85, 0.1);
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 6px;
            border-left: 4px solid #ff4655;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3d52;
            color: #888;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #9a9a9a;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #2a3d52;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f1923;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #2a3d52;
            }
            nav ul.active { display: flex; }
            .hamburger { display: block; }
            .content-grid { grid-template-columns: 1fr; }
            .stats { grid-template-columns: repeat(2, 1fr); }
            .rating-container { flex-wrap: wrap; }
            .star { font-size: 2rem; }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .intro { font-size: 1.1rem; }
            .search-form { flex-direction: column; }
            .search-input, .search-button { border-radius: 50px; width: 100%; }
            .search-button { margin-top: 1rem; padding: 1rem; }
            .stats { grid-template-columns: 1fr; }
            .interaction-section { padding: 1.5rem; }
        }
