@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;600;700;800&display=swap');

:root {
    --bg: #0a0b10;
    --bg-2: #10121a;
    --panel: #151720;
    --panel-2: #1c1f2b;
    --text: #f3f4f7;
    --muted: #9fa3b4;
    --accent: #e50914;
    --accent-2: #ffb703;
    --success: #30d158;
    --danger: #ff453a;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

body {
    font-family: 'Manrope', system-ui, sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(229, 9, 20, 0.15), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(255, 183, 3, 0.1), transparent 45%),
        var(--bg);
    color: var(--text);
    min-height: 100vh;
}

a {
    color: var(--accent-2);
    text-decoration: none;
}

a:hover {
    color: var(--text);
}

.background-glow {
    position: fixed;
    inset: -30vh -20vw auto auto;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.25), transparent 65%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px clamp(20px, 5vw, 80px);
    position: sticky;
    top: 0;
    z-index: 5;
    background: linear-gradient(180deg, rgba(10, 11, 16, 0.95), rgba(10, 11, 16, 0.6));
    backdrop-filter: blur(8px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(229, 9, 20, 0.6);
}

.brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-pill {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
    color: var(--muted);
}

.btn {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn.primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 12px 30px rgba(229, 9, 20, 0.35);
}

.btn.ghost {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
    background: transparent;
}

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

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 60px clamp(20px, 5vw, 80px);
    align-items: center;
}

.hero-card {
    background: linear-gradient(135deg, rgba(21, 23, 32, 0.9), rgba(8, 9, 13, 0.95));
    border-radius: 28px;
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.hero-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.stat {
    background: var(--panel-2);
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat strong {
    font-size: 20px;
}

.hero-poster {
    background: linear-gradient(160deg, rgba(229, 9, 20, 0.75), rgba(14, 15, 21, 0.95));
    border-radius: 28px;
    padding: 40px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.hero-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 55%);
    opacity: 0.5;
}

.hero-poster h2 {
    font-size: 28px;
    z-index: 1;
}

.hero-poster p {
    color: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.12);
}

.section {
    padding: 20px clamp(20px, 5vw, 80px) 70px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-header h3 {
    font-size: 22px;
}

.section-header span {
    color: var(--muted);
    font-size: 14px;
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.pricing-card {
    background: var(--panel);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 24px 60px rgba(229, 9, 20, 0.25);
}

.pricing-top {
    height: 6px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.pricing-top.accent-one {
    background: linear-gradient(90deg, #4b3cff, #7b67ff);
}

.pricing-top.accent-two {
    background: linear-gradient(90deg, #ff6b6b, #ffb703);
}

.pricing-top.accent-three {
    background: linear-gradient(90deg, #e50914, #ff6b6b);
}

.pricing-title {
    font-size: 18px;
    font-weight: 700;
}

.pricing-quality {
    color: var(--muted);
    font-size: 13px;
}

.pricing-list {
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.pricing-list li {
    position: relative;
    padding-left: 18px;
}

.pricing-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--accent-2);
}

.price {
    font-size: 24px;
    font-weight: 700;
    margin-top: auto;
}

.card {
    background: var(--panel);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    min-height: 220px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.card .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.12);
}

.card-title {
    font-size: 16px;
    font-weight: 700;
}

.card-desc {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    opacity: 0.8;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 11, 16, 0.1), rgba(10, 11, 16, 0.95));
}

.card-content {
    position: relative;
    z-index: 1;
}

.empty-state {
    padding: 28px;
    border-radius: 20px;
    background: var(--panel-2);
    color: var(--muted);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.form-shell {
    max-width: 520px;
    margin: 40px auto;
    padding: 32px;
    border-radius: 22px;
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.form-shell h2 {
    margin-bottom: 16px;
}

.form-grid {
    display: grid;
    gap: 14px;
}

label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}

input,
textarea,
select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px 12px;
    color: var(--text);
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(229, 9, 20, 0.45);
    border-color: rgba(229, 9, 20, 0.6);
}

.helper {
    font-size: 12px;
    color: var(--muted);
}

.notice {
    padding: 12px 16px;
    border-radius: 14px;
    margin-bottom: 16px;
    font-size: 13px;
}

.notice.success {
    background: rgba(48, 209, 88, 0.15);
    color: var(--success);
    border: 1px solid rgba(48, 209, 88, 0.3);
}

.notice.error {
    background: rgba(255, 69, 58, 0.15);
    color: var(--danger);
    border: 1px solid rgba(255, 69, 58, 0.3);
}

.admin-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.panel {
    background: var(--panel);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.panel h3 {
    margin-bottom: 12px;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 40px clamp(20px, 5vw, 80px);
    background: var(--bg-2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer p {
    color: var(--muted);
    margin-top: 8px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 16px;
    color: var(--muted);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
    }

    .hero {
        padding-top: 20px;
    }
}
