/* vibe-rally-story.css - Crisp, blur-free version */

:root {
    --primary-font: 'Share Tech Mono', monospace;
    --heading-font: 'Press Start 2P', cursive;
    --glow-cyan: #00ffff;
    --text-cyan: #40e0d0;  /* Less harsh cyan for better readability */
    --border-cyan: #00cccc;  /* Darker cyan for borders */
    --glow-magenta: #ff00ff;
    --text-magenta: #ff66ff;  /* Lighter magenta for text */
    --border-magenta: #cc00cc;  /* Darker magenta for borders */
    --background-color: #0d0d0d;
    --text-color: #ffffff;
    --text-secondary: #b0b0b0;
    --container-bg: #1a1a1a;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--primary-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    font-size: 16px;
}

.container {
    max-width: 900px;
    width: 100%;
    background-color: var(--container-bg);
    border: 2px solid var(--border-cyan);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);  /* Simple drop shadow only */
    border-radius: 10px;
    padding: 40px;
    margin: 20px auto;
}

header, footer {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    padding-bottom: 20px;
}

header {
    margin-bottom: 40px;
}

footer {
    border-bottom: none;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.9em;
    color: var(--text-secondary);
}

h1, h2, h3 {
    font-family: var(--heading-font);
    margin-bottom: 1em;
    line-height: 1.4;
    text-shadow: none;  /* No shadows anywhere */
}

h1 {
    font-size: 1.6em;
    color: var(--text-cyan);  /* Using the less harsh cyan */
    letter-spacing: 1px;
}

h2 {
    font-size: 1.2em;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(0, 204, 204, 0.1) 0%, transparent 100%);
    border-left: 4px solid var(--border-cyan);
    padding: 10px 15px;
    margin-top: 50px;
    margin-bottom: 25px;
}

h3 {
    font-size: 1em;
    color: #ffffff;
    background: rgba(204, 0, 204, 0.1);
    border-left: 3px solid var(--border-magenta);
    padding: 8px 12px;
    margin-top: 35px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 1.2em;
    color: var(--text-color);
}

ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

ul li {
    background-color: rgba(26, 26, 26, 0.8);
    padding: 18px;
    margin-bottom: 12px;
    border-left: 3px solid var(--border-magenta);
    border-radius: 0 4px 4px 0;
    transition: all 0.2s ease;
}

ul li:hover {
    background-color: rgba(30, 30, 30, 0.9);
    border-left-width: 5px;
    padding-left: 16px;
}

ul li strong {
    color: var(--text-cyan);  /* Using the less harsh cyan */
    font-weight: bold;
}

/* Special callout box for important sections */
.vibe-callout {
    border: 1px solid var(--border-cyan);
    background: rgba(0, 204, 204, 0.05);
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

/* Back link button styling */
a.back-link {
    font-family: var(--heading-font);
    text-decoration: none;
    color: var(--text-cyan);
    background-color: transparent;
    border: 2px solid var(--border-cyan);
    padding: 12px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.8em;
    text-shadow: none;  /* Ensure no shadow */
}

a.back-link:hover {
    background-color: var(--border-cyan);
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);  /* Simple shadow */
    transform: translateY(-2px);
}

hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204, 0, 204, 0.5), transparent);
    margin: 60px auto;
    width: 80%;
}

/* Technical section specific styling */
#technical-deep-dive {
    margin-top: 60px;
}

#technical-deep-dive ul li {
    border-left-color: var(--border-cyan);
    background-color: rgba(0, 30, 30, 0.3);
}

#technical-deep-dive h3 {
    background: rgba(0, 204, 204, 0.1);
    border-left-color: var(--border-cyan);
}

#technical-deep-dive h4 {
    font-family: var(--heading-font);
    font-size: 0.9em;
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px dotted rgba(0, 204, 204, 0.5);
}

/* Mobile Responsive Design - Keep fonts consistent */
@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 15px;
        /* Same font family as desktop */
    }
    
    .container {
        padding: 25px;
        margin: 10px;
        border-radius: 8px;
    }
    
    h1 {
        font-size: 1.3em;
        letter-spacing: 0;
    }
    
    h2 {
        font-size: 1.1em;
        padding: 8px 12px;
    }
    
    h3 {
        font-size: 0.9em;
        padding: 6px 10px;
    }
    
    ul li {
        padding: 15px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
        line-height: 1.7;
        /* Same font family as desktop */
    }
    
    .container {
        padding: 20px 15px;
        margin: 5px;
    }
    
    h1 {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
    
    h2 {
        font-size: 0.95em;
        margin-top: 35px;
    }
    
    h3 {
        font-size: 0.85em;
        margin-top: 25px;
    }
    
    a.back-link {
        padding: 10px 15px;
        font-size: 0.7em;
    }
    
    ul li {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    hr {
        margin: 40px auto;
    }
}

/* Dark mode print styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .container {
        border: 1px solid black;
        box-shadow: none;
    }
}

/* Controls Reference */
#controls h3 {
    background: rgba(64, 224, 208, 0.1);
    border-left-color: var(--text-cyan);
}

/* Testimonials Section */
blockquote {
    background: rgba(26, 26, 26, 0.9);
    border-left: 4px solid var(--text-cyan);
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    position: relative;
}

blockquote p {
    font-style: italic;
    margin-bottom: 10px;
    color: #f0f0f0;
}

blockquote cite {
    display: block;
    text-align: right;
    color: var(--text-cyan);
    font-size: 0.9em;
    font-style: normal;
    margin-top: 10px;
}

blockquote cite:before {
    content: "— ";
}

/* Call to Action Section */
#call-to-action {
    padding: 40px 20px;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(0, 204, 204, 0.05) 0%, rgba(204, 0, 204, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 204, 204, 0.3);
}

#call-to-action h2 {
    background: none;
    border: none;
    color: var(--text-cyan);
    text-align: center;
    padding: 0;
    margin-bottom: 20px;
}

#call-to-action .back-link {
    background-color: var(--border-cyan) !important;
    color: #000 !important;
    font-size: 1.2em;
    padding: 20px 40px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 204, 204, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#call-to-action .back-link:hover {
    background-color: var(--text-cyan) !important;
    box-shadow: 0 6px 25px rgba(0, 204, 204, 0.6);
    transform: translateY(-3px);
}

/* Footer Links */
footer a {
    color: var(--text-cyan);
    text-decoration: none;
    border-bottom: 1px dotted var(--text-cyan);
    transition: all 0.2s ease;
}

footer a:hover {
    color: #ffffff;
    border-bottom-style: solid;
} 