/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Playfair+Display:wght@700&family=Space+Grotesk:wght@400;700&family=Righteous&family=Inter:wght@300;400;700&family=Pacifico&display=swap');

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

:root {
    --bg-dark: #0a0a0f;
    --bg-medium: #12121a;
    --bg-card: #1a1a24;
    --primary: #00ff88;
    --secondary: #ff3366;
    --accent: #00d4ff;
    --gold: #ffd700;
    --text: #eaeaea;
    --text-dim: #666;
    --text-muted: #444;
}

body {
    font-family: 'Press Start 2P', cursive;
    background: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    image-rendering: pixelated;
}

/* Screen Management */
.screen {
    display: none;
    min-height: 100vh;
    padding: 20px;
}

.screen.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ===============================================
   LANDING SCREEN - L.I.E. Branding
   =============================================== */

.title-box {
    margin-top: 30px;
    margin-bottom: 20px;
}

.lie-logo {
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 8px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.title-box h1 {
    font-size: 2rem;
    color: var(--text);
    text-shadow: 4px 4px 0 var(--bg-medium);
    letter-spacing: 4px;
}

.title-box h2 {
    font-size: 1rem;
    color: var(--primary);
    margin-top: 8px;
    letter-spacing: 6px;
}

.subtitle {
    font-size: 0.6rem;
    color: var(--text-dim);
    margin-top: 15px;
    letter-spacing: 2px;
    font-style: italic;
}

/* Corporate Speak */
.corporate-speak {
    max-width: 500px;
    margin: 0 auto 30px;
    padding: 20px;
    background: var(--bg-medium);
    border-left: 4px solid var(--primary);
}

.corporate-speak p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 10px;
    line-height: 1.6;
}

.corporate-speak p:last-child {
    margin-bottom: 0;
}

/* Pixel Art Building */
.pixel-scene {
    position: relative;
    height: 180px;
    margin: 20px auto;
    max-width: 400px;
}

.building {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.building-sign {
    font-size: 0.5rem;
    color: var(--primary);
    background: var(--bg-dark);
    padding: 4px 12px;
    margin: 0 auto 5px;
    width: fit-content;
    border: 2px solid var(--primary);
    animation: signFlicker 3s ease-in-out infinite;
}

@keyframes signFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.5; }
    94% { opacity: 1; }
    96% { opacity: 0.8; }
}

.building-top {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 25px solid var(--bg-medium);
    margin: 0 auto;
}

.building-body {
    width: 120px;
    height: 90px;
    background: var(--bg-medium);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px;
    position: relative;
    border: 2px solid #222;
}

.window {
    width: 35px;
    height: 25px;
    background: #111;
    border: 2px solid #222;
}

.window.lit {
    background: var(--primary);
    opacity: 0.6;
    box-shadow: 0 0 10px var(--primary);
}

.door {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 35px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
}

.ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: #1a1a1a;
    border-top: 2px solid #333;
}

.footer-tagline {
    font-size: 0.5rem;
    color: var(--text-muted);
    margin-top: 30px;
    letter-spacing: 1px;
}

.footer-tagline a,
.lie-watermark a {
    color: var(--primary);
    text-decoration: none;
}

.footer-tagline a:hover,
.lie-watermark a:hover {
    text-decoration: underline;
}

/* ===============================================
   BUTTONS
   =============================================== */

.pixel-btn {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    padding: 15px 30px;
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    cursor: pointer;
    position: relative;
    transition: transform 0.1s;
    box-shadow:
        0 4px 0 #00aa55,
        0 6px 0 rgba(0,0,0,0.3);
}

.pixel-btn:hover:not(:disabled) {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 #00aa55,
        0 4px 0 rgba(0,0,0,0.3);
}

.pixel-btn:active:not(:disabled) {
    transform: translateY(4px);
    box-shadow: none;
}

.pixel-btn:disabled {
    background: var(--text-muted);
    color: var(--text-dim);
    cursor: not-allowed;
    box-shadow:
        0 4px 0 #333,
        0 6px 0 rgba(0,0,0,0.3);
}

.pixel-btn.secondary {
    background: var(--bg-medium);
    color: var(--text);
    border: 2px solid var(--text-dim);
    box-shadow:
        0 4px 0 #0a0a0a,
        0 6px 0 rgba(0,0,0,0.3);
}

.pixel-btn.secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.button-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ===============================================
   CHARACTER SELECTION
   =============================================== */

.screen-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 30px 0 10px;
    letter-spacing: 2px;
}

.select-hint {
    font-size: 0.55rem;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.api-note {
    font-size: 0.45rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-style: italic;
}

.fallback-notice {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 550px;
    margin: 0 auto 20px;
}

@media (max-width: 500px) {
    .characters-grid {
        grid-template-columns: 1fr;
        max-width: 250px;
    }
}

.character-card {
    background: var(--bg-medium);
    border: 3px solid #222;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.character-card:hover {
    border-color: var(--text-dim);
    transform: translateY(-3px);
}

.character-card.selected {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.character-card.selected::after {
    content: "✓";
    position: absolute;
    top: 8px;
    right: 10px;
    color: var(--primary);
    font-size: 0.8rem;
}

.character-card.selected-double {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.character-card.selected-double::after {
    content: "✓✓";
    color: var(--gold);
}

.selection-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.5rem;
    padding: 4px 10px;
    font-weight: bold;
    animation: badgePop 0.3s ease-out;
}

@keyframes badgePop {
    0% { transform: translateX(-50%) scale(0); }
    50% { transform: translateX(-50%) scale(1.2); }
    100% { transform: translateX(-50%) scale(1); }
}

.character-name {
    font-size: 0.6rem;
    color: var(--text);
    margin-bottom: 6px;
}

.character-desc {
    font-size: 0.45rem;
    color: var(--text-dim);
}

.selection-display {
    font-size: 0.7rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* ===============================================
   CHARACTER SPRITES
   =============================================== */

.sprite {
    width: 60px;
    height: 80px;
    margin: 0 auto 12px;
    position: relative;
}

.sprite-head {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    position: relative;
}

.sprite-body {
    width: 40px;
    height: 35px;
    margin: 0 auto;
    position: relative;
}

/* Creative - Cat */
.creative-sprite .sprite-head {
    background: #f4a460;
    border-radius: 4px;
    box-shadow: inset -4px -4px 0 #d4894a;
}

.creative-sprite .sprite-head::before,
.creative-sprite .sprite-head::after {
    content: "";
    position: absolute;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #f4a460;
}

.creative-sprite .sprite-head::before { left: 0; }
.creative-sprite .sprite-head::after { right: 0; }

.creative-sprite .sprite-face {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 4px;
    background: #ff9999;
    border-radius: 50%;
}

.creative-sprite .sprite-face::before,
.creative-sprite .sprite-face::after {
    content: "";
    position: absolute;
    top: -6px;
    width: 4px;
    height: 4px;
    background: #2c3e50;
    border-radius: 50%;
}

.creative-sprite .sprite-face::before { left: -6px; }
.creative-sprite .sprite-face::after { right: -6px; }

.creative-sprite .sprite-body {
    background: #9b59b6;
    box-shadow: inset -4px -4px 0 #7d3c98;
}

.creative-sprite .beret {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 10px;
    background: #e74c3c;
    border-radius: 50% 50% 30% 30%;
    z-index: 5;
}

/* Suit - Human */
.suit-sprite .sprite-head {
    background: var(--skin-tone, #c68642);
    border-radius: 4px;
    box-shadow: inset -4px -4px 0 var(--skin-shadow, #a56c32);
}

.suit-sprite .sprite-face {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.suit-sprite .sprite-face::before,
.suit-sprite .sprite-face::after {
    content: "";
    position: absolute;
    top: -4px;
    width: 4px;
    height: 4px;
    background: #2c3e50;
    border-radius: 50%;
}

.suit-sprite .sprite-face::before { left: -6px; }
.suit-sprite .sprite-face::after { right: -6px; }

.suit-sprite .sprite-hair {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 10px;
    background: var(--hair-color, #2c3e50);
    border-radius: 4px 4px 0 0;
}

.suit-sprite .sprite-body {
    background: #2c3e50;
    box-shadow: inset -4px -4px 0 #1a252f;
}

.suit-sprite .tie {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 25px;
    background: var(--secondary);
}

.suit-sprite .tie::before {
    content: "";
    position: absolute;
    top: 0;
    left: -4px;
    width: 16px;
    height: 8px;
    background: var(--secondary);
}

/* Strategist - Owl */
.strategist-sprite .sprite-head {
    background: #8b7355;
    border-radius: 50%;
    width: 34px;
    height: 32px;
    box-shadow: inset -4px -4px 0 #6b5344;
}

.strategist-sprite .sprite-head::before,
.strategist-sprite .sprite-head::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 14px;
    height: 14px;
    background: #f5f5dc;
    border-radius: 50%;
    border: 2px solid #5d4e37;
}

.strategist-sprite .sprite-head::before { left: 1px; }
.strategist-sprite .sprite-head::after { right: 1px; }

.strategist-sprite .sprite-face {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #f4a460;
    z-index: 2;
}

.strategist-sprite .sprite-face::before,
.strategist-sprite .sprite-face::after {
    content: "";
    position: absolute;
    top: -16px;
    width: 6px;
    height: 6px;
    background: #2c3e50;
    border-radius: 50%;
}

.strategist-sprite .sprite-face::before { left: -10px; }
.strategist-sprite .sprite-face::after { right: -10px; }

.strategist-sprite .sprite-body {
    background: #a08060;
    box-shadow: inset -4px -4px 0 #806040;
    border-radius: 0 0 8px 8px;
}

.strategist-sprite .sprite-body::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 25px;
    background: #d4c4a8;
    border-radius: 50%;
}

.strategist-sprite .glasses {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 12px;
    border: 3px solid #333;
    border-radius: 2px;
    background: rgba(255,255,255,0.2);
    z-index: 3;
}

/* CEO - Lion */
.ceo-sprite .sprite-head {
    background: #daa520;
    border-radius: 50%;
    width: 32px;
    height: 30px;
    box-shadow: inset -4px -4px 0 #b8860b;
}

.ceo-sprite .sprite-head::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -10px;
    width: 50px;
    height: 45px;
    background: radial-gradient(ellipse, #cd853f 0%, #8b4513 100%);
    border-radius: 50%;
    z-index: -1;
}

.ceo-sprite .sprite-face {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 6px;
    background: #f5deb3;
    border-radius: 50%;
}

.ceo-sprite .sprite-face::before,
.ceo-sprite .sprite-face::after {
    content: "";
    position: absolute;
    top: -8px;
    width: 4px;
    height: 4px;
    background: #2c3e50;
    border-radius: 50%;
}

.ceo-sprite .sprite-face::before { left: -2px; }
.ceo-sprite .sprite-face::after { right: -2px; }

.ceo-sprite .sprite-body {
    background: #27ae60;
    box-shadow: inset -4px -4px 0 #1e8449;
}

.ceo-sprite .crown {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: var(--gold);
    clip-path: polygon(0% 100%, 15% 0%, 30% 60%, 50% 0%, 70% 60%, 85% 0%, 100% 100%);
    z-index: 5;
}

/* ===============================================
   PRODUCT INPUT SCREEN
   =============================================== */

.product-input-container {
    max-width: 500px;
    margin: 0 auto 25px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.55rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: var(--bg-medium);
    border: 3px solid #222;
    color: var(--text);
    transition: border-color 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.team-preview {
    font-size: 0.6rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-medium);
    border-left: 3px solid var(--primary);
}

.team-label {
    color: var(--text-muted);
}

#team-display {
    color: var(--primary);
    margin-left: 10px;
}

/* Team Credit on Results */
.team-credit {
    font-size: 0.6rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    padding: 12px 20px;
    background: var(--bg-medium);
    border-left: 3px solid var(--primary);
    display: inline-block;
}

#results-team-display {
    color: var(--primary);
    margin-left: 10px;
}

/* ===============================================
   SOCIAL POST RESULT
   =============================================== */

.card-display {
    margin: 25px auto;
    max-width: 550px;
}

.social-post {
    background: var(--bg-card);
    border: 1px solid #2a2a35;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.card-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration {
    position: absolute;
    opacity: 0.15;
    font-size: 1.5rem;
}

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

.post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.post-avatar {
    display: flex;
    gap: -10px;
}

.post-avatar .sprite {
    transform: scale(0.6);
    margin: -15px -10px;
}

.post-meta {
    flex: 1;
}

.post-author {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.post-handle {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.post-body {
    margin-bottom: 15px;
}

.post-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
    white-space: pre-wrap;
}

.post-hashtags {
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--accent);
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #2a2a35;
}

.post-engagement {
    display: flex;
    gap: 20px;
}

.engagement-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.post-timestamp {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.lie-watermark {
    font-size: 0.45rem;
    color: var(--text-muted);
    margin-top: 20px;
    letter-spacing: 1px;
}

/* ===============================================
   LOADING STATES
   =============================================== */

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.loading-cursor::after {
    content: "_";
    animation: blink 0.7s infinite;
}

/* ===============================================
   ANIMATIONS
   =============================================== */

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ===============================================
   RESPONSIVE
   =============================================== */

@media (max-width: 600px) {
    .title-box h1 {
        font-size: 1.4rem;
    }

    .title-box h2 {
        font-size: 0.7rem;
    }

    .social-post {
        padding: 15px;
    }

    .post-text {
        font-size: 0.95rem;
    }
}

/* ===============================================
   PLATFORM POST CONTAINER
   =============================================== */

.post-container {
    max-width: 500px;
    margin: 20px auto;
}

.platform-post {
    display: none;
}

/* ===============================================
   LOADING STATE
   =============================================== */

.loading-post {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid #2a2a35;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--bg-medium);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-text {
    margin-top: 20px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    color: var(--text-dim);
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
}

/* ===============================================
   LINKEDIN STYLES
   =============================================== */

.linkedin-post {
    background: #1b1f23;
    border-radius: 8px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 3px solid #0a66c2;
}

.linkedin-post::before {
    content: 'LinkedIn';
    display: block;
    background: #0a66c2;
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.linkedin-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 10px;
}

.linkedin-logo {
    width: 48px;
    height: 48px;
    background: #0a66c2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: white;
}

.linkedin-meta {
    flex: 1;
}

.linkedin-author {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.linkedin-subtitle {
    color: #666;
    font-size: 12px;
    margin-top: 2px;
}

.linkedin-follow {
    color: #0a66c2;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.linkedin-image-container {
    width: 100%;
    background: #2a2a35;
    overflow: hidden;
}

.linkedin-image-container img {
    width: 100%;
    aspect-ratio: 1.91/1;
    object-fit: cover;
}

.linkedin-image-desc {
    padding: 20px;
    font-size: 13px;
    color: #999;
    font-style: italic;
    line-height: 1.5;
    background: linear-gradient(135deg, #1a1a24 0%, #252530 100%);
    border-left: 3px solid #0a66c2;
}

.desc-label {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.linkedin-content {
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
}

.linkedin-hashtags {
    padding: 0 16px 12px;
    color: #0a66c2;
    font-size: 14px;
}

.linkedin-stats {
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 12px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.linkedin-actions {
    display: flex;
    padding: 4px 8px;
}

.linkedin-actions button {
    flex: 1;
    background: none;
    border: none;
    color: #666;
    padding: 12px 8px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 4px;
}

.linkedin-actions button:hover {
    background: #333;
    color: #fff;
}

/* ===============================================
   TWITTER/X STYLES
   =============================================== */

.twitter-post {
    background: #000;
    border: 3px solid #1d9bf0;
    border-radius: 16px;
    padding: 12px 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.twitter-post::before {
    content: '𝕏 Tweet';
    display: block;
    color: #1d9bf0;
    padding: 0 0 8px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid #2f3336;
    margin-bottom: 12px;
}

.twitter-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.twitter-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.twitter-meta {
    flex: 1;
}

.twitter-author {
    font-weight: 700;
    color: #e7e9ea;
    font-size: 15px;
}

.twitter-verified {
    color: #1d9bf0;
    font-size: 14px;
}

.twitter-handle {
    color: #71767b;
    font-size: 15px;
}

.twitter-logo {
    font-size: 20px;
    color: #e7e9ea;
}

.twitter-content {
    color: #e7e9ea;
    font-size: 17px;
    line-height: 1.4;
    white-space: pre-wrap;
    margin-bottom: 8px;
}

.twitter-hashtags {
    color: #1d9bf0;
    font-size: 15px;
    margin-bottom: 12px;
}

.twitter-timestamp {
    color: #71767b;
    font-size: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #2f3336;
}

.twitter-stats {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #2f3336;
    color: #71767b;
    font-size: 14px;
}

.twitter-stats strong {
    color: #e7e9ea;
}

.twitter-actions {
    display: flex;
    justify-content: space-around;
    padding-top: 8px;
    color: #71767b;
    font-size: 18px;
}

.twitter-actions span {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
}

.twitter-actions span:hover {
    background: rgba(29, 155, 240, 0.1);
}

/* ===============================================
   TWITTER THREAD STYLES
   =============================================== */

.thread-post {
    background: #000;
    border: 3px solid #1d9bf0;
    border-radius: 16px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.thread-post::before {
    content: '𝕏 Thread';
    display: block;
    background: #1d9bf0;
    color: white;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.thread-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid #2f3336;
    color: #e7e9ea;
    font-weight: 600;
}

.thread-header .twitter-logo {
    font-size: 18px;
}

.thread-tweets {
    padding: 0;
}

.thread-tweet-item {
    display: flex;
    padding: 12px 16px;
    gap: 10px;
    border-bottom: 1px solid #2f3336;
    position: relative;
}

.thread-tweet-item:last-child {
    border-bottom: none;
}

.thread-avatar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thread-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.thread-line {
    width: 2px;
    flex: 1;
    background: #333;
    margin-top: 4px;
}

.thread-tweet-content {
    flex: 1;
}

.thread-tweet-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.thread-tweet-author {
    font-weight: 700;
    color: #e7e9ea;
    font-size: 15px;
}

.thread-tweet-handle {
    color: #71767b;
    font-size: 15px;
}

.thread-tweet-text {
    color: #e7e9ea;
    font-size: 15px;
    line-height: 1.4;
}

.thread-tweet-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    color: #71767b;
    font-size: 13px;
    max-width: 300px;
}

/* ===============================================
   INSTAGRAM STYLES
   =============================================== */

.instagram-post {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instagram-post::before {
    content: '📸 Instagram';
    display: block;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 8px 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.instagram-phone {
    width: 320px;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid #333;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
}

.instagram-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.instagram-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
}

.instagram-username {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.instagram-more {
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
}

.instagram-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.instagram-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-placeholder {
    font-size: 64px;
    opacity: 0.5;
}

.instagram-image-desc {
    padding: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    line-height: 1.5;
    text-align: left;
    background: linear-gradient(135deg, #405de6 0%, #833ab4 50%, #fd1d1d 100%);
}

.instagram-image-desc .desc-label {
    color: rgba(255,255,255,0.6);
}

.instagram-actions {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    font-size: 24px;
}

.instagram-left {
    display: flex;
    gap: 16px;
}

.instagram-likes {
    padding: 0 12px 8px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.instagram-caption {
    padding: 0 12px 8px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.instagram-caption .instagram-username {
    margin-right: 6px;
}

.instagram-hashtags {
    padding: 0 12px 16px;
    color: #e0f1ff;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===============================================
   TIKTOK STYLES
   =============================================== */

.tiktok-post {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tiktok-post::before {
    content: '🎵 TikTok Concept';
    display: block;
    background: linear-gradient(45deg, #00f2ea, #ff0050);
    color: white;
    padding: 8px 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tiktok-phone {
    width: 280px;
    height: 500px;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    border: 3px solid #333;
    position: relative;
}

.tiktok-video {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.tiktok-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.tiktok-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 60px;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tiktok-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.3;
}

.tiktok-sidebar {
    position: absolute;
    right: 8px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tiktok-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #000;
    border: 2px solid #fff;
}

.tiktok-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tiktok-action span {
    margin-top: 2px;
}

.tiktok-bottom {
    position: absolute;
    bottom: 16px;
    left: 12px;
    right: 60px;
}

.tiktok-user {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 6px;
}

.tiktok-desc {
    color: #fff;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.3;
}

.tiktok-script-box {
    background: var(--bg-card);
    border: 2px dashed #ff0050;
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    max-width: 400px;
}

.tiktok-script-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.45rem;
    color: #ff0050;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tiktok-script {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dim);
}

/* ===============================================
   PRESS RELEASE STYLES
   =============================================== */

.press-post {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.press-post::before {
    content: '📰 Press Release';
    display: block;
    background: #333;
    color: #ffd700;
    padding: 8px 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.press-document {
    background: #fefefe;
    color: #111;
    padding: 40px;
    max-width: 500px;
    font-family: 'Times New Roman', Georgia, serif;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.press-logo {
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.press-header {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #333;
    margin-bottom: 8px;
}

.press-date {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 30px;
}

.press-content {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 30px;
    white-space: pre-wrap;
}

.press-boilerplate {
    font-size: 11px;
    line-height: 1.6;
    color: #555;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    margin-bottom: 20px;
}

.press-contact {
    font-size: 11px;
    color: #666;
    text-align: center;
}
