* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a14;
            --primary-accent: #8a2be2;
            --secondary-accent: #ff1493;
            --text-primary: #f0f0f0;
            --text-secondary: #b0b0c0;
            --card-bg: #1a1a2e;
            --border-color: #33334d;
            --highlight-bg: #2a0047;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff5cb0;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(180deg, rgba(10,10,20,0.95) 0%, rgba(26,26,46,0.9) 100%);
            border-bottom: 2px solid var(--primary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--text-primary);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .desktop-nav a:hover {
            color: var(--secondary-accent);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-accent);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-primary);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--card-bg);
            border-top: 1px solid var(--border-color);
            flex-direction: column;
            padding: 20px;
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: var(--text-primary);
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: var(--secondary-accent);
            background-color: rgba(255, 20, 147, 0.1);
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--text-primary);
        }
        .search-container {
            margin: 30px 0;
            padding: 20px;
            background-color: var(--card-bg);
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px 20px;
            background-color: #0f0f1a;
            border: 2px solid var(--border-color);
            border-radius: 8px 0 0 8px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--primary-accent);
        }
        .search-form button {
            padding: 0 30px;
            background: linear-gradient(90deg, var(--primary-accent), #6a11cb);
            border: none;
            border-radius: 0 8px 8px 0;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        main {
            padding: 20px 0 50px;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff1493, #8a2be2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            margin: 45px 0 20px;
            color: var(--secondary-accent);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.7rem;
            margin: 35px 0 15px;
            color: #dda0dd;
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 10px;
            color: var(--text-secondary);
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            color: #d0d0ff;
            border-left: 5px solid var(--primary-accent);
            padding-left: 20px;
            margin-bottom: 40px;
            background-color: rgba(138, 43, 226, 0.05);
            padding: 25px;
            border-radius: 0 10px 10px 0;
        }
        .highlight {
            background-color: var(--highlight-bg);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid var(--secondary-accent);
        }
        .highlight strong {
            color: #ff6bcb;
        }
        .combo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .combo-card {
            background: linear-gradient(145deg, #252540, #1a1a30);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #3a3a5e;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .combo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 20, 147, 0.2);
            border-color: var(--secondary-accent);
        }
        .combo-input {
            font-family: 'Courier New', monospace;
            background-color: #0a0a14;
            color: #00ffaa;
            padding: 10px 15px;
            border-radius: 6px;
            font-size: 1.1rem;
            margin: 10px 0;
            display: inline-block;
            border: 1px solid #00cc88;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background-color: #151525;
        }
        .data-table th, .data-table td {
            border: 1px solid var(--border-color);
            padding: 15px;
            text-align: left;
        }
        .data-table th {
            background-color: #2a1b3d;
            color: var(--secondary-accent);
            font-weight: 700;
        }
        .data-table tr:nth-child(even) {
            background-color: #1e1e32;
        }
        .data-table tr:hover {
            background-color: #2a2a45;
        }
        .hero-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 30px 0;
            border: 3px solid var(--primary-accent);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: -25px;
            margin-bottom: 30px;
        }
        .tip {
            background-color: rgba(0, 200, 255, 0.1);
            border-left: 5px solid #00c8ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip::before {
            content: '💡 PRO TIP: ';
            font-weight: bold;
            color: #00c8ff;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: #ccaaee;
            text-align: center;
            padding: 30px;
            margin: 40px 0;
            border-top: 2px solid var(--border-color);
            border-bottom: 2px solid var(--border-color);
            position: relative;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 3rem;
            color: var(--primary-accent);
            position: absolute;
            opacity: 0.5;
        }
        .quote::before {
            top: 10px;
            left: 20px;
        }
        .quote::after {
            bottom: 10px;
            right: 20px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-box {
            background: linear-gradient(135deg, #2d2d4d, #1f1f38);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #444466;
            transition: all 0.3s;
        }
        .stat-box:hover {
            border-color: var(--secondary-accent);
            transform: scale(1.03);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--secondary-accent);
            margin-bottom: 10px;
        }
        .interactive-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid var(--border-color);
        }
        .rating-form, .comment-form {
            background-color: #151525;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 30px;
            border: 1px solid var(--border-color);
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text-secondary);
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 15px;
            background-color: #0a0a14;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #444;
            margin: 15px 0;
        }
        .star-rating i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating i.active {
            color: gold;
        }
        .submit-btn {
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 8px;
            cursor: pointer;
            transition: opacity 0.3s, transform 0.2s;
        }
        .submit-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.03);
            padding: 18px;
            border-radius: 8px;
            border-left: 3px solid transparent;
            transition: all 0.3s;
        }
        .web-link:hover {
            border-left-color: var(--secondary-accent);
            background-color: rgba(255, 20, 147, 0.05);
        }
        footer {
            background-color: #0a0a14;
            padding: 40px 0 20px;
            border-top: 2px solid var(--primary-accent);
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            article { padding: 30px; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-top { padding: 15px 0; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            article { padding: 25px 20px; }
            .intro { font-size: 1.1rem; padding: 20px; }
            .combo-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-content { flex-direction: column; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.8rem; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: 8px; margin-bottom: 10px; }
            .search-form button { border-radius: 8px; padding: 15px; }
            .stats-grid { grid-template-columns: 1fr; }
        }
