:root {
    --background: #ffffff;
    --foreground: #171717;
    --border: #e4e4e7;
    --muted: #f4f4f5;
    --muted-foreground: #71717a;
    --accent: #8b5cf6;
}

.dark {
    --background: #000000;
    --foreground: #ededed;
    --border: #27272a;
    --muted: #18181b;
    --muted-foreground: #a1a1aa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--foreground);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.6;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    transition: all 0.3s;
}

.dark .navbar {
    background: rgba(0, 0, 0, 0.7);
}

.nav-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
}

.logo-box {
    width: 32px;
    height: 32px;
    background: var(--foreground);
    color: var(--background);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.logo-link:hover .logo-box {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--foreground);
}

.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.theme-toggle:hover {
    background: var(--muted);
}

.sun-icon {
    display: none;
}

.moon-icon {
    display: block;
}

.dark .sun-icon {
    display: block;
}

.dark .moon-icon {
    display: none;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 64px;
    position: relative;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 288px;
    height: 288px;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.7;
    animation: blob 7s infinite;
}

.blob-1 {
    top: 0;
    left: -16px;
    background: #d8b4fe;
}

.dark .blob-1 {
    background: rgba(139, 92, 246, 0.2);
}

.blob-2 {
    top: 0;
    right: -16px;
    background: #fde047;
    animation-delay: 2s;
}

.dark .blob-2 {
    background: rgba(250, 204, 21, 0.2);
}

.blob-3 {
    bottom: -32px;
    left: 80px;
    background: #fbcfe8;
    animation-delay: 4s;
}

.dark .blob-3 {
    background: rgba(236, 72, 153, 0.2);
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row;
    }
}

.hero-content {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    font-size: 0.875rem;
    color: var(--foreground);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    width: fit-content;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .status-badge {
        margin: 0;
    }
}

.dark .status-badge {
    background: rgba(24, 24, 27, 0.5);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    margin-right: 0.5rem;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--foreground);
    line-height: 1;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark .gradient-text {
    background: linear-gradient(to right, #a78bfa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 300;
}

@media (min-width: 1024px) {
    .hero-description {
        margin: 0;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: var(--foreground);
    color: var(--background);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.btn-primary svg {
    margin-left: 0.5rem;
}

.btn-secondary {
    background: var(--background);
    color: var(--foreground);
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: var(--muted);
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 2rem;
}

@media (min-width: 1024px) {
    .social-links {
        justify-content: flex-start;
    }
}

.social-link {
    padding: 0.5rem;
    border-radius: 9999px;
    background: var(--muted);
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--border);
}

.hero-visual {
    flex: 1;
    width: 100%;
    max-width: 512px;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-visual {
        max-width: 100%;
    }
}

.visual-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1.5rem;
    background: linear-gradient(to top right, #ede9fe, #e0e7ff);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(2deg);
    transition: transform 0.7s ease-out;
    overflow: hidden;
}

.dark .visual-card {
    background: linear-gradient(to top right, #18181b, #09090b);
    border-color: var(--border);
}

.visual-card:hover {
    transform: rotate(0deg);
}

.visual-noise {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIvPjwvc3ZnPg==');
}

.visual-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
}

.dark .visual-gradient {
    background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.05));
}

.visual-content {
    position: relative;
    z-index: 10;
    padding: 3rem;
    text-align: center;
}

.code-icon {
    width: 192px;
    height: 192px;
    margin: 0 auto 1.5rem;
    color: var(--foreground);
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

.placeholder-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.placeholder-line {
    height: 8px;
    background: var(--border);
    border-radius: 9999px;
    width: 128px;
    margin: 0 auto;
}

.placeholder-line.short {
    width: 96px;
}

.tech-stack-section {
    width: 100%;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(250, 250, 250, 0.5);
}

.dark .tech-stack-section {
    background: rgba(24, 24, 27, 0.3);
}

.tech-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0.8;
}

@media (min-width: 640px) {
    .tech-container {
        gap: 2rem;
    }
}

.skill-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    font-weight: 600;
}

.dark .skill-badge {
    border-color: rgba(255, 255, 255, 0.05);
}

.skill-javascript {
    background: #fef3c7;
    color: #854d0e;
}

.dark .skill-javascript {
    background: rgba(250, 204, 21, 0.4);
    color: #fde047;
}

.skill-typescript {
    background: #dbeafe;
    color: #1e40af;
}

.dark .skill-typescript {
    background: rgba(59, 130, 246, 0.4);
    color: #93c5fd;
}

.skill-react {
    background: #cffafe;
    color: #155e75;
}

.dark .skill-react {
    background: rgba(6, 182, 212, 0.4);
    color: #67e8f9;
}

.skill-nextjs {
    background: #f4f4f5;
    color: #27272a;
}

.dark .skill-nextjs {
    background: #27272a;
    color: #d4d4d8;
}

.skill-tailwind {
    background: #ccfbf1;
    color: #115e59;
}

.dark .skill-tailwind {
    background: rgba(20, 184, 166, 0.4);
    color: #5eead4;
}

.skill-ruby {
    background: #fee2e2;
    color: #991b1b;
}

.dark .skill-ruby {
    background: rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

.skill-sql {
    background: #e0e7ff;
    color: #3730a3;
}

.dark .skill-sql {
    background: rgba(99, 102, 241, 0.4);
    color: #c7d2fe;
}

.skill-c {
    background: #f1f5f9;
    color: #334155;
}

.dark .skill-c {
    background: rgba(71, 85, 105, 0.6);
    color: #cbd5e1;
}

.skill-html {
    background: #e34c26;
    color: white;
}

.dark .skill-html {
    background: rgba(227, 76, 38, 0.6);
    color: #ffccbc;
}

.about-section {
    width: 100%;
    padding: 6rem 0;
    position: relative;
}

@media (min-width: 1024px) {
    .about-section {
        padding: 8rem 0;
    }
}

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

@media (min-width: 640px) {
    .about-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-container {
        padding: 0 2rem;
    }
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.title-underline {
    height: 4px;
    width: 80px;
    background: #8b5cf6;
    border-radius: 9999px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.75;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.list-dot {
    width: 8px;
    height: 8px;
    background: #8b5cf6;
    border-radius: 50%;
}

.about-cards {
    display: grid;
    gap: 1rem;
}

.feature-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--muted);
    border: 1px solid var(--border);
}

.feature-icon {
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.feature-icon-pink {
    color: #ec4899;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.projects-section {
    width: 100%;
    padding: 6rem 0;
    background: rgba(250, 250, 250, 0.5);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.dark .projects-section {
    background: rgba(24, 24, 27, 0.3);
}

.projects-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .projects-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .projects-container {
        padding: 0 2rem;
    }
}

.projects-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .projects-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.section-subtitle {
    color: var(--muted-foreground);
    max-width: 48rem;
}

.view-all-link {
    color: #8b5cf6;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dark .view-all-link {
    color: #a78bfa;
}

.view-all-link:hover {
    text-decoration: underline;
}

.repos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .repos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .repos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.repo-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--background);
    border-radius: 1rem;
    border: 1px solid var(--border);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--foreground);
    transition: all 0.3s;
}

.dark .repo-card {
    background: #09090b;
}

.repo-card:hover {
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.1);
    transform: translateY(-4px);
}

.repo-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.repo-icon-wrapper {
    padding: 0.75rem;
    background: var(--muted);
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.repo-card:hover .repo-icon-wrapper {
    background: rgba(139, 92, 246, 0.1);
}

.repo-icon {
    width: 24px;
    height: 24px;
    color: var(--foreground);
    transition: color 0.3s;
}

.repo-card:hover .repo-icon {
    color: #8b5cf6;
}

.dark .repo-card:hover .repo-icon {
    color: #a78bfa;
}

.repo-arrow {
    width: 20px;
    height: 20px;
    color: #d4d4d8;
    transform: rotate(-45deg);
    transition: all 0.3s;
}

.dark .repo-arrow {
    color: #52525b;
}

.repo-card:hover .repo-arrow {
    transform: rotate(0deg);
    color: #8b5cf6;
}

.dark .repo-card:hover .repo-arrow {
    color: #a78bfa;
}

.repo-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.repo-card:hover .repo-title {
    color: #8b5cf6;
}

.dark .repo-card:hover .repo-title {
    color: #a78bfa;
}

.repo-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.repo-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
}

.repo-language {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.language-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8b5cf6;
}

.loading-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 0;
    color: var(--muted-foreground);
}

.blog-section {
    width: 100%;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.blog-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .blog-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .blog-container {
        padding: 0 2rem;
    }
}

.blog-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.blog-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.dark .blog-icon {
    background: rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.blog-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--background);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--foreground);
    transition: border-color 0.3s;
}

.dark .blog-card {
    background: #09090b;
}

.blog-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.dark .blog-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
}

.blog-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--muted);
}

.blog-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    transition: transform 0.7s;
}

.blog-card:hover .blog-thumbnail::before {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.9);
    color: var(--foreground);
    border-radius: 0.5rem;
    backdrop-filter: blur(8px);
}

.dark .blog-category {
    background: rgba(0, 0, 0, 0.9);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.blog-title {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .blog-title {
    color: #8b5cf6;
}

.dark .blog-card:hover .blog-title {
    color: #a78bfa;
}

.blog-excerpt {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #8b5cf6;
    margin-top: auto;
}

.dark .blog-read-more {
    color: #a78bfa;
}

.blog-read-more svg {
    margin-left: 0.25rem;
    transition: transform 0.3s;
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(4px);
}

.contact-section {
    width: 100%;
    padding: 6rem 0;
    background: var(--muted);
    border-top: 1px solid var(--border);
}

.contact-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.contact-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-cards {
        flex-direction: row;
    }
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    background: var(--background);
    border: 1px solid var(--border);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--foreground);
    transition: transform 0.3s;
    width: 100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .contact-card {
        width: auto;
    }
}

.dark .contact-card {
    box-shadow: none;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-red {
    background: #fee2e2;
    color: #dc2626;
}

.dark .contact-icon-red {
    background: rgba(220, 38, 38, 0.3);
    color: #fca5a5;
}

.contact-icon-gray {
    background: var(--muted);
    color: var(--foreground);
}

.contact-icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.dark .contact-icon-blue {
    background: rgba(37, 99, 235, 0.3);
    color: #93c5fd;
}

.contact-info {
    text-align: left;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    color: var(--foreground);
    font-weight: 500;
}

.footer {
    background: var(--background);
    border-top: 1px solid var(--border);
    margin-top: auto;
}

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

@media (min-width: 640px) {
    .footer-container {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding: 2rem 2rem;
    }
}

.footer-container p {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.blog-post-main {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    padding: 6rem 1rem;
}

.blog-post-container {
    width: 100%;
    max-width: 768px;
}

.back-link {
    color: #3b82f6;
    text-decoration: none;
    margin-bottom: 2rem;
    display: block;
}

.back-link:hover {
    text-decoration: underline;
}

.blog-post-container h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.blog-post-container .blog-date {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    display: block;
}

.blog-post-container article {
    color: var(--foreground);
    font-size: 1.125rem;
    line-height: 1.75;
}

.dark .blog-post-container article {
    color: #d4d4d8;
}
