        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0f1923 0%, #1a2a3a 100%);
            color: #ece8e1;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff8e9e;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        header {
            background: rgba(15, 25, 35, 0.95);
            padding: 20px 0;
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ff4655;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .logo a {
            color: inherit;
        }
        .logo span {
            color: #ece8e1;
        }
        .breadcrumb {
            margin: 15px 0;
            font-size: 0.9rem;
            color: #b8b8b8;
        }
        .breadcrumb a {
            color: #b8b8b8;
        }
        .breadcrumb a:hover {
            color: #ff4655;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .nav-links a:hover {
            background: rgba(255, 70, 85, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ece8e1;
            cursor: pointer;
            padding: 10px;
        }
        .search-form {
            display: flex;
            margin-left: 20px;
        }
        .search-form input {
            padding: 10px 15px;
            border: 1px solid #444;
            border-radius: 5px 0 0 5px;
            background: #1a2a3a;
            color: #ece8e1;
            width: 200px;
        }
        .search-form button {
            padding: 10px 15px;
            background: #ff4655;
            border: none;
            border-radius: 0 5px 5px 0;
            color: white;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #ff8e9e;
        }
        main {
            padding: 40px 0;
            background: rgba(26, 42, 58, 0.8);
            border-radius: 15px;
            margin: 30px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        article {
            padding: 0 30px;
        }
        h1, h2, h3 {
            color: #ff4655;
            margin-bottom: 20px;
            font-weight: 800;
        }
        h1 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #ff4655;
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 30px;
            color: #ece8e1;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 70, 85, 0.1);
            padding: 20px;
            border-left: 4px solid #ff4655;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            border: 2px solid #444;
        }
        .figure-caption {
            text-align: center;
            font-style: italic;
            color: #b8b8b8;
            margin-top: 10px;
        }
        .link-inline {
            font-weight: bold;
            border-bottom: 1px dashed #ff4655;
        }
        .interactive-section {
            background: rgba(15, 25, 35, 0.9);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border: 1px solid #444;
        }
        .interactive-section h2 {
            border: none;
            text-align: center;
        }
        .rating-form, .comment-form {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating-stars label:hover,
        .rating-stars input:checked ~ label {
            color: #ffc107;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            border: 1px solid #444;
            border-radius: 8px;
            background: #1a2a3a;
            color: #ece8e1;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #ff4655;
            outline: none;
        }
        .btn-submit {
            padding: 15px 30px;
            background: #ff4655;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            justify-self: center;
            min-width: 200px;
        }
        .btn-submit:hover {
            background: #ff8e9e;
            transform: translateY(-3px);
        }
        .btn-submit:active {
            transform: translateY(0);
        }
        footer {
            background: #0f1923;
            padding: 40px 0 20px;
            border-top: 2px solid #ff4655;
            margin-top: 50px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(255, 70, 85, 0.1);
            padding: 15px;
            border-radius: 8px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 70, 85, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            display: block;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #b8b8b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                font-size: 2rem;
                margin-bottom: 15px;
            }
            nav {
                width: 100%;
                justify-content: space-between;
                align-items: center;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(15, 25, 35, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 1px solid #444;
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
            }
            .search-form input {
                width: 100%;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .interactive-section {
                padding: 20px;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                padding: 0 30px;
            }
            .nav-links {
                gap: 15px;
            }
        }
