        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #6ee7ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff6b9d;
            text-shadow: 0 0 8px rgba(255, 107, 157, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        h1, h2, h3, h4 {
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.2rem;
            color: #ffffff;
        }
        h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, #6ee7ff, #ff6b9d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.5rem;
            color: #6ee7ff;
            border-left: 5px solid #ff6b9d;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffcc00;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #b3e0ff;
            font-weight: 300;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 3rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(110,231,255,0.1), rgba(255,107,157,0.1));
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #ffcc00;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 8px;
        }
        header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid #6ee7ff;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b9d, #6ee7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(110, 231, 255, 0.7);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(110, 231, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #6ee7ff;
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 20, 0.98);
            flex-direction: column;
            padding: 20px;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-radius: 5px;
            background: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #6ee7ff;
        }
        .search-box {
            max-width: 700px;
            margin: 40px auto 60px;
            padding: 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            border: 1px solid rgba(110, 231, 255, 0.3);
        }
        .search-box h3 {
            text-align: center;
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #6ee7ff;
            border-radius: 50px 0 0 50px;
            background: rgba(0,0,0,0.5);
            color: white;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background: linear-gradient(90deg, #6ee7ff, #3b8ea5);
            color: #0c0c0c;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 30px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #ff6b9d, #6ee7ff);
            color: white;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .sidebar {
            background: rgba(20, 25, 40, 0.7);
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            border: 1px solid rgba(255, 107, 157, 0.2);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h4 {
            color: #ffcc00;
            border-bottom: 2px solid #6ee7ff;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        .track-list {
            list-style: none;
        }
        .track-list li {
            padding: 12px 15px;
            margin-bottom: 10px;
            background: rgba(0,0,0,0.3);
            border-radius: 8px;
            border-left: 4px solid #6ee7ff;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .interaction-section {
            background: rgba(30, 30, 50, 0.5);
            border-radius: 15px;
            padding: 30px;
            margin-top: 50px;
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 40px;
        }
        .stars {
            font-size: 2.5rem;
            margin: 20px 0;
            color: #ffcc00;
            cursor: pointer;
        }
        .stars i {
            margin: 0 5px;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #6ee7ff;
        }
        .form-group input, .form-group textarea {
            padding: 15px;
            border-radius: 8px;
            border: 2px solid rgba(110, 231, 255, 0.5);
            background: rgba(0,0,0,0.5);
            color: white;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus {
            border-color: #ff6b9d;
            outline: none;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff6b9d, #6ee7ff);
            color: white;
            border: none;
            padding: 18px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 60px 0 40px;
            padding: 30px;
            background: rgba(0,0,0,0.3);
            border-radius: 15px;
        }
        .web-link {
            padding: 15px;
            background: rgba(110, 231, 255, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(110, 231, 255, 0.1);
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(110, 231, 255, 0.1);
            border-color: #6ee7ff;
            transform: translateY(-5px);
        }
        footer {
            background: #0a0a14;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid #ff6b9d;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #333;
            width: 100%;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 0 15px; }
            .content-grid { gap: 30px; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: 50px; margin-bottom: 10px; }
            .search-form button { border-radius: 50px; padding: 15px; }
            .web-links { grid-template-columns: 1fr; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        section {
            animation: fadeIn 0.8s ease-out;
        }
        .pulse {
            display: inline-block;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
