:root {
    --bg-color: #050508;
    --text-color: #ffffff;
    --text-dim: #a0a0b0;
    --accent-color: #00f2ff;
    --accent-glow: rgba(0, 242, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --primary-gradient: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.1) 0%, transparent 60%);
    z-index: -1;
}

nav {
    height: 80px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 60px;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-color);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--text-color);
}

.detail-header {
    margin-bottom: 60px;
    text-align: center;
}

.detail-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    margin-bottom: 60px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 100px;
}

.main-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.main-content p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.main-content ul {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-content li {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 0;
}

.main-content li strong {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
}

.main-content li strong::before {
    content: "✦";
    color: var(--accent-color);
    font-size: 0.8rem;
}

.main-content li span {
    color: var(--text-dim);
}

.sidebar-box {
    padding: 2.5rem;
    border-radius: 24px;
    position: sticky;
    top: 40px;
}

.sidebar-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.btn-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-github {
    background: white;
    color: black;
}

.btn-patreon {
    background: var(--primary-gradient);
    color: white;
}

.btn-block:hover {
    transform: translateY(-3px);
}

footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .content-grid { grid-template-columns: 1fr; }
    .detail-header h1 { font-size: 2.5rem; }
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}
