:root {
    --rosa: #ff6bb5;
    --morado: #c77dff;
    --azul: #6a9eff;
    --violeta: #9d4edd;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --border: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --font-primary: 'Inter', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-primary);
    z-index: 1001;
}

.logo-icon {
    color: var(--rosa);
    font-size: 1.4rem;
}

.logo-text {
    background: linear-gradient(45deg, var(--rosa), var(--azul));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    z-index: 999;
}

.nav-menu.active {
    display: flex;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    width: 100%;
    text-align: center;
}

.nav-link.active {
    color: var(--text-primary);
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 4px 0;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.hero-content {
    width: 100%;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: linear-gradient(135deg, var(--rosa), var(--violeta));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-family: var(--font-accent);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(135deg, var(--rosa), var(--azul));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 280px;
    max-width: 450px;
    margin: 0 auto;
}

.animated-blob {
    position: relative;
    width: 100%;
    height: 100%;
}

.blob-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.layer-1 {
    background: linear-gradient(135deg, var(--rosa), transparent 70%);
    animation: blob-animate-1 20s infinite;
    top: 0;
    left: 0;
}

.layer-2 {
    background: linear-gradient(135deg, var(--morado), transparent 70%);
    animation: blob-animate-2 25s infinite;
    top: 10%;
    left: 10%;
}

.layer-3 {
    background: linear-gradient(135deg, var(--azul), transparent 70%);
    animation: blob-animate-3 30s infinite;
    top: -10%;
    left: -10%;
}

@keyframes blob-animate-1 {
    0% {
        transform: rotate(0deg) scale(1);
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        border-radius: 60% 40% 30% 70% / 40% 50% 60% 50%;
    }
    50% {
        transform: rotate(180deg) scale(1.05);
        border-radius: 50% 50% 70% 30% / 50% 70% 30% 50%;
    }
    75% {
        transform: rotate(270deg) scale(1.15);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    100% {
        transform: rotate(360deg) scale(1);
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
}

@keyframes blob-animate-2 {
    0% {
        transform: rotate(120deg) scale(0.9);
        border-radius: 60% 40% 30% 70% / 40% 50% 60% 50%;
    }
    25% {
        transform: rotate(210deg) scale(1);
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
    50% {
        transform: rotate(300deg) scale(0.95);
        border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%;
    }
    75% {
        transform: rotate(390deg) scale(1.05);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    100% {
        transform: rotate(480deg) scale(0.9);
        border-radius: 60% 40% 30% 70% / 40% 50% 60% 50%;
    }
}

@keyframes blob-animate-3 {
    0% {
        transform: rotate(240deg) scale(0.8);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        transform: rotate(330deg) scale(0.9);
        border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%;
    }
    50% {
        transform: rotate(420deg) scale(0.85);
        border-radius: 50% 50% 70% 30% / 50% 70% 30% 50%;
    }
    75% {
        transform: rotate(510deg) scale(0.95);
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
    100% {
        transform: rotate(600deg) scale(0.8);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.filters-section {
    padding: 1.5rem 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 60px;
    z-index: 90;
    transition: transform 0.3s ease;
}

.filters-section.hidden {
    transform: translateY(-100%);
}

.filters-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.filter-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.filter-buttons::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 70px;
    text-align: center;
}

.filter-btn:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--rosa), var(--morado));
    color: var(--bg-primary);
    border-color: transparent;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 0.9rem;
    z-index: 1;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--morado);
    box-shadow: 0 0 0 2px rgba(199, 125, 255, 0.2);
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.loader {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.loader-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--rosa), var(--morado));
    border-radius: 50%;
    animation: loaderBounce 1.4s infinite ease-in-out both;
}

.loader-dot:nth-child(1) { animation-delay: -0.32s; }
.loader-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes loaderBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.projects-section {
    padding: 3rem 0;
    min-height: 400px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--rosa);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rosa), var(--morado), var(--azul));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover::before {
    opacity: 1;
}

.project-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-header {
    margin-bottom: 0.75rem;
}

.project-id {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-accent);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.project-title {
    font-family: var(--font-accent);
    font-size: 1.35rem;
    margin: 0.25rem 0;
    color: var(--text-primary);
    line-height: 1.2;
}

.project-category {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 107, 181, 0.1);
    border: 1px solid rgba(255, 107, 181, 0.2);
    border-radius: 10px;
    font-size: 0.75rem;
    color: var(--rosa);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.project-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-tech {
    margin-bottom: 1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.tech-tag {
    padding: 0.2rem 0.6rem;
    background: rgba(106, 158, 255, 0.1);
    border: 1px solid rgba(106, 158, 255, 0.2);
    border-radius: 10px;
    font-size: 0.75rem;
    color: var(--azul);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(106, 158, 255, 0.2);
    transform: translateY(-1px);
}

.project-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rosa), var(--morado));
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 181, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--azul);
}

.btn-full {
    width: 100%;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.no-results i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.no-results h3 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.no-results p {
    font-size: 0.9rem;
}

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 2rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer .logo {
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 300px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.project-modal.active {
    display: flex;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10001;
}

.modal-container {
    position: relative;
    z-index: 10002;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
    margin-top: 2rem;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg-card);
    z-index: 1;
}

.modal-header h2 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.modal-close {
    width: 36px;
    height: 36px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--rosa);
    border-color: var(--rosa);
}

.modal-body {
    padding: 1.25rem;
}

.modal-image-container {
    margin-bottom: 1.25rem;
}

.modal-image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.modal-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.meta-item {
    text-align: center;
    min-width: 0;
}

.meta-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meta-value {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-description {
    margin-bottom: 1.5rem;
}

.modal-description h3 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.modal-description p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

.modal-tech {
    margin-bottom: 1.5rem;
}

.modal-tech h3 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.modal-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.modal-tech-tag {
    padding: 0.3rem 0.7rem;
    background: rgba(106, 158, 255, 0.1);
    border: 1px solid rgba(106, 158, 255, 0.3);
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--azul);
    font-weight: 500;
}

.modal-actions {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        font-size: 1.8rem;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        padding: 0;
        border: none;
        gap: 2rem;
    }
    
    .nav-link {
        padding: 0;
        width: auto;
        text-align: left;
        position: relative;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--rosa), var(--morado));
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .hero {
        padding-top: 7rem;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-visual {
        height: 350px;
        max-width: 550px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .filters-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        flex: 1;
        overflow-x: visible;
        padding-bottom: 0;
    }
    
    .filter-btn {
        flex: none;
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .search-box {
        width: auto;
        min-width: 250px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .project-card {
        padding: 1.75rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .modal-container {
        max-width: 600px;
        margin-top: 3rem;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.8rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-image-container img {
        height: 250px;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-brand {
        margin-bottom: 0;
        max-width: 300px;
    }
    
    .footer .logo {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row;
        text-align: left;
        gap: 4rem;
    }
    
    .hero-content {
        flex: 1;
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
    
    .hero-visual {
        flex: 1;
        height: 400px;
        max-width: none;
    }
    
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .project-card {
        padding: 2rem;
    }
    
    .project-image {
        height: 220px;
    }
    
    .modal-container {
        max-width: 700px;
    }
    
    .modal-header h2 {
        font-size: 2rem;
    }
    
    .modal-image-container img {
        height: 300px;
    }
}

@media (min-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .project-card {
        padding: 2.25rem;
    }
}

@media (max-width: 360px) {
    .filter-buttons {
        gap: 0.25rem;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        min-width: 60px;
    }
    
    .project-card {
        padding: 1rem;
    }
    
    .project-image {
        height: 150px;
    }
    
    .project-title {
        font-size: 1.1rem;
    }
    
    .project-description {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .modal-meta {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-visual {
        height: 220px;
        max-width: 320px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0a0a0a;
        --bg-secondary: #111111;
        --bg-card: #1a1a1a;
        --border: #2a2a2a;
    }
}