* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0f0f1a;
            color: #e0e0e0;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #ff6b6b;
            text-decoration: none;
            transition: color .2s;
        }
        a:hover {
            color: #ffb347;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #16162a, #1a1a35);
            border-bottom: 2px solid #ff6b6b22;
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ff6b6b, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px #ff6b6b33;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #ff6b6b;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: .9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background .2s;
        }
        .nav-toggle:hover {
            background: #ffffff11;
        }
        nav {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 6px 14px;
            border-radius: 40px;
            font-weight: 500;
            font-size: .92rem;
            color: #ccc;
            background: #ffffff08;
            transition: all .2s;
            white-space: nowrap;
        }
        nav a:hover {
            background: #ff6b6b20;
            color: #ffb347;
            transform: translateY(-2px);
        }
        .breadcrumb {
            padding: 16px 0 6px;
            font-size: .85rem;
            color: #888;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #ff6b6b;
        }
        .breadcrumb a:hover {
            color: #ffb347;
        }
        .breadcrumb span {
            color: #aaa;
        }
        main {
            padding: 30px 0 60px;
        }
        h1 {
            font-size: 2.7rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 20px 0 16px;
            background: linear-gradient(135deg, #ff6b6b, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 50px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ff6b6b33;
            color: #f0c27f;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 36px 0 12px;
            color: #f5d6a8;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #e8c9a0;
        }
        p {
            margin-bottom: 18px;
            color: #d5d5e0;
        }
        .highlight {
            background: linear-gradient(120deg, #ff6b6b22, #ffb34722);
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .desi-tag {
            display: inline-block;
            background: #ff6b6b15;
            color: #ffb347;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: .8rem;
            font-weight: 600;
            margin-right: 6px;
        }
        .feature-img {
            margin: 30px 0 20px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(255, 107, 107, .15);
            background: #1e1e3a;
            padding: 6px;
        }
        .feature-img img {
            border-radius: 16px;
            width: 100%;
            object-fit: cover;
        }
        .feature-img figcaption {
            padding: 12px 16px;
            font-size: .85rem;
            color: #aaa;
            text-align: center;
            font-style: italic;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 30px 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            margin: 30px 0;
        }
        .card {
            background: #1a1a30;
            border-radius: 18px;
            padding: 24px 22px;
            border: 1px solid #ffffff0a;
            transition: all .3s;
            box-shadow: 0 8px 30px #00000022;
        }
        .card:hover {
            transform: translateY(-6px);
            border-color: #ff6b6b44;
            box-shadow: 0 18px 50px #ff6b6b11;
        }
        .card i {
            font-size: 2rem;
            color: #ff6b6b;
            margin-bottom: 12px;
        }
        .card h4 {
            margin-top: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 30px 0;
            border-radius: 16px;
            border: 1px solid #ffffff0a;
            background: #18182e;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: .92rem;
        }
        th {
            background: #ff6b6b18;
            color: #f0c27f;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 16px;
            border-top: 1px solid #ffffff0a;
            color: #ccc;
        }
        tr:hover td {
            background: #ffffff08;
        }
        .copy-btn {
            background: #ff6b6b20;
            border: none;
            color: #ffb347;
            padding: 4px 14px;
            border-radius: 30px;
            cursor: pointer;
            font-size: .8rem;
            transition: all .2s;
        }
        .copy-btn:hover {
            background: #ff6b6b40;
            transform: scale(1.04);
        }
        .search-box {
            background: #1a1a30;
            border-radius: 60px;
            padding: 6px 6px 6px 24px;
            display: flex;
            align-items: center;
            max-width: 600px;
            margin: 30px 0 20px;
            border: 1px solid #ffffff0a;
            transition: border .3s;
        }
        .search-box:focus-within {
            border-color: #ff6b6b66;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 14px 6px;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #777;
        }
        .search-box button {
            background: linear-gradient(135deg, #ff6b6b, #ffb347);
            border: none;
            color: #fff;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: all .2s;
            font-size: .95rem;
        }
        .search-box button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px #ff6b6b44;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        .feedback-card {
            background: #1a1a30;
            border-radius: 20px;
            padding: 28px 26px;
            border: 1px solid #ffffff0a;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #ffffff18;
            background: #0f0f1f;
            color: #fff;
            font-size: .95rem;
            margin-bottom: 14px;
            outline: none;
            transition: border .3s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #ff6b6b88;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: linear-gradient(135deg, #ff6b6b, #ffb347);
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: all .2s;
            font-size: 1rem;
            width: 100%;
        }
        .feedback-card .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px #ff6b6b44;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            margin-bottom: 14px;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #444;
            transition: color .2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #ffb347;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #999;
            font-size: .9rem;
            margin: 20px 0 10px;
            padding: 10px 18px;
            background: #ffffff08;
            border-radius: 40px;
            width: fit-content;
        }
        .last-updated i {
            color: #ff6b6b;
        }
        footer {
            background: #0c0c1a;
            border-top: 2px solid #ff6b6b11;
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-inner h4 {
            color: #f0c27f;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .footer-inner a {
            display: block;
            padding: 4px 0;
            color: #aaa;
            font-size: .9rem;
        }
        .footer-inner a:hover {
            color: #ffb347;
        }
        friend-link {
            display: block;
            padding: 12px 0 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            background: #ffffff08;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: .85rem;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #ffffff0a;
            text-align: center;
            color: #777;
            font-size: .85rem;
        }
        .copyright strong {
            color: #aaa;
        }
        @media (max-width: 992px) {
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 20px 0 10px;
                gap: 8px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .search-box {
                flex-wrap: wrap;
                border-radius: 30px;
                padding: 10px 14px;
            }
            .search-box input {
                width: 100%;
                padding: 10px 4px;
            }
            .search-box button {
                width: 100%;
                margin-top: 8px;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: .75rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .card {
                padding: 18px 16px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0f1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff6b6b44;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff6b6b77;
        }
        ::selection {
            background: #ff6b6b55;
            color: #fff;
        }
