/* ==========================================================================
   WORKSHOP.CSS // MASTER STYLESHEET
   SYSTEM_VERSION: 2.0.0 (Refactored)
   ========================================================================== */

/* ==========================================
   01 // LOCAL VARIABLES & BASE
   ========================================== */
#side-business {
    --local-accent: #e0d3b8;
    --accent-blue: #3498db;
    --neon-orange: #f39c12;
    --master-gold: #f1c40f;
    --card-bg: #1a1d24;
}

    #side-business h1,
    #side-business h2 {
        color: var(--local-accent);
    }

    #side-business .dash-main h1 {
        text-align: center;
        font-size: 3rem;
        color: #12141a;
        text-shadow: -1px -1px 2px rgba(0, 0, 0, 0.9), 1px 1px 1px rgba(224, 211, 184, 0.25);
        letter-spacing: 3px;
        margin-bottom: 40px;
        font-weight: 900;
    }

    #side-business .floating-block {
        background: var(--card-bg);
        border: 1px solid rgba(224, 211, 184, 0.2);
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 20px;
    }

/* ==========================================
   02 // GLOBAL SYSTEM ELEMENTS
   ========================================== */
.pulse-dot {
    height: 8px;
    width: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.global-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 25px;
    padding: 10px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding: 5px 15px;
}

    .stat-item::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 140%;
        height: 150%;
        background: radial-gradient(ellipse at center, rgba(224, 211, 184, 0.15) 0%, rgba(224, 211, 184, 0.03) 50%, transparent 70%);
        transform: translate(-50%, -50%) skewX(-15deg);
        z-index: -1;
        filter: blur(5px);
        border-radius: 50%;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .stat-item:hover::before {
        background: radial-gradient(ellipse at center, rgba(224, 211, 184, 0.25) 0%, rgba(52, 152, 219, 0.08) 60%, transparent 80%);
        transform: translate(-50%, -50%) skewX(0deg) scale(1.1);
    }

.stat-label {
    font-size: 0.65rem;
    color: #888;
    letter-spacing: 1px;
}

.stat-value {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: var(--local-accent);
    font-weight: bold;
    text-shadow: 0 0 8px rgba(224, 211, 184, 0.5);
}

/* ==========================================
   03 // TERMINAL ENGINE
   ========================================== */
.terminal-box {
    position: relative;
    background: #0d0f12;
    border: 1px solid rgba(224, 211, 184, 0.3);
    border-radius: 8px;
    padding: 20px;
    color: var(--local-accent);
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.95), 0 0 15px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    z-index: 1;
    min-height: 140px;
}

    .terminal-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.3) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
        background-size: 100% 4px, 4px 100%;
        z-index: 2;
        pointer-events: none;
    }

    .terminal-box::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
        z-index: 3;
        pointer-events: none;
    }

.term-line {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    text-shadow: 0 0 4px var(--local-accent), 0 0 10px rgba(224, 211, 184, 0.4);
    margin-bottom: 6px;
    position: relative;
    z-index: 4;
    opacity: 0.9;
    animation: term-fade-in 0.3s ease-out forwards;
}

    .term-line:last-child::after {
        content: '█';
        display: inline-block;
        margin-left: 8px;
        color: var(--local-accent);
        text-shadow: 0 0 8px var(--local-accent);
        animation: blink-cursor 1s infinite;
    }

@keyframes term-fade-in {
    from {
        opacity: 0;
        transform: translateY(2px);
    }

    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

@keyframes blink-cursor {
    0%, 49% {
        opacity: 1;
    }

    50%, 100% {
        opacity: 0;
    }
}

/* ==========================================
   04 // MISSION BRIEFING
   ========================================== */
.section-divider {
    position: relative;
    z-index: 10;
    font-size: 2.2rem;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    color: var(--local-accent);
    text-shadow: 0 0 15px rgba(224, 211, 184, 0.15);
    font-weight: 900;
    margin: 60px 0 5px 0;
    padding-left: 15px;
    border-left: 4px solid var(--local-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.section-subtitle {
    display: block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    color: #8a8171;
    margin: 0 0 30px 19px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mission-briefing {
    margin-bottom: 60px;
    position: relative;
}

.briefing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.step-card {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent);
    border-top: 1px solid rgba(224, 211, 184, 0.15);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

    .step-card:hover {
        transform: translateY(-5px);
        background: linear-gradient(to bottom, rgba(224, 211, 184, 0.05), transparent);
    }

.step-num {
    font-family: var(--font-mono, 'Courier New', monospace);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(224, 211, 184, 0.08);
    line-height: 0.8;
    margin-bottom: -15px;
}

.step-card h4 {
    font-size: 1.1rem;
    color: var(--local-accent);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.step-card p {
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ==========================================
   05 // FEATURED MODULE (AD BANNER)
   ========================================== */
.featured-module-teaser {
    margin: 40px 0;
    padding: 2px;
    background: linear-gradient(90deg, var(--neon-orange), #e74c3c, var(--neon-orange));
    background-size: 200% auto;
    animation: gradient-move 3s linear infinite;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.2);
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.teaser-content {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

    .teaser-content::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
        z-index: 2;
        background-size: 100% 2px, 3px 100%;
        pointer-events: none;
    }

.teaser-badge {
    background: var(--neon-orange);
    color: #000;
    font-family: 'Courier New', monospace;
    font-weight: 900;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    padding: 4px 20px;
    letter-spacing: 2px;
    border-radius: 20px;
}
#teaser-type-label {
    text-align: center;
}


#featured-title {
    color: #fff;
    text-shadow: 2px 2px #e74c3c, -2px -2px var(--accent-blue);
    font-style: italic;
    letter-spacing: 3px;
}

.teaser-stats span {
    border: 1px solid var(--neon-orange);
    color: var(--neon-orange) !important;
    background: rgba(243, 156, 18, 0.1) !important;
    text-transform: uppercase;
}

.glitch-icon {
    animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.3);
    }
}

/* ==========================================
   06 // CATALOG SEARCH & FILTER
   ========================================== */
.catalog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(25, 25, 30, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 211, 184, 0.15);
    border-radius: 12px;
    padding: 15px 25px;
    margin-bottom: 30px;
    margin-left: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.catalog-search input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(224, 211, 184, 0.2);
    color: var(--text-silver, #e2e8f0);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    width: 250px;
    outline: none;
    transition: all 0.3s ease;
}

    .catalog-search input:focus {
        border-color: var(--local-accent);
        box-shadow: 0 0 10px rgba(224, 211, 184, 0.2);
        background: rgba(0, 0, 0, 0.6);
    }

.catalog-filters {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .filter-btn:hover {
        border-color: rgba(224, 211, 184, 0.5);
        color: #ccc;
        transform: translateY(-1px);
    }

    .filter-btn.active {
        background: var(--local-accent);
        color: #111;
        border-color: var(--local-accent);
        box-shadow: 0 0 15px rgba(224, 211, 184, 0.3);
    }

/* ==========================================
   07 // TCG CARDS (WORKSHOP CATALOG)
   ========================================== */
#side-business .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
    padding: 0;
    justify-items: center;
    max-width: 1400px;
    margin: 20px auto 0 auto;
}

#side-business .item-card {
    background: var(--card-bg);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 8px;
    aspect-ratio: 5 / 7;
    width: 100%;
    position: relative;
    overflow: visible;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    #side-business .item-card:hover {
        transform: translateY(-12px) scale(1.02);
        border-color: rgba(245, 245, 220, 0.6);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 20px rgba(52, 152, 219, 0.1);
        z-index: 20;
    }

    #side-business .item-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(165deg, transparent 30%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0.12) 50%, rgba(52, 152, 219, 0.08) 60%, transparent 70%);
        background-size: 300% 300%;
        background-position: 100% 100%;
        transition: background-position 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
        filter: blur(5px);
        z-index: 5;
        pointer-events: none;
        mix-blend-mode: screen;
        border-radius: inherit;
    }

    #side-business .item-card:hover::before {
        background-position: 20% 20%;
    }

    #side-business .item-card::after {
        content: "";
        position: absolute;
        inset: 0;
        box-shadow: inset 0 0 30px rgba(0,0,0,0.6);
        z-index: 6;
        pointer-events: none;
        border-radius: inherit;
    }

/* Card Internals */
.card-body {
    padding: 25px 25px 0 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

    .card-body::before {
        content: "";
        position: absolute;
        top: -1px;
        left: -1px;
        width: 30px;
        height: 30px;
        border-top: 3px solid #f5f5dc;
        border-left: 3px solid #f5f5dc;
        z-index: 15;
        pointer-events: none;
        border-top-left-radius: 8px;
    }

    .card-body h3 {
        position: absolute;
        top: 25px;
        left: -10px;
        background: #f5f5dc;
        color: #000;
        padding: 5px 15px;
        font-family: 'Share Tech Mono', 'Courier New', monospace;
        font-size: 1.1rem;
        transform: rotate(-1deg);
        box-shadow: 5px 5px 0px rgba(52, 152, 219, 0.5);
        z-index: 12;
        margin: 0;
        white-space: nowrap;
        max-width: 90%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.card-description-area {
    margin-top: 15px;
    padding-left: 5px;
    border-left: 2px solid #f5f5dc;
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 10px;
}

    .card-description-area::-webkit-scrollbar {
        width: 2px;
    }

    .card-description-area::-webkit-scrollbar-thumb {
        background: rgba(52, 152, 219, 0.5);
    }

.card-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
    z-index: 12;
}

.card-art-frame {
    background: #121212;
    border: 1px solid rgba(52, 152, 219, 0.2);
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 20px #000;
    border-radius: 6px;
    margin-top: 50px;
    margin-bottom: 15px;
    overflow: hidden;
}

    .card-art-frame::after {
        content: "";
        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;
    }

    .card-art-frame .mod-icon {
        font-size: 4rem;
        margin: 0;
        filter: drop-shadow(0 0 8px rgba(52, 152, 219, 0.4));
        opacity: 0.9;
        transition: transform 0.4s ease;
    }

#side-business .item-card:hover .card-art-frame .mod-icon {
    transform: scale(1.1);
}

.card-stats-overlay {
    position: absolute;
    bottom: 110px;
    right: 10px;
    background: rgba(52, 152, 219, 0.9);
    color: #fff;
    padding: 8px 12px;
    font-size: 0.7rem;
    font-family: 'Courier New', monospace;
    display: flex;
    gap: 15px;
    border-radius: 2px;
    z-index: 11;
    backdrop-filter: blur(5px);
    box-shadow: -2px 2px 10px rgba(0,0,0,0.5);
}

.card-action-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px 15px 20px;
    background: rgba(0,0,0,0.2);
    position: relative;
    z-index: 15;
}

.btn-card {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.4);
    color: var(--accent-blue);
    padding: 8px 0;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    font-size: 0.75rem;
}

    .btn-card:hover {
        background: var(--accent-blue);
        color: #fff;
        box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
    }

.btn-build-full {
    grid-column: span 2;
    margin-top: 5px;
}

.rarity-common {
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.2);
}

    .rarity-common .card-tag {
        background: var(--accent-blue);
        color: white;
    }

/* ==========================================
   08 // OVERLAYS & PANELS
   ========================================== */
.overlay-container {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 15, 0.95);
    backdrop-filter: blur(15px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    padding: 2vh 2vw;
}

    .overlay-container.open {
        display: flex !important;
        animation: overlay-fade-in 0.3s ease-out;
    }

@keyframes overlay-fade-in {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(15px);
    }
}

.overlay-content {
    background: #12141a;
    border: 1px solid rgba(224, 211, 184, 0.4);
    border-radius: 12px;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    max-height: 95vh;
    padding: 40px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9), 0 0 20px rgba(224, 211, 184, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.overlay-header {
    border-bottom: 1px solid rgba(224, 211, 184, 0.2);
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .overlay-header h2 {
        font-family: var(--font-heading, 'Montserrat', sans-serif);
        font-size: 2.5rem;
        margin: 0;
        color: #fff;
        letter-spacing: 2px;
    }

.close-overlay {
    background: rgba(224, 211, 184, 0.05);
    border: 1px solid var(--local-accent);
    color: var(--local-accent);
    padding: 10px 20px;
    cursor: pointer;
    font-family: var(--font-heading, sans-serif);
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .close-overlay:hover {
        background: var(--local-accent);
        color: #111;
        box-shadow: 0 0 15px rgba(224, 211, 184, 0.4);
    }

.overlay-body {
    flex-grow: 1;
    overflow-y: auto;
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.8;
    padding-right: 20px;
}

.guide-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    color: var(--local-accent);
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
}

.guide-loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(224, 211, 184, 0.2);
    border-top: 3px solid var(--local-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.guide-content-loaded {
    animation: fade-in-up 0.5s ease-out forwards;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.overlay-body::-webkit-scrollbar {
    width: 6px;
}

.overlay-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(224, 211, 184, 0.1);
}

.overlay-body::-webkit-scrollbar-thumb {
    background: var(--local-accent);
    border-radius: 3px;
}

.side-panel {
    position: fixed;
    right: -450px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: #181f29;
    border-left: 2px solid var(--local-accent);
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    z-index: 10001;
    transition: right 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
}

    .side-panel.open {
        right: 0;
    }

.panel-header {
    padding: 20px;
    background: rgba(224, 211, 184, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(224, 211, 184, 0.3);
}

.panel-body {
    padding: 30px;
    color: #ccc;
    line-height: 1.6;
    flex-grow: 1;
    overflow-y: auto;
}

    .panel-body::-webkit-scrollbar {
        width: 6px;
    }

    .panel-body::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(224, 211, 184, 0.1);
    }

    .panel-body::-webkit-scrollbar-thumb {
        background: var(--local-accent);
        border-radius: 3px;
    }

/* Der Container für die gesamte Liste */
.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Erstellt Spalten automatisch */
    gap: 12px; /* Abstand zwischen den Items */
    margin-top: 20px;
}

/* Die einzelnen Download-Links */
.stl-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05); /* Dezenter Hintergrund */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.2s ease;
}

    .stl-link-item:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #00d2ff; /* Ein leichter blauer Akzent beim Hover */
        transform: translateY(-2px); /* Kleiner "Lift-Up" Effekt */
    }

/* Styling für die Nummer (#01) */
.part-number {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: #00d2ff;
    margin-right: 10px;
}

/* Styling für den Namen */
.part-name {
    font-size: 0.85rem;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Schneidet zu lange Namen sauber ab */
    padding: 0 10px;
}

/* Das Download-Icon */
.dl-icon {
    font-size: 1.2rem;
}

/* ==========================================
   09 // FOOTER & MISC MODULES
   ========================================== */
.service-bay {
    margin-top: 80px;
    padding-bottom: 100px;
}

.service-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(25, 25, 25, 0.3);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-info h3 {
    color: var(--local-accent);
    margin-bottom: 15px;
}

.service-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .service-badges span {
        font-size: 0.7rem;
        background: rgba(224, 211, 184, 0.1);
        border: 1px solid var(--local-accent);
        padding: 5px 12px;
        border-radius: 20px;
        color: var(--local-accent);
    }

.crypto-stratum {
    margin: 60px 0;
    perspective: 1000px;
}

.token-card {
    background: linear-gradient(135deg, rgba(25, 25, 30, 0.9), rgba(45, 45, 55, 0.9));
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

    .token-card:hover {
        transform: rotateX(2deg) translateY(-5px);
        border-color: rgba(155, 89, 182, 0.6);
    }

.token-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

.token-logo {
    width: 45px;
    height: 45px;
    background: #9b59b6;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.4);
    margin-right: 15px;
}

.token-identity {
    display: flex;
    align-items: center;
}

.token-status {
    font-size: 0.6rem;
    color: #666;
    letter-spacing: 1px;
}

.token-price {
    text-align: right;
}

.price-val {
    display: block;
    font-weight: bold;
    color: #fff;
}

.price-change {
    font-size: 0.7rem;
    color: var(--accent-green);
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.t-stat {
    background: rgba(0,0,0,0.2);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

    .t-stat span {
        display: block;
        font-size: 0.55rem;
        color: #777;
        margin-bottom: 5px;
    }

    .t-stat strong {
        font-size: 0.9rem;
        color: #ddd;
        font-family: monospace;
    }

.token-actions {
    display: flex;
    gap: 15px;
}

.btn-crypto {
    flex: 2;
    padding: 12px;
    background: #9b59b6;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.btn-crypto-alt {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 1px solid #444;
    color: #888;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
.workshop-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(25, 25, 25, 0.4);
    padding: 40px 0;
    margin-top: 50px;
    font-family: 'Courier New', monospace;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-left p {
    font-size: 0.65rem;
    color: #555;
    margin-top: 5px;
}

.footer-logo {
    font-size: 0.9rem;
    font-weight: bold;
    color: #888;
}

    .footer-logo span {
        color: var(--local-accent);
    }

.system-status-mini {
    font-size: 0.7rem;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.uptime {
    font-size: 0.6rem;
    color: #444;
    text-align: center;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

    .footer-nav a {
        color: #888;
        text-decoration: none;
        font-size: 0.7rem;
        transition: color 0.3s;
    }

        .footer-nav a:hover {
            color: var(--local-accent);
        }

.pulse-tiny {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent-green);
    animation: blink 2s infinite;
}

/* ==========================================
   10 // RESPONSIVE Adjustments
   ========================================== */
@media (max-width: 900px) {
    .briefing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .screen-side {
        padding: 20px;
    }

    #side-business .dash-main h1 {
        font-size: 1.8rem;
    }
}
