/* 
 * SpeckiTime Website Styles
 * Tech-oriented, neon-colored, modern design
 * Colors: Dark background (#0D0D1A), Neon Yellow (#FFD100), Violet (#9D4EDD), 
 * Blue (#3A86FF), Turquoise (#00F5D4)
 */

/* Base Styles */
:root {
    --bg-dark: #0D0D1A;
    --bg-darker: #080814;
    --neon-yellow: #FFD100;
    --neon-violet: #9D4EDD;
    --neon-blue: #3A86FF;
    --neon-turquoise: #00F5D4;
    --text-light: #F8F9FA;
    --text-dim: #ADB5BD;
    --terminal-bg: rgba(8, 8, 20, 0.8);
    --card-bg: rgba(20, 20, 40, 0.7);
    --header-font: 'Rajdhani', sans-serif;
    --mono-font: 'Share Tech Mono', monospace;
}

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

body {
    font-family: var(--header-font);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--neon-turquoise);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--neon-yellow);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--neon-violet), var(--neon-blue));
    color: var(--text-light);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-family: var(--header-font);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
}

.btn:hover {
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.6);
    transform: translateY(-2px);
}

.section-title {
    font-family: var(--header-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-turquoise), transparent);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    max-width: 800px;
}

.highlight {
    color: var(--neon-yellow);
    font-weight: 600;
}

.blink {
    animation: blink 1s infinite;
    color: var(--neon-turquoise);
}

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

/* Circuit Board Background */
.circuit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/circuit-pattern.svg');
    background-size: cover;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

/* Header */
header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(8, 8, 20, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 245, 212, 0.2);
    transition: all 0.3s ease;
    height: 80px;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 180px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--neon-turquoise);
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--neon-turquoise);
}

.contact-btn {
    background: linear-gradient(90deg, var(--neon-violet), var(--neon-blue));
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 5px;
}

.contact-btn:hover {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-violet));
    color: var(--text-light);
}

.contact-btn:after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(157, 78, 221, 0.2), transparent 50%),
                radial-gradient(circle at bottom left, rgba(0, 245, 212, 0.2), transparent 50%);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.mascot {
    flex: 0 0 40%;
    animation: float 6s ease-in-out infinite;
}

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

.hero-text {
    flex: 0 0 55%;
}

/* Tutorial System - Neues Design */
.tutorial-header {
    padding: 180px 0 50px;
    position: relative;
    background-color: var(--bg-darker);
}

.tutorial-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2) 0%, transparent 100%);
    z-index: 0;
}

.tutorial-breadcrumb {
    margin-bottom: 20px;
    font-family: var(--mono-font);
    font-size: 0.9rem;
    color: var(--text-dim);
}

.tutorial-breadcrumb a {
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.tutorial-breadcrumb a:hover {
    color: var(--neon-turquoise);
}

.tutorial-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
}

.tutorial-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.tutorial-meta span {
    display: flex;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.tutorial-meta i {
    margin-right: 5px;
    color: var(--neon-turquoise);
}

.tutorial-category {
    background: var(--neon-violet);
    color: var(--text-light) !important;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Tutorial Content */
.tutorial-content {
    padding: 50px 0 100px;
}

.tutorial-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.tutorial-main {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 212, 0.1);
}

.tutorial-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.tutorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tutorial-text {
    padding: 40px;
}

.tutorial-text h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 10px;
}

.tutorial-text h2:first-child {
    margin-top: 0;
}

.tutorial-text h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--neon-turquoise);
}

.tutorial-text h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--neon-yellow);
}

.tutorial-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.05rem;
}

.tutorial-text a {
    color: var(--neon-turquoise);
    text-decoration: none;
    border-bottom: 1px dashed var(--neon-turquoise);
    transition: all 0.3s ease;
}

.tutorial-text a:hover {
    color: var(--neon-yellow);
    border-color: var(--neon-yellow);
}

.tutorial-text ul, 
.tutorial-text ol {
    margin: 0 0 25px 20px;
    line-height: 1.8;
}

.tutorial-text li {
    margin-bottom: 10px;
    position: relative;
}

.tutorial-text ul li::before {
    content: '•';
    color: var(--neon-turquoise);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.tutorial-text ol {
    counter-reset: item;
    list-style-type: none;
}

.tutorial-text ol li {
    counter-increment: item;
    margin-bottom: 10px;
    position: relative;
}

.tutorial-text ol li::before {
    content: counter(item) '.';
    color: var(--neon-turquoise);
    font-weight: bold;
    display: inline-block;
    width: 2em;
    margin-left: -2em;
    margin-right: 0.5em;
    text-align: right;
}

/* Code-Blöcke und Terminal */
.terminal {
    margin: 25px 0;
    background: var(--terminal-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 212, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 30px rgba(0, 245, 212, 0.1);
}

.terminal-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-title {
    font-family: var(--mono-font);
    color: var(--neon-turquoise);
    font-size: 0.9rem;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.terminal-buttons span:nth-child(1) {
    background-color: #FF5F56;
}

.terminal-buttons span:nth-child(2) {
    background-color: #FFBD2E;
}

.terminal-buttons span:nth-child(3) {
    background-color: #27C93F;
}

.terminal-body {
    padding: 20px;
    font-family: var(--mono-font);
    font-size: 1rem;
    line-height: 1.8;
}

.terminal-body p {
    margin-bottom: 15px;
}

.terminal-body .command {
    color: var(--neon-yellow);
    position: relative;
    padding-left: 20px;
}

.terminal-body .command:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-turquoise);
}

.terminal-body .response {
    color: var(--text-dim);
}

.typing {
    border-right: 2px solid var(--neon-turquoise);
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--neon-turquoise) }
}

/* Stream Schedule */
.stream-schedule {
    padding: 100px 0;
    background-color: var(--bg-darker);
    position: relative;
}

.stream-schedule:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, transparent 100%);
    z-index: 0;
}

.stream-schedule .container {
    position: relative;
    z-index: 1;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.schedule-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(58, 134, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--neon-blue);
}

.schedule-item.special:before {
    background: var(--neon-yellow);
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(58, 134, 255, 0.5);
}

.day {
    font-family: var(--header-font);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.time {
    font-family: var(--mono-font);
    font-size: 1.1rem;
    color: var(--neon-turquoise);
    margin-bottom: 15px;
}

.topic {
    color: var(--text-dim);
    font-size: 1rem;
}

/* Latest Blog Posts */
.latest-posts {
    padding: 120px 0 100px 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.post-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 245, 212, 0.3);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--neon-violet);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-content p {
    color: var(--text-dim);
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: auto;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Twitch Section */
.twitch-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
    position: relative;
}

.twitch-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 245, 212, 0.1) 0%, transparent 100%);
    z-index: 0;
}

.twitch-section .container {
    position: relative;
    z-index: 1;
}

.twitch-container {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.twitch-embed {
    flex: 0 0 65%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.stream-info {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stream-status {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 245, 212, 0.2);
}

.stream-status img {
    max-width: 120px;
    margin-bottom: 20px;
}

.stream-status h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--neon-yellow);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.social-btn.twitch {
    background-color: #6441A4;
    color: white;
}

.social-btn.youtube {
    background-color: #FF0000;
    color: white;
}

.social-btn.discord {
    background-color: #5865F2;
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Tools Preview */
.tools-preview {
    padding: 100px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tool-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(157, 78, 221, 0.2);
    position: relative;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(157, 78, 221, 0.5);
}

.tool-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-violet), var(--neon-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--text-light);
}

.tool-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.tool-card p {
    color: var(--text-dim);
    margin-bottom: 20px;
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 209, 0, 0.9);
    color: var(--bg-dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-darker);
    position: relative;
}

.contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, rgba(58, 134, 255, 0.1) 0%, transparent 100%);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 0 0 45%;
}

.contact-form {
    flex: 0 0 45%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(20, 20, 40, 0.5);
    border: 1px solid rgba(58, 134, 255, 0.3);
    border-radius: 5px;
    color: var(--text-light);
    font-family: var(--header-font);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(58, 134, 255, 0.2);
}

/* Footer */
footer {
    background-color: var(--bg-darker);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(0, 245, 212, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-logo {
    flex: 0 0 250px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-links-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--neon-turquoise);
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: var(--neon-turquoise);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(20, 20, 40, 0.7);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: var(--text-light);
}

.social-icons a.fa-twitch:hover {
    background-color: #6441A4;
}

.social-icons a.fa-youtube:hover {
    background-color: #FF0000;
}

.social-icons a.fa-twitter:hover {
    background-color: #1DA1F2;
}

.social-icons a.fa-discord:hover {
    background-color: #5865F2;
}

.social-icons a.fa-github:hover {
    background-color: #333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mascot {
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    .twitch-container {
        flex-direction: column;
    }
    
    .twitch-embed, .stream-info {
        flex: 0 0 100%;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(0, 245, 212, 0.2);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 70px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .schedule-grid, .posts-grid, .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* Header-Abstand für Tutorial-Seiten */
section.tutorial-header, 
section.page-header {
    padding-top: 120px; /* Mehr Abstand für den fixen Header */
    margin-top: 0;
}

/* Breadcrumb Navigation */
.breadcrumb-container,
.tutorial-breadcrumb {
    background: rgba(13, 13, 26, 0.7);
    border-bottom: 1px solid rgba(0, 245, 212, 0.2);
    padding: 10px 0;
    margin-bottom: 20px;
}

.breadcrumb,
.tutorial-breadcrumb {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: #ccc;
}

.breadcrumb a,
.tutorial-breadcrumb a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover,
.tutorial-breadcrumb a:hover {
    color: var(--neon-yellow);
}

.breadcrumb span,
.tutorial-breadcrumb span {
    color: var(--neon-yellow);
}