/* Root Showcase Dashboard Styling (Premium Glassmorphism & Ambient Layout) */

:root {
    --primary-bg: #09090c;
    --card-bg: rgba(25, 25, 35, 0.5);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-color: #f3f4f6;
    --text-muted: #9ca3af;
    --accent-glow: rgba(255, 92, 138, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Noto Sans KR', sans-serif;
    --font-mono: 'Space Grotesk', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--primary-bg);
    color: var(--text-color);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background Blobs */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    animation: float 20s infinite alternate ease-in-out;
}

.bg-glow-1 {
    background: radial-gradient(circle, rgba(255, 46, 136, 0.3) 0%, rgba(255, 46, 136, 0) 70%);
    top: -10%;
    left: -10%;
}

.bg-glow-2 {
    background: radial-gradient(circle, rgba(85, 230, 255, 0.25) 0%, rgba(85, 230, 255, 0) 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 50px) scale(1.1); }
}

/* Container */
.dashboard-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 80px 24px;
    box-sizing: border-box;
    z-index: 10;
}

/* Header */
.main-header {
    margin-bottom: 60px;
    text-align: center;
}

.logo-area {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.brand-badge {
    background: linear-gradient(135deg, #FF2E88, #FF8E5C);
    color: #000;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.logo-text {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.header-desc h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a3a3a3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.header-desc p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 780px;
    margin: 0 auto;
}

/* Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.showcase-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 92, 138, 0.3);
    box-shadow: 0 12px 30px rgba(255, 92, 138, 0.08);
}

/* Card Preview */
.card-preview {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    transition: filter 0.3s ease;
}

.showcase-card:hover .card-preview {
    filter: brightness(1.05);
}

.preview-title {
    font-size: 28px;
    font-weight: 700;
}

/* Preview Background Styles */
.preview-1a {
    background-color: #F4EEE1;
    color: #1F1A16;
}
.font-journal { font-family: 'Noto Serif KR', serif; font-size: 32px; }
.mini-tag {
    position: absolute;
    left: 14px;
    bottom: 10px;
    font-family: ui-monospace, monospace;
    font-size: 9px;
    background: #1F1A16;
    color: #F4EEE1;
    padding: 3px 7px;
}

.preview-1b {
    background-color: #EC6B87;
    color: #FBF3EC;
}
.font-cover { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 42px; text-shadow: 2px 2px 0 #2A1418; }

.preview-1c {
    background-color: #F7F1E4;
    color: #2A2320;
    border-bottom: 2px double rgba(42, 35, 32, 0.3);
}
.font-encyclo { font-family: 'Song Myung', serif; font-size: 26px; }

.preview-2a {
    background-color: #F4F4F0;
    color: #111;
}
.font-brutal { font-family: 'IBM Plex Mono', monospace; font-size: 22px; font-weight: 700; }
.mini-square {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 8px;
    height: 14px;
    background-color: #FF4D8D;
}

.preview-2b {
    background-color: #0D0C10;
    color: #F2F0F4;
}
.font-bento { font-family: 'Pretendard', sans-serif; font-size: 20px; font-weight: 800; }
.mini-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 92, 138, 0.4) 0%, rgba(255, 92, 138, 0) 70%);
    top: 20%;
    right: 20%;
}

.preview-2c {
    background-color: #FF2E88;
    color: #FFE94D;
}
.font-y2k { font-family: 'Black Han Sans', sans-serif; font-size: 28px; -webkit-text-stroke: 1px #111; text-shadow: 2px 2px 0 #111; }
.mini-marquee {
    position: absolute;
    width: 100%;
    background-color: #111;
    color: #FFE94D;
    font-size: 9px;
    top: 0;
    text-align: center;
    padding: 2px 0;
}

.preview-3a {
    background-color: #070B19;
    color: #FFF;
    position: relative;
    overflow: hidden;
}
.font-oasis { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 800; background: linear-gradient(90deg, #FF5C8A, #55E6FF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mini-glow-pink {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 92, 138, 0.45) 0%, rgba(255, 92, 138, 0) 70%);
    top: -20%;
    left: -20%;
}
.mini-glow-cyan {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85, 230, 255, 0.35) 0%, rgba(85, 230, 255, 0) 70%);
    bottom: -10%;
    right: -10%;
}
.mini-glass-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.mini-glass-text {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, #FFF, #FFBFD2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.mini-glass-bar {
    width: 40px;
    height: 2px;
    background-color: #FF5C8A;
    border-radius: 999px;
}

.preview-3b {
    background-color: #0B0B0C;
    color: #F6F5F2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.font-minimal { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; letter-spacing: -0.01em; }
.mini-minimal-box {
    border: 1px solid rgba(246, 245, 242, 0.15);
    padding: 24px 36px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mini-pink-dot-static {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #FF3F7F;
    box-shadow: 0 0 8px #FF3F7F;
    top: 10px;
    right: 10px;
}

.preview-3c {
    background-color: #160C28;
    color: #FFF;
    border-bottom: 3px solid #351C75;
}
.font-arcade { font-family: 'Press Start 2P', monospace; font-size: 16px; color: #FF007F; text-shadow: 2px 2px 0 #00F0FF; }
.mini-arcade-screen {
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px double #00F0FF;
    border-radius: 6px;
    padding: 16px 20px;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.mini-crt-scan-static {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    pointer-events: none;
}
.mini-coin-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: #FFE900;
}

/* 4a Cyberpunk */
.preview-4a {
    background-color: #05050A;
    color: #FFF;
    border-bottom: 2px solid #FF007F;
}
.font-cyber { font-family: 'Orbitron', sans-serif; font-size: 14px; font-weight: 900; color: #00F0FF; text-shadow: 0 0 6px #00F0FF; letter-spacing: 0.1em; }
.mini-cyber-terminal {
    border: 1px solid rgba(255, 0, 127, 0.4);
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    padding: 14px 20px;
    position: relative;
}
.terminal-bar {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #39FF14;
    box-shadow: 0 0 8px #39FF14;
    position: absolute;
    top: 8px;
    left: 8px;
}

/* 4b Nordic Pastel */
.preview-4b {
    background-color: #F4EFE6;
    color: #3A3A3A;
    position: relative;
}
.font-nordic { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: #3A3A3A; z-index: 10; letter-spacing: -0.01em; }
.mini-nordic-shapes {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}
.nordic-shape-1 {
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: #E5B8C0;
    border-radius: 50%;
    left: 20%;
    top: 15%;
    opacity: 0.85;
}
.nordic-shape-2 {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #D1E0D7;
    border-radius: 40%;
    right: 20%;
    bottom: 15%;
    opacity: 0.85;
}

/* 4c Swiss International */
.preview-4c {
    background-color: #FFFFFF;
    color: #000;
}
.font-swiss { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 700; letter-spacing: -0.04em; }
.mini-swiss-box {
    position: relative;
    display: flex;
    align-items: flex-end;
    line-height: 0.8;
}
.mini-swiss-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #E32B2B;
    border-radius: 50%;
    margin-left: 2px;
}

/* Card Info */
.card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.style-num {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.style-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.bg-gold { background-color: rgba(212, 163, 89, 0.15); color: #d4a359; }
.bg-rose { background-color: rgba(236, 107, 135, 0.15); color: #ec6b87; }
.bg-vintage { background-color: rgba(188, 90, 114, 0.15); color: #bc5a72; }
.bg-brutal { background-color: rgba(255, 77, 141, 0.15); color: #ff4d8d; }
.bg-dark { background-color: rgba(255, 255, 255, 0.08); color: #f2f0f4; }
.bg-y2k { background-color: rgba(85, 230, 255, 0.15); color: #55e6ff; }

.card-title {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.card-desc {
    margin: 0 0 20px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-muted);
    flex-grow: 1;
}

/* Token Previews */
.card-tokens {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.token-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Colors definitions */
.color-cream { background-color: #F4EEE1; }
.color-ink { background-color: #1F1A16; }
.color-coral { background-color: #C75B3F; }

.color-pink { background-color: #EC6B87; }
.color-warm { background-color: #FBF3EC; }
.color-plum { background-color: #2A1418; }

.color-vintage-bg { background-color: #F7F1E4; }
.color-charcoal { background-color: #2A2320; }
.color-crimson { background-color: #BC5A72; }

.color-gray { background-color: #F4F4F0; }
.color-dark { background-color: #111111; }
.color-neon-pink { background-color: #FF4D8D; }

.color-bento-bg { background-color: #0D0C10; }
.color-bento-card { background-color: #17161C; }
.color-bento-gradient { background-color: #FF5C8A; }

.color-y2k-pink { background-color: #FF2E88; }
.color-y2k-yellow { background-color: #FFE94D; }
.color-y2k-cyan { background-color: #55E6FF; }
.color-y2k-green { background-color: #39FF14; }

.color-nordic-bg { background-color: #F4EFE6; }
.color-nordic-pink { background-color: #E5B8C0; }
.color-nordic-green { background-color: #D1E0D7; }

.color-white { background-color: #FFFFFF; }
.color-swiss-red { background-color: #E32B2B; }

.token-font {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    margin-left: auto;
}

/* Buttons */
.launch-btn {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 10px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.showcase-card:hover .launch-btn {
    background: linear-gradient(135deg, rgba(255, 46, 136, 0.1) 0%, rgba(255, 142, 92, 0.1) 100%);
    border-color: rgba(255, 92, 138, 0.4);
    color: #ff7ca3;
}

/* Footer */
.main-footer {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    color: var(--text-muted);
    font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-desc h1 {
        font-size: 32px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}
