/* E_DN Creator App Styles */

:root {
    --bg-dark: #0a0f1e;
    --bg-card: #151b2e;
    --primary: #00bcd4;
    --accent: #ff4081;
    --text-main: #e0f7fa;
    --text-muted: #8892b0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.creator-glow {
    position: fixed;
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.22;
    pointer-events: none;
    z-index: -1;
}

.creator-glow-a {
    top: -8rem;
    left: -6rem;
    background: rgba(0, 188, 212, 0.45);
}

.creator-glow-b {
    right: -8rem;
    top: 18rem;
    background: rgba(255, 64, 129, 0.3);
}

.creator-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 188, 212, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.highlight {
    color: var(--primary);
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.btn-cta {
    background: var(--primary);
    color: var(--bg-dark) !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 120px 40px 80px;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 188, 212, 0.18) 0%, transparent 35%),
        radial-gradient(circle at 80% 30%, rgba(255, 64, 129, 0.16) 0%, transparent 28%),
        radial-gradient(circle at center, #16233b 0%, var(--bg-dark) 72%);
    position: relative;
}

.hero-content {
    max-width: 620px;
    z-index: 1;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 14px;
    border: 1px solid rgba(0, 188, 212, 0.4);
    border-radius: 999px;
    color: var(--primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 0 30px;
}

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

.btn-primary-lg {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.2s;
    display: inline-block;
}

.btn-primary-lg:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}

.btn-secondary-lg {
    color: var(--text-main);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    display: inline-block;
    transition: transform 0.2s, border-color 0.2s, color 0.2s;
}

.btn-secondary-lg:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary);
}

.hero-pill-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-pill {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(21, 27, 46, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.92rem;
}

.hero-stage {
    display: grid;
    gap: 18px;
    width: min(480px, 100%);
    z-index: 1;
}

.hero-demo-card {
    position: relative;
    display: block;
    padding: 28px;
    border-radius: 24px;
    text-decoration: none;
    color: var(--text-main);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at top right, color-mix(in srgb, var(--card-accent) 35%, transparent) 0%, transparent 45%),
        rgba(15, 20, 34, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.hero-demo-card:hover {
    transform: translateY(-6px) rotate(-0.35deg);
    border-color: color-mix(in srgb, var(--card-accent) 55%, white);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.36);
}

.hero-demo-card h2 {
    margin: 14px 0 10px;
    font-size: 2rem;
}

.hero-demo-card p {
    color: var(--text-muted);
    margin: 0 0 18px;
}

.demo-type,
.demo-cta {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-demo-card-eden {
    transform: translateX(-26px);
}

.hero-demo-card-eat {
    transform: translateX(26px);
}

.hero-demo-card-eden:hover,
.hero-demo-card-eat:hover {
    transform: translateY(-6px);
}

.section-container {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.systems-strip {
    padding-top: 30px;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.system-card,
.pricing-card {
    background: rgba(18, 24, 42, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.system-label {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.system-card h3 {
    margin: 10px 0;
    font-size: 1.6rem;
}

.system-card p {
    color: var(--text-muted);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-card {
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    border-color: rgba(0, 188, 212, 0.5);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.2);
    transform: translateY(-5px);
}

.card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: #000;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-art {
    width: 100%;
    height: 100%;
}

.creator-card-art {
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--card-accent) 45%, transparent), transparent 45%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        #0b1020;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 22px;
}

.placeholder-type {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.placeholder-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
}

.btn-view {
    background: #00bcd4 !important;
    color: #000 !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
    border-radius: 20px !important;
    font-weight: bold !important;
    transition: all 0.3s !important;
    display: inline-block !important;
    cursor: pointer !important;
}

.btn-view:hover {
    background: #4dd0e1 !important;
    transform: scale(1.05) !important;
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.artist-name {
    color: var(--text-muted);
    font-size: 14px;
}

.card-summary {
    margin-top: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    animation: spin 1s linear infinite !important;
}

#creator-portfolio {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    overflow-y: auto;
}

.creator-overlay-inner {
    height: 100%;
    overflow-y: auto;
    padding: 40px;
    box-sizing: border-box;
}

.close-portfolio {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
}

.close-portfolio:hover {
    color: #00bcd4;
    transform: rotate(90deg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: center;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 10px 0 18px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    color: var(--text-muted);
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    color: var(--primary);
    border: 1px solid rgba(0, 188, 212, 0.45);
    border-radius: 999px;
    text-decoration: none;
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 130px;
    }

    .hero-stage {
        width: 100%;
    }

    .hero-demo-card-eden,
    .hero-demo-card-eat {
        transform: none;
    }

    .systems-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .creator-nav {
        padding: 16px 18px;
    }

    .nav-links a {
        margin-left: 14px;
        font-size: 13px;
    }

    .hero-section,
    .section-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}
