        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0b0d17;
            color: #e0e6f0;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #00e5ff;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ff6ec7;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f0f4ff;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #ff6ec7;
            padding-left: 1rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #1e2a4a;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #b0e0ff;
        }
        h4 {
            font-size: 1.15rem;
            color: #88c8ff;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong {
            color: #ffb347;
            font-weight: 700;
        }
        em {
            color: #80d0ff;
            font-style: italic;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.75rem;
        }
        .site-header {
            padding: 1.2rem 0;
            border-bottom: 1px solid #1e2a4a;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            background: #0b0d17;
            z-index: 10;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #ff6ec7, #00e5ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #e0e6f0;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            font-weight: 500;
            padding: 0.3rem 0;
            position: relative;
        }
        .nav-menu li a::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #ff6ec7;
            transition: width 0.25s ease;
            margin-top: 2px;
        }
        .nav-menu li a:hover::after,
        .nav-menu li a:focus::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 0.8rem 0;
            font-size: 0.9rem;
            color: #8a9bb5;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            border-bottom: 1px solid #151e30;
            margin-bottom: 1.5rem;
        }
        .breadcrumb a {
            color: #00e5ff;
        }
        .breadcrumb span {
            color: #5a6f8a;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #1e2a4a;
            border-radius: 40px;
            background: #0f1325;
            color: #e0e6f0;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #00e5ff;
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            border: none;
            border-radius: 40px;
            background: linear-gradient(135deg, #ff6ec7, #c44569);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(255, 110, 199, 0.3);
        }
        .featured-figure {
            margin: 2rem 0 1.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 229, 255, 0.08);
        }
        .featured-figure figcaption {
            padding: 0.6rem 1rem;
            background: #111a2e;
            font-size: 0.9rem;
            color: #8a9bb5;
            text-align: center;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 992px) {
            .content-grid {
                grid-template-columns: 2fr 1fr;
            }
        }
        .highlight-box {
            background: #111a2e;
            border-left: 5px solid #ff6ec7;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-block {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            justify-content: space-around;
            background: #0f1325;
            border-radius: 16px;
            padding: 1.5rem 1rem;
            margin: 1.5rem 0;
            border: 1px solid #1e2a4a;
        }
        .stat-item {
            text-align: center;
            min-width: 100px;
        }
        .stat-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ff6ec7;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #8a9bb5;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #0f1325;
            border-radius: 12px;
            overflow: hidden;
        }
        .styled-table th,
        .styled-table td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #1a2540;
        }
        .styled-table th {
            background: #1a2540;
            color: #00e5ff;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
        }
        .styled-table tr:last-child td {
            border-bottom: none;
        }
        .styled-table tr:hover td {
            background: #141e34;
        }
        .feedback-section {
            margin: 2.5rem 0;
            padding: 1.5rem;
            background: #0f1325;
            border-radius: 16px;
            border: 1px solid #1e2a4a;
        }
        .feedback-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #b0e0ff;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #1e2a4a;
            border-radius: 8px;
            background: #0b0d17;
            color: #e0e6f0;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #00e5ff;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .form-row .form-group {
            flex: 1;
            min-width: 150px;
        }
        .btn-submit {
            padding: 0.7rem 2.2rem;
            border: none;
            border-radius: 40px;
            background: linear-gradient(135deg, #00e5ff, #0077b6);
            color: #0b0d17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .btn-submit:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #3a4a6a;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3a4a6a;
            transition: color 0.2s ease;
            cursor: pointer;
            font-size: 1.8rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffb347;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
            border-top: 1px solid #1e2a4a;
            margin-top: 2rem;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1.2rem 0.2rem 0;
        }
        .site-footer {
            padding: 2rem 0 1.5rem;
            border-top: 2px solid #1a2540;
            margin-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #5a6f8a;
        }
        .site-footer .copyright {
            margin-top: 0.8rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.8rem;
                border-top: 1px solid #1e2a4a;
                margin-top: 0.8rem;
            }
            .nav-menu.active {
                display: flex;
            }
            .stat-block {
                flex-direction: column;
                align-items: center;
            }
            .stat-item {
                min-width: auto;
            }
            .form-row {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: 140px;
            }
            .featured-figure {
                margin: 1rem 0;
            }
            .styled-table {
                font-size: 0.85rem;
            }
            .styled-table th,
            .styled-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.5rem;
                padding-left: 0.6rem;
            }
            .container {
                padding: 0 0.3rem;
            }
            .feedback-section {
                padding: 1rem;
            }
        }
        .text-accent {
            color: #ff6ec7;
        }
        .text-cyan {
            color: #00e5ff;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .list-unstyled {
            list-style: none;
            padding-left: 0;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .gap-items {
            gap: 0.5rem 1.2rem;
        }
        .nav-menu {
            transition: all 0.25s ease;
        }
        .badge {
            display: inline-block;
            background: #ff6ec7;
            color: #0b0d17;
            padding: 0.15rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
