:root {
            --primary-dark: #0a0a16;
            --secondary-dark: #1a1a2e;
            --accent-tenno: #00e5ff;
            --accent-energy: #ff4d94;
            --accent-orokin: #ffb347;
            --text-primary: #f0f0f0;
            --text-secondary: #b8b8cc;
            --border-glow: rgba(0, 229, 255, 0.3);
            --spacing-unit: 1rem;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--primary-dark);
            background-image: radial-gradient(circle at 20% 30%, rgba(26, 26, 46, 0.8) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-tenno);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--accent-energy);
            text-shadow: 0 0 8px rgba(255, 77, 148, 0.5);
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        header {
            background-color: rgba(10, 10, 22, 0.95);
            border-bottom: 1px solid var(--border-glow);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--accent-tenno), var(--accent-energy));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(0, 229, 255, 0.7);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-tenno);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--accent-tenno);
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            background-color: rgba(26, 26, 46, 0.7);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-tenno);
        }
        .breadcrumb .separator {
            margin: 0 0.5rem;
        }
        .hero {
            padding: 3rem 0;
            text-align: center;
            border-bottom: 1px solid var(--border-glow);
            margin-bottom: 2rem;
            background: linear-gradient(to bottom, rgba(10, 10, 22, 0.9), rgba(26, 26, 46, 0.7));
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #fff, var(--accent-tenno));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        .content article {
            background-color: rgba(26, 26, 46, 0.6);
            border-radius: 10px;
            padding: 2.5rem;
            border: 1px solid var(--border-glow);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-section {
            margin-bottom: 3rem;
        }
        .article-section:last-child {
            margin-bottom: 0;
        }
        .article-section h2 {
            font-size: 2rem;
            color: var(--accent-tenno);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-energy);
            position: relative;
        }
        .article-section h2 i {
            margin-right: 10px;
        }
        .article-section h3 {
            font-size: 1.5rem;
            color: var(--accent-orokin);
            margin: 1.8rem 0 1rem;
        }
        .article-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
            color: var(--text-primary);
        }
        .highlight {
            background-color: rgba(0, 229, 255, 0.1);
            border-left: 4px solid var(--accent-tenno);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: var(--accent-tenno);
        }
        .content-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            border: 1px solid var(--border-glow);
            margin: 2rem auto;
            display: block;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .content-image:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
        }
        .feature-list {
            list-style: none;
            padding-left: 1.5rem;
        }
        .feature-list li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }
        .feature-list li::before {
            content: '⮞';
            color: var(--accent-energy);
            position: absolute;
            left: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid var(--border-glow);
        }
        .sidebar-widget h3 {
            color: var(--accent-tenno);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            background-color: rgba(10, 10, 22, 0.7);
            border: 1px solid var(--border-glow);
            border-radius: 5px;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(90deg, var(--accent-tenno), #0099cc);
            border: none;
            border-radius: 5px;
            color: var(--primary-dark);
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #00ccff, var(--accent-tenno));
            box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.3rem;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            color: var(--accent-orokin);
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .rating-widget .stars i:hover {
            transform: scale(1.2);
            color: gold;
        }
        .rating-form select, .rating-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background-color: rgba(10, 10, 22, 0.7);
            border: 1px solid var(--border-glow);
            border-radius: 5px;
            color: var(--text-primary);
        }
        .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--accent-energy);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .rating-form button:hover {
            background-color: #ff2d7a;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            background-color: rgba(10, 10, 22, 0.7);
            border: 1px solid var(--border-glow);
            border-radius: 5px;
            color: var(--text-primary);
            resize: vertical;
            margin-bottom: 1rem;
        }
        .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--accent-tenno);
            color: var(--primary-dark);
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .comment-form button:hover {
            background-color: #00ccff;
        }
        .footer-links {
            background-color: rgba(10, 10, 22, 0.9);
            padding: 3rem 0;
            border-top: 1px solid var(--border-glow);
            border-bottom: 1px solid var(--border-glow);
        }
        .footer-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            padding: 1.2rem;
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 8px;
            border-left: 4px solid var(--accent-tenno);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(0, 229, 255, 0.1);
            transform: translateX(5px);
        }
        footer {
            background-color: var(--secondary-dark);
            padding: 2rem 0;
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: var(--text-secondary);
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: var(--accent-tenno);
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--secondary-dark);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid var(--border-glow);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .content article {
                padding: 1.5rem;
            }
            .article-section h2 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .article-section h2 {
                font-size: 1.5rem;
            }
            .footer-links-container {
                grid-template-columns: 1fr;
            }
        }
