@charset "UTF-8";

:root {
    --bg-color: #0b0b10;
    --surface-color: #16161e;
    --text-primary: #f8f8f2;
    --text-secondary: #a1a1aa;
    --accent-primary: #8b5cf6;
    --accent-secondary: #ec4899;
    --border-color: rgba(255, 255, 255, 0.08);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 11, 16, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--accent-primary);
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    padding: 220px 0 140px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.12), transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.08), transparent 40%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.focus-btn {
    padding: 18px 48px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manga-btn {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.manga-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.7);
}

.manhwa-btn {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.manhwa-btn:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(236, 72, 153, 0.3);
    background: rgba(236, 72, 153, 0.05);
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-bottom: 100px;
}

section:not(.hero) {
    background: var(--surface-color);
    border-radius: 24px;
    padding: 56px;
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

section:not(.hero):hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.05);
}

section h2 {
    font-size: 2.25rem;
    margin-bottom: 28px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

section h3 {
    font-size: 1.35rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--accent-primary);
}

section p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

section p:last-child {
    margin-bottom: 0;
}

.site-footer {
    background: #050508;
    padding: 100px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 28px;
    max-width: 420px;
    font-size: 1.05rem;
}

.footer-logo {
    height: 54px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.footer-contact h3 {
    font-size: 1.35rem;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.footer-bottom {
    text-align: center;
    color: rgba(161, 161, 170, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero {
        padding: 160px 0 100px;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .action-buttons {
        flex-direction: column;
        padding: 0 20px;
    }
    .focus-btn {
        width: 100%;
    }
    section:not(.hero) {
        padding: 40px 24px;
    }
    section h2 {
        font-size: 1.75rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
