        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background-color: #0f1419;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #ff4655;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff6b7a;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ff4655;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #00ff9d;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-menu a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-menu a:hover {
            background-color: #ff4655;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            color: #ff4655;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #1a1f2e;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: #ff4655;
        }
        .search-box {
            margin: 2rem auto;
            max-width: 600px;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 0;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ff4655;
            border-radius: 4px 0 0 4px;
            background-color: #1a1f2e;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-btn {
            padding: 0.8rem 1.5rem;
            background-color: #ff4655;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #ff6b7a;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: #1a1f2e;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: #ff4655;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #00ff9d;
            margin: 2rem 0 1rem;
            border-left: 4px solid #ff4655;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #ffb347;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #2a2f3e;
            padding: 1.5rem;
            border-left: 4px solid #ff4655;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.5rem;
        }
        .keyword {
            font-weight: bold;
            color: #ffb347;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .interaction-forms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .form-container {
            background-color: #1a1f2e;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #2a2f3e;
        }
        .form-title {
            color: #00ff9d;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #e0e0e0;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #2a2f3e;
            border-radius: 4px;
            background-color: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #ff4655;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #ff6b7a;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.5rem;
            color: #555;
            cursor: pointer;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffb347;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
            padding: 2rem;
            background-color: #1a1f2e;
            border-radius: 8px;
        }
        .web-link {
            padding: 1rem;
            background-color: #0f1419;
            border-radius: 4px;
            text-align: center;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #2a2f3e;
        }
        footer {
            background-color: #0a0e14;
            padding: 2rem 0;
            text-align: center;
            border-top: 2px solid #ff4655;
        }
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-menu {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .interaction-forms {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
