        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #9d4edd;
            --secondary: #560bad;
            --accent: #ff6d00;
            --dark: #212529;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0f1a;
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #7b2cbf;
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.2rem;
            color: #ffffff;
        }
        h1 {
            font-size: 3.2rem;
            background: linear-gradient(90deg, #9d4edd, #ff6d00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #c77dff;
        }
        h4 {
            font-size: 1.4rem;
            color: #e0aaff;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #b8b8ff;
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(157, 78, 221, 0.2), transparent);
            padding: 15px 20px;
            border-radius: 10px;
            border-left: 4px solid var(--primary);
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        header {
            background-color: rgba(15, 15, 26, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            padding: 15px 0;
            border-bottom: 2px solid var(--secondary);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff6d00, #9d4edd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: #e0e0ff;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: var(--transition);
        }
        .nav-desktop a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #333;
            color: #fff;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            color: var(--gray);
            font-size: 0.9rem;
            background-color: rgba(33, 37, 41, 0.5);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            background: radial-gradient(circle at top right, #2d1b69, #0f0f1a);
            padding: 80px 0;
            text-align: center;
            border-bottom: 3px solid var(--primary);
        }
        .hero-image {
            max-width: 800px;
            margin: 40px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 5px solid var(--primary);
        }
        .search-container {
            max-width: 600px;
            margin: 40px auto;
            background: rgba(33, 37, 41, 0.7);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--primary);
            border-radius: 8px;
            background: #12122e;
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 25px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            transform: translateY(-3px);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .main-content {
            background: rgba(33, 37, 41, 0.5);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: rgba(33, 37, 41, 0.5);
            padding: 30px;
            border-radius: 15px;
            align-self: start;
        }
        @media (min-width: 992px) {
            .content-grid {
                grid-template-columns: 3fr 1fr;
            }
        }
        .interactive-box {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid #2d2d5c;
            transition: var(--transition);
        }
        .interactive-box:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(157, 78, 221, 0.2);
        }
        .link-list {
            list-style: none;
            padding: 20px 0;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        .link-list li:before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-size: 0.8em;
        }
        .user-feedback {
            background: rgba(33, 37, 41, 0.7);
            padding: 40px;
            border-radius: 15px;
            margin-top: 60px;
        }
        .rating-form, .comment-form {
            margin-bottom: 40px;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            margin: 15px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffc107;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            background: #12122e;
            border: 2px solid #333;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        button[type="submit"] {
            padding: 15px 30px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            background: linear-gradient(45deg, var(--secondary), var(--accent));
        }
        footer {
            background-color: #0a0a14;
            color: #aaa;
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top: 3px solid var(--secondary);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            padding: 10px 20px;
            margin: 5px 10px 5px 0;
            border-radius: 6px;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(157, 78, 221, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #777;
        }
        .last-updated {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin: 20px 0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 0 15px; }
            .main-content, .sidebar { padding: 25px; }
            .hero { padding: 50px 0; }
        }
