* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --bg-dark: #1a1a2e;
            --bg-light: #16213e;
            --accent: #e94560;
            --text-primary: #f5f5f5;
            --text-secondary: #d1d1e0;
            --link: #00f5d4;
            --hover: #7df9ff;
            --button-bg: #e94560;
            --button-hover: #ff2e56;
            --border: #3a3a5c;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--bg-light);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--link);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links li a:hover {
            color: var(--hover);
        }
        .nav-links li a.daman-link {
            color: var(--accent);
            font-weight: 600;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .download-btn {
            background-color: var(--button-bg);
            color: white;
        }
        .download-btn:hover {
            background-color: var(--button-hover);
            transform: translateY(-2px);
        }
        .login-btn {
            background-color: var(--link);
            color: var(--bg-dark);
            margin-left: 10px;
        }
        .login-btn:hover {
            background-color: var(--hover);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-primary);
        }
        .lead {
            padding: 40px 0;
            text-align: center;
            border-bottom: 1px solid var(--border);
            margin-bottom: 30px;
        }
        .lead h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent);
        }
        .lead p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 25px;
            color: var(--text-secondary);
        }
        .lead-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .toc {
            background-color: var(--bg-light);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid var(--border);
        }
        .toc h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--link);
        }
        .toc-list {
            list-style: none;
            columns: 2;
            gap: 10px;
        }
        .toc-list li a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            padding: 5px 0;
        }
        .toc-list li a:hover {
            color: var(--hover);
            padding-left: 5px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
        }
        .content-section {
            margin-bottom: 40px;
        }
        .content-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--accent);
            border-bottom: 2px solid var(--border);
            padding-bottom: 10px;
        }
        .content-section h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: var(--link);
        }
        .content-section p {
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: var(--text-secondary);
        }
        .content-section ul {
            margin: 15px 0 20px 30px;
            color: var(--text-secondary);
        }
        .content-section ul li {
            margin-bottom: 10px;
        }
        .content-section .highlight {
            background-color: rgba(233, 69, 96, 0.1);
            padding: 15px;
            border-left: 4px solid var(--accent);
            border-radius: 5px;
            margin: 20px 0;
        }
        .content-section .quote {
            font-style: italic;
            color: var(--text-primary);
            padding: 15px;
            border-radius: 5px;
            background-color: rgba(0, 245, 212, 0.05);
            margin: 20px 0;
            position: relative;
        }
        .content-section .quote::before {
            content: '"';
            font-size: 3rem;
            color: var(--link);
            position: absolute;
            top: -10px;
            left: 10px;
            opacity: 0.3;
        }
        .sidebar {
            background-color: var(--bg-light);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid var(--border);
            height: fit-content;
        }
        .infobox h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--accent);
            text-align: center;
        }
        .infobox-image {
            width: 100%;
            border-radius: 5px;
            margin-bottom: 15px;
            border: 1px solid var(--border);
        }
        .infobox-details {
            margin-bottom: 20px;
        }
        .infobox-details p {
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }
        .infobox-details p span:first-child {
            font-weight: 600;
            color: var(--link);
        }
        .infobox-details p span:last-child {
            color: var(--text-secondary);
        }
        .sidebar-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .categories {
            background-color: var(--bg-light);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid var(--border);
        }
        .categories h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--link);
        }
        .category-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .category-tags a {
            background-color: var(--bg-dark);
            color: var(--text-secondary);
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }
        .category-tags a:hover {
            background-color: var(--accent);
            color: white;
            border-color: var(--accent);
        }
        .recommendation {
            background-color: rgba(0, 245, 212, 0.05);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid var(--border);
        }
        .recommendation h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--link);
        }
        .recommendation p {
            font-size: 1.1rem;
            color: var(--text-secondary);
        }
        .copyright {
            text-align: center;
            padding: 20px;
            border-top: 1px solid var(--border);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 900px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .toc-list {
                columns: 1;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: var(--bg-light);
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .lead h1 {
                font-size: 2rem;
            }
            .lead p {
                font-size: 1.1rem;
            }
            .content-section h2 {
                font-size: 1.8rem;
            }
            .content-section h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }
            .lead h1 {
                font-size: 1.8rem;
            }
            .lead-buttons {
                flex-direction: column;
            }
            .login-btn {
                margin-left: 0;
            }
        }
