:root {
    --bg-primary: #0a192f;
    --bg-secondary: #112240;
    --text-primary: #ccd6f6;
    --text-secondary: #8892b0;
    --accent: #64ffda;
    --nav-bg: rgba(10, 25, 47, 0.85);
    --card-bg: #112240;
    --border-color: #233554;
    --transition: all 0.3s ease;
    --font-mono: 'Fira Code', monospace;
    --font-sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    background: var(--bg-color);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.logo .bracket {
    color: var(--text-secondary);
}

.logo:active {
    transform: translateY(0);
}

.logo .bracket {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 2px;
}

.logo:hover .bracket {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link i {
    font-size: 1rem;
    color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

/* Terminal Window */
.terminal-window {
    background: var(--bg-secondary);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.terminal-header {
    background: var(--bg-secondary);
    padding: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.terminal-buttons span:nth-child(2) {
    background: #ffbd2e;
}

.terminal-buttons span:nth-child(3) {
    background: #27c93f;
}

.terminal-title {
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-left: 1rem;
}

.terminal-body {
    padding: 1.5rem;
    padding-top: 3rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.terminal-body .line {
    margin-bottom: 0.5rem;
}

.terminal-body .prompt {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.terminal-body .command {
    color: var(--text-primary);
}

.terminal-body .typing {
    display: inline-block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 4s steps(40, end);
    width: 100%;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Sections */
section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.projects-note {
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--bg-color);
    border-radius: 4px;
    display: inline-block;
}

.private-text {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    opacity: 0.9;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.accent {
    color: var(--accent);
}

/* About Section */
.about-content {
    display: grid;
    gap: 2rem;
}

.about-text {
    width: 100%;
    overflow: hidden;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
}

.faq-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

.terminal-faq {
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.terminal-faq .terminal-header {
    background: var(--border-color);
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.terminal-faq .terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-faq .terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.terminal-faq .terminal-buttons span:nth-child(2) {
    background: #ffbd2e;
}

.terminal-faq .terminal-buttons span:nth-child(3) {
    background: #27c93f;
}

.terminal-faq .terminal-title {
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-left: 1rem;
}

.terminal-faq .terminal-body {
    padding: 1rem;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question .prompt {
    color: var(--accent);
    margin-right: 0.5rem;
}

.faq-question .command {
    color: #e6c07b;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.faq-answer.active {
    max-height: 500px;
    margin-top: 0.5rem;
}

.faq-answer .comment {
    color: #608b4e;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}

.faq-answer .output {
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 4px;
    margin: 0;
    white-space: pre-wrap;
}

.skills {
    font-family: var(--font-mono);
}

.skill-categories {
    margin: 1rem 0;
    padding-left: 1rem;
}

.skill-category {
    margin-bottom: 1rem;
}

.skill-category h4 {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-left: 1rem;
}

.skill-tags span {
    background: var(--card-bg);
    color: var(--accent);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-left: 1rem;
}

.gallery-tags span {
    background: var(--bg-primary);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.8rem;
}

.gallery-placeholder {
    text-align: center;
    padding: 3rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    grid-column: 1 / -1;
}

.gallery-placeholder p {
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 1.1rem;
}

/* Skills Section */
.skills {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
}

.skills-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    width: 100%;
    overflow: hidden;
}

.skills-intro {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.skills-description {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.skill-item {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.skill-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.skill-item span {
    display: inline-block;
    font-size: 0.9rem;
}

/* Skill icons specific colors */
.skill-item .fa-html5 { color: #e34f26; }
.skill-item .fa-css3-alt { color: #2965f1; }
.skill-item .fa-js { color: #f7df1e; }
.skill-item .fa-database { color: #00758f; }
.skill-item .fa-file-code { color: #B39DDB; } /* Light purple color for JSON */

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.project-card h3,
.project-card p {
    margin: 1rem 0;
}

.project-card .project-header i {
    font-size: 2rem;
    color: var(--accent);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.project-tags span {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.project-content {
    width: 100%;
    overflow: hidden;
}

/* Contact Section */
.contact-section {
    padding: 2rem 0;
}

.contact-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    margin-bottom: 2rem;
    width: 100%;
    overflow: hidden;
}

.contact-text p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.contact-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin: 0 0.3rem;
    transition: var(--transition);
}

.contact-links a[title="Discord"] {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px dotted var(--text-secondary);
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    gap: 0.3rem;
}

.contact-item i {
    margin-right: 0.3rem;
    font-size: 1rem;
}

.contact-item span {
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.copyright {
    margin-top: 0.5rem;
    color: var(--text-secondary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal:not(.hidden) {
    display: flex;
}

.modal-content {
    background-color: #1e1e2e;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 300px;
    border: 2px solid #cba6f7;
}

.modal h2 {
    color: #cdd6f4;
    margin-bottom: 15px;
}

.modal p {
    color: #cdd6f4;
    margin-bottom: 20px;
}

.modal input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #45475a;
    border-radius: 4px;
    background-color: #313244;
    color: #cdd6f4;
}

.modal input:focus {
    outline: none;
    border-color: #cba6f7;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.modal button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #cba6f7;
    color: #1e1e2e;
    font-weight: bold;
    transition: background-color 0.2s;
}

.modal button:hover {
    background-color: #b4befe;
}

/* Leaderboard Styles */
.leaderboard {
    width: 400px;
    background-color: #313244;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.leaderboard h2 {
    color: #cdd6f4;
    text-align: center;
    margin-bottom: 15px;
}

#leaderboard-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leaderboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin-bottom: 5px;
    background-color: #1e1e2e;
    border-radius: 4px;
    color: #cdd6f4;
}

.leaderboard-item:nth-child(even) {
    background-color: #181825;
}

.rank {
    width: 30px;
    text-align: center;
    font-weight: bold;
    color: #cba6f7;
}

.player-name {
    flex-grow: 1;
    margin: 0 10px;
    text-align: left;
}

.score {
    min-width: 60px;
    text-align: right;
    font-weight: bold;
    color: #a6e3a1;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Breaking Glass Animation */
.glass-fragment {
    position: absolute;
    pointer-events: none;
    will-change: transform, opacity;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px) rotate(-5deg); }
    75% { transform: translateX(5px) rotate(5deg); }
}

.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

/* Fall Animation Styles */
.fallen {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    z-index: 1000;
    position: relative;
    background: rgba(var(--bg-secondary-rgb, 17, 34, 64), 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.fallen:active {
    cursor: grabbing;
}

.fallen.dragging {
    opacity: 0.7;
    transform: scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@keyframes fallDown {
    0% {
        transform: translateY(-100%) rotate(0deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotate(var(--rotation));
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 4rem 0;
    }

    section h2 {
        font-size: 2rem;
    }
}

.fursuit-footer {
    background: #f8f9fa;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b6b;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.footer-contact li i {
    color: #ff6b6b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

h2 .typing-effect,
p.typing-effect,
.skill-item .typing-effect,
.project-card .typing-effect {
    max-width: fit-content;
    display: inline-block;
}

/* Fursuit Maker Page Styles */
.queue-status {
    padding: 2rem;
    background-color: var(--bg-color);
}

.queue-info {
    font-family: 'Fira Code', monospace;
    color: var(--text-color);
    margin: 3rem 0 2rem 0;
    padding: 1rem;
}

.status-badge {
    display: inline-block;
    background-color: #33cc33;
    color: var(--bg-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 2rem;
    font-size: 1.2em;
}

.current-queue p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1em;
}

.current-queue ol {
    list-style-type: decimal;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.current-queue li {
    color: var(--text-muted);
    padding: 0.75rem 0;
    font-size: 1.1em;
}

.queue-note {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9em;
    margin-bottom: 1.5rem;
}

.contact-prompt {
    margin: 1rem 0;
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
}

.contact-prompt p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.telegram-link:hover {
    transform: translateY(-2px);
}

.telegram-link i {
    font-size: 1.2em;
}



.terminal-window {
    width: 100%;
    max-width: 800px;
    background-color: var(--terminal-bg);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.terminal-header {
    background-color: var(--terminal-header);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff5f56;
}

.terminal-buttons span:nth-child(2) {
    background-color: #ffbd2e;
}

.terminal-buttons span:nth-child(3) {
    background-color: #27c93f;
}

.terminal-title {
    color: var(--text-secondary);
    margin-left: 1rem;
    font-size: 0.8rem;
    font-family: var(--font-mono);
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Fira Code', monospace;
    padding-top: 3rem;
}

.line {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.prompt {
    color: var(--accent-color);
}

.command {
    color: var(--text-color);
}

.typing {
    color: var(--text-color);
    border-right: 2px solid var(--accent-color);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accent {
    color: var(--accent-color);
}

.story-content {
    color: var(--text-color);
    line-height: 1.6;
    margin-top: 1rem;
}

.story-content p {
    margin-bottom: 1rem;
}

.fursuit-pricing {
    padding: 4rem 0;
}

.pricing-description {
    color: var(--text-color);
    margin: 1rem 0 2rem;
    font-family: 'Fira Code', monospace;
    line-height: 1.6;
}

.pricing-description p {
    margin-bottom: 1rem;
}

.pricing-description ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-description ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-description ul li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pricing-table {
    font-family: 'Fira Code', monospace;
    margin: 1rem 0 2rem;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    overflow: hidden;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.header {
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-weight: bold;
}

.pricing-row span {
    color: var(--text-color);
}

.pricing-row .price {
    color: var(--accent-color);
}

.pricing-row.header .price {
    color: var(--bg-color);
}

.output {
    color: var(--text-color);
    font-style: italic;
}

.design-info {
    font-family: 'Fira Code', monospace;
    color: var(--text-color);
    margin: 1rem 0 2rem;
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: 4px;
}

.design-info p {
    margin-bottom: 1rem;
}

.design-info ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.design-info ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.design-info ul li:before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.design-info .note {
    color: var(--text-muted);
    font-size: 0.9em;
    font-style: italic;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .pricing-row span {
        display: block;
    }
    
    .pricing-row.header {
        display: none;
    }
    
    .pricing-row span:before {
        content: attr(class);
        text-transform: capitalize;
        color: var(--text-muted);
        display: block;
        font-size: 0.8em;
        margin-bottom: 0.2rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

.gallery-placeholder {
    text-align: center;
    padding: 4rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    color: var(--text-muted);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-item {
    text-align: center;
}

.process-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.process-item h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.process-item p {
    color: var(--text-muted);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-item span {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .terminal-window {
        width: 90%;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
}

.status-badge {
    background-color: green;
}

.current-queue {
    margin: 1rem 0 2rem;
}

.current-queue p {
    margin-bottom: 0.5rem;
}

.current-queue ol {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.current-queue li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.current-queue li:before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* TOS Section */
.tos-content {
    font-family: 'Fira Code', monospace;
    color: var(--text-color);
    margin: 1rem 0 2rem;
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: 4px;
}

.tos-content h3 {
    color: var(--accent-color);
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.1em;
}

.tos-content h3:first-child {
    margin-top: 0;
}

.tos-content ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.tos-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.tos-content ul li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.tos-content .tos-note {
    color: var(--accent-color);
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

h2 .typing-effect,
.line .typing-effect {
    border-right: 2px solid var(--accent-color);
    animation: blink 1s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}

/* Code Rolling Animation */

.loading-screen,
.loading-screen.hidden,
.fox-loader,
.fox-icon,
.fox-icon svg,
.fox-body,
.fox-face,
.fox-ears,
.fox-eye,
.fox-eye.left,
.fox-eye.right,
.loading-bar,
.loading-progress,
.loading-text,
.code-loader,
.code-container,
.code-line,
.dots {
    display: none;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes blink {
    0%, 95%, 98% { transform: scaleY(1); }
    96%, 97% { transform: scaleY(0.1); }
}

@keyframes tiltHead {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

@keyframes wiggleEars {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes slideLine {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cursor {
    from, to { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}
