@font-face {
    font-family: "Hurmit Nerd Font";
    src: url("./fonts/HurmitNerdFontMono-Regular.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --text: #e4e4e4;
    --accent: #00ff88;
    --secondary: #1a1a1a;
    --border: #2a2a2a;
}

body {
    font-family: 'Hurmit Nerd Font Mono', monospace, 'Courier New';
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.glitch {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    color: var(--accent);
    animation: glitch 3s infinite;
    min-height: 1.2em;
}

.glitch::after {
    content: '';
    border-right: 2px solid var(--accent);
    animation: blink 0.8s infinite;
    margin-left: 4px;
}

@keyframes glitch {
    0%, 90%, 100% {
        text-shadow: none;
    }
    92% {
        text-shadow: 2px 2px #ff00ff, -2px -2px #00ffff;
    }
    94% {
        text-shadow: -2px 2px #ff00ff, 2px -2px #00ffff;
    }
}

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

.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

/* Grid Background Effect */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Sections Preview */
.sections-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.section-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transition: left 0.3s ease;
}

.section-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.section-card:hover::before {
    left: 100%;
}

.section-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.section-card p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Terminal Effect */
.terminal {
    background: var(--secondary);
    border: 1px solid var(--border);
    padding: 1.5rem;
    margin: 4rem 0;
    font-size: 0.9rem;
}

.terminal-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.terminal-line {
    margin: 0.5rem 0;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.terminal-line:nth-child(1) { animation-delay: 0.2s; }
.terminal-line:nth-child(2) { animation-delay: 0.3s; }
.terminal-line:nth-child(3) { animation-delay: 0.5s; }
.terminal-line:nth-child(4) { animation-delay: 0.6s; }
.terminal-line:nth-child(5) { animation-delay: 0.8s; }
.terminal-line:nth-child(6) { animation-delay: 1s; }

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

.prompt {
    color: #2CFF05;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }
}

/* Cursor Effect */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
}

/* Blog Container */
.blog-post {
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Back Link */
.back-link {
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    transition: transform 0.2s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

/* Post Header */
.post-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}

.post-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--accent);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    color: var(--text);
    opacity: 0.6;
    font-size: 0.9rem;
}

.post-separator {
    opacity: 0.4;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    background: var(--secondary);
    border: 1px solid var(--border);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-size: 0.85rem;
    transition: border-color 0.2s ease;
}

.tag:hover {
    border-color: var(--accent);
}

/* Post Content */
.post-content {
    line-height: 1.8;
}

.post-content .lead {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.post-content p {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.post-content h2 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-top: 3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.post-content h2::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.post-content h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

/* Lists */
.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.post-content ul li::marker {
    color: var(--accent);
}

.post-content ol li::marker {
    color: var(--accent);
}

/* Inline code */
.post-content code {
    background: var(--secondary);
    border: 1px solid var(--border);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--accent);
}

/* Code blocks */
.code-block {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 5px;
    margin: 2rem 0;
    overflow: hidden;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.code-language {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.code-copy {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.code-copy:hover {
    background: var(--accent);
    color: var(--bg);
}

.code-block pre {
    margin: 0;
    padding: 1.5rem;
    overflow-x: auto;
}

.code-block code {
    background: none;
    border: none;
    padding: 0;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Images and figures */
.post-image {
    margin: 2.5rem 0;
    text-align: center;
}

.post-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 5px;
}

.post-image figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    opacity: 0.6;
    font-style: italic;
}

/* Blockquotes */
.post-content blockquote {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--accent);
    background: var(--secondary);
    font-style: italic;
    color: var(--text);
    opacity: 0.9;
}

/* Callouts */
.callout {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    display: flex;
    gap: 1rem;
    border: 1px solid;
}

.callout-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.callout-content {
    flex: 1;
}

.callout-info {
    background: rgba(0, 136, 255, 0.1);
    border-color: rgba(0, 136, 255, 0.3);
}

.callout-warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.callout-success {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

/* Horizontal rule */
.post-divider {
    margin: 3rem 0;
    border: none;
    border-top: 1px solid var(--border);
    opacity: 0.3;
}

/* Post Footer */
.post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-section span {
    opacity: 0.6;
}

.share-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.share-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Logo link fix */
.logo a {
    color: var(--accent);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .post-container {
        padding: 0 1rem;
    }

    .post-title {
        font-size: 1.8rem;
    }

    .post-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-separator {
        display: none;
    }

    .code-block pre {
        padding: 1rem;
        font-size: 0.85rem;
    }
}

/* Blog Index Styles */
.blog-index {
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.blog-index-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Blog Header */
.blog-header {
    margin-bottom: 4rem;
    text-align: center;
}

.blog-index-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--accent);
    margin-bottom: 1rem;
}

.blog-index-subtitle {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Controls Section */
.blog-controls {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-search {
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
}

.search-input::placeholder {
    color: var(--text);
    opacity: 0.5;
}

.blog-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

/* Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Post Card */
.blog-post-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog-post-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.blog-post-card:hover::after {
    width: 100%;
}

.blog-post-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}


/* Featured Post */
.blog-post-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(0, 255, 136, 0.05) 100%);
}

.post-featured-badge {
    background: var(--accent);
    color: var(--bg);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Post Card Header */
.post-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.post-card-date {
    color: var(--text);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Post Card Title */
.post-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-card-title a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.post-card-title a:hover {
    opacity: 0.8;
}

/* Post Card Excerpt */
.post-card-excerpt {
    color: var(--text);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Post Card Footer */
.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.post-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-card-tag {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--accent);
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.post-card-tag:hover {
    background: rgba(0, 255, 136, 0.2);
}

.post-card-readtime {
    color: var(--text);
    opacity: 0.5;
    font-size: 0.85rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    opacity: 0.6;
}

.empty-state p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-index-container {
        padding: 0 1rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-card.featured {
        grid-column: 1;
    }

    .blog-filters {
        justify-content: flex-start;
    }

    .filter-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* About Me Styles */

.about-page {
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: 1.2rem;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.about-image-container {
    display: flex;
    justify-content: center;
}

.about-image {
    width: 250px;
    height: 250px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent), transparent, var(--accent));
    border-radius: 50%;
    animation: rotate 3s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Section Titles */
.section-title {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.section-description {
    opacity: 0.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Now Section */
.now-section {
    margin-bottom: 6rem;
}

.now-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.now-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: all 0.3s ease;
}

.now-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.now-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.now-card h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.now-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Bio Section */
.bio-section {
    margin-bottom: 6rem;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text);
}

/* Tools Section */
.tools-section {
    margin-bottom: 6rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tool-category h3 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tool-tag {
    background: var(--secondary);
    border: 1px solid var(--border);
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.tool-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Timeline Section */
.timeline-section {
    margin-bottom: 6rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border: 2px solid var(--bg);
    border-radius: 50%;
    z-index: 1;
}

.timeline-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.timeline-date {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    opacity: 0.7;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    margin-bottom: 6rem;
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.contact-icon {
    color: var(--accent);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-link:hover .contact-icon {
    transform: translateX(5px);
}

.contact-text {
    font-size: 1.1rem;
}

/* Extras Section */
.extras-section {
    margin-bottom: 4rem;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.extra-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.extra-card:hover {
    border-color: var(--accent);
    transform: rotate(-1deg);
}

.extra-card p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        width: 200px;
        height: 200px;
    }

    .about-container {
        padding: 0 1rem;
    }

    .now-grid,
    .tools-grid,
    .contact-links,
    .extras-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        left: -2rem;
    }
}
