:root {
    --bg-color: #0d0d0d;
    --text-color: #f2f2f2;
    --accent-primary: #ff3e00; /* Neon Orange/Red */
    --accent-secondary: #00f2ff; /* Cyber Blue */
    --accent-tertiary: #7000ff; /* Electric Purple */
    --grid-color: rgba(255, 255, 255, 0.05);
    --node-bg: rgba(20, 20, 20, 0.8);
    --node-border: rgba(255, 255, 255, 0.1);
    --font-display: 'Syncopate', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Base Typography */
h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Background Effects */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
}

.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    filter: blur(100px);
}

/* Poster Layout */
.poster-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header Section */
.header {
    text-align: center;
    margin-bottom: 6rem;
    z-index: 10;
}

.eyebrow {
    font-size: 0.875rem;
    color: var(--accent-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 0.3em;
    animation: fadeInDown 1s ease-out;
}

.title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.subtitle {
    font-size: 1.25rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Mind Map / Network Graphic */
.network-viz {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

/* Central Node */
.central-node {
    width: 220px;
    height: 220px;
    background: var(--node-bg);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    z-index: 5;
    box-shadow: 0 0 50px rgba(255, 62, 0, 0.2), inset 0 0 20px rgba(255, 62, 0, 0.1);
    animation: pulse 4s infinite ease-in-out;
}

.central-node h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.central-node p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
}

/* Skill Nodes */
.skill-node {
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--node-bg);
    border: 1px solid var(--node-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition);
    cursor: default;
    z-index: 4;
}

.skill-node:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.skill-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-secondary);
}

.skill-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
}

.skill-desc {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
}

/* Positions for Skill Nodes */
.node-1 { top: 0%; left: 15%; animation: float 6s infinite ease-in-out; }
.node-2 { top: 0%; right: 15%; animation: float 7s infinite ease-in-out 0.5s; }
.node-3 { top: 50%; right: 5%; transform: translateY(-50%); animation: float 5s infinite ease-in-out 1s; }
.node-4 { bottom: 0%; right: 15%; animation: float 8s infinite ease-in-out 1.5s; }
.node-5 { bottom: 0%; left: 15%; animation: float 6s infinite ease-in-out 2s; }
.node-6 { top: 50%; left: 5%; transform: translateY(-50%); animation: float 7s infinite ease-in-out 2.5s; }

/* Connecting Lines (SVG) */
.connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    stroke: var(--accent-primary);
    stroke-width: 1;
    stroke-dasharray: 5, 5;
    opacity: 0.3;
}

/* Legend / Outcomes */
.footer-outcomes {
    margin-top: 4rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    border-top: 1px solid var(--node-border);
    padding-top: 3rem;
}

.outcome-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.outcome-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-secondary);
}

.outcome-val {
    font-size: 1rem;
    font-weight: 500;
    color: #eee;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 50px rgba(255, 62, 0, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 70px rgba(255, 62, 0, 0.4); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .network-viz {
        flex-direction: column;
        height: auto;
        gap: 2rem;
    }
    .skill-node {
        position: static;
        width: 100%;
        max-width: 400px;
        transform: none !important;
        animation: none !important;
    }
    .connections {
        display: none;
    }
}
