@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --background: 0 0% 4%;
    --foreground: 0 0% 96%;
    --card: 0 0% 8%;
    --card-foreground: 0 0% 96%;
    --popover: 0 0% 8%;
    --popover-foreground: 0 0% 96%;
    --primary: 0 0% 100%;
    --primary-foreground: 0 0% 4%;
    --secondary: 0 0% 14%;
    --secondary-foreground: 0 0% 96%;
    --muted: 0 0% 14%;
    --muted-foreground: 0 0% 56%;
    --accent: 0 0% 18%;
    --accent-foreground: 0 0% 96%;
    --border: 0 0% 20%;
    --radius: 0.5rem;
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-heading);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    margin-top: 0;
}

code, pre {
    font-family: var(--font-mono);
}

*, *::before, *::after {
    box-sizing: border-box;
    border-color: hsl(var(--border));
}
.dc-text-balance {
    text-wrap: balance;
}

.dc-glow-white {
    box-shadow: 0 0 20px hsla(0, 0%, 100%, 0.15), 0 0 60px hsla(0, 0%, 100%, 0.05);
}

.dc-glow-white-sm {
    box-shadow: 0 0 10px hsla(0, 0%, 100%, 0.1), 0 0 30px hsla(0, 0%, 100%, 0.03);
}

.dc-glow-pulse {
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px hsla(0, 0%, 100%, 0.1);
    }

    50% {
        box-shadow: 0 0 40px hsla(0, 0%, 100%, 0.25);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes slide-up-fade {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes slide-left-fade {
    from {
        opacity: 0;
        transform: translateX(-20px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes slide-right-fade {
    from {
        opacity: 0;
        transform: translateX(20px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}
.dc-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background-color: hsla(var(--background), 0.7);
    border-bottom: 1px solid hsla(var(--border), 0.5);
}

.dc-navbar-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dc-navbar-logo {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: hsla(var(--foreground), 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

    .dc-navbar-logo:hover {
        color: hsl(var(--foreground));
    }

.dc-navbar-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dc-nav-link {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.2s;
}

    .dc-nav-link:hover {
        color: hsl(var(--foreground));
    }

.dc-main-content {
    min-height: 100vh;
    padding-top: 3.5rem;
}

.dc-footer {
    border-top: 1px solid hsl(var(--border));
    padding: 2rem 1.5rem;
}

.dc-footer-container {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dc-footer-text {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: hsl(var(--muted-foreground));
}

.dc-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -3.5rem;
    background-color: hsl(var(--background));
}

.dc-grid-background {
    position: absolute;
    inset: -100%;
    z-index: 0;
    background-image: linear-gradient(to right, hsla(var(--border), 0.3) 1px, transparent 1px), linear-gradient(to bottom, hsla(var(--border), 0.3) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: grid-move 20s linear infinite;
    mask-image: radial-gradient(circle at center, black, transparent 60%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 60%);
}

.dc-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    opacity: 0.1;
    background: radial-gradient(circle, hsla(0,0%,100%,0.3) 0%, transparent 70%);
    z-index: 1;
}

.dc-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.dc-hero-avatar-border {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    border: 2px solid hsla(var(--foreground), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation-delay: 0ms;
}

.dc-hero-avatar-inner {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background-color: hsl(var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.dc-hero-avatar-icon {
    font-size: 2.25rem;
    font-weight: bold;
    font-family: var(--font-mono);
    color: hsla(var(--foreground), 0.8);
}

.dc-hero-subtitle {
    font-size: 0.875rem;
    font-family: var(--font-mono);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.dc-hero-title {
    font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem);
    font-weight: bold;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.dc-hero-description {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
    color: hsl(var(--muted-foreground));
    max-width: 32rem;
    margin-bottom: 2.5rem;
}

.dc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.dc-btn-hero {
    height: 3.5rem;
    padding: 0 2rem;
    font-size: 1rem;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: 2px solid hsl(var(--primary));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    outline: none;
}

    .dc-btn-hero:hover {
        background-color: hsl(0, 0%, 85%);
        border-color: hsl(0, 0%, 85%);
        color: hsl(0, 0%, 10%);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
    }

    .dc-btn-hero:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
        background-color: hsl(0, 0%, 80%);
        color: hsl(0, 0%, 10%);
    }

    .dc-btn-hero:focus-visible {
        outline: 2px solid hsl(var(--primary));
        outline-offset: 2px;
        box-shadow: 0 0 0 4px hsla(var(--primary), 0.1);
    }

.dc-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.dc-scroll-line {
    width: 1px;
    height: 2rem;
    background: linear-gradient(to bottom, transparent, hsla(var(--foreground), 0.3));
}

.dc-scroll-text {
    font-size: 0.625rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--muted-foreground));
}

.animate-slide-up-fade {
    animation: slide-up-fade 0.8s ease-out forwards;
    opacity: 0;
}
.dc-skills-section {
    padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
    .dc-skills-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.dc-skills-container {
    max-width: 64rem;
    margin: 0 auto;
}

.dc-section-header {
    margin-bottom: 4rem;
}

.dc-section-subtitle {
    font-size: 0.875rem;
    font-family: var(--font-mono);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.75rem;
}

.dc-section-title {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: bold;
    line-height: 1.1;
    margin: 0;
}

.dc-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .dc-skills-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.dc-skill-card {
    position: relative;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
}

    .dc-skill-card:hover {
        border-color: hsla(var(--foreground), 0.3);
        box-shadow: 0 0 10px hsla(0, 0%, 100%, 0.1), 0 0 30px hsla(0, 0%, 100%, 0.03);
    }

    .dc-skill-card:active {
        transform: scale(0.97);
    }

.dc-skill-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, hsla(var(--foreground), 0.2), transparent);
    transition: background 0.5s ease;
}

.dc-skill-card:hover .dc-skill-accent-line {
    background: linear-gradient(to right, transparent, hsla(var(--foreground), 0.5), transparent);
}

.dc-skill-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dc-skill-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.375rem;
    background-color: hsl(var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: hsla(var(--foreground), 0.7);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dc-skill-card:hover .dc-skill-icon {
    color: hsl(var(--foreground));
    transform: rotate(3deg) scale(1.1);
}

.dc-skill-name {
    font-weight: 600;
    color: hsla(var(--foreground), 0.9);
    transition: color 0.3s ease;
}

.dc-skill-card:hover .dc-skill-name {
    color: hsl(var(--foreground));
}

.dc-skill-progress-bg {
    height: 0.25rem;
    border-radius: 9999px;
    background-color: hsl(var(--secondary));
    overflow: hidden;
}

.dc-skill-progress-fill {
    height: 100%;
    border-radius: 9999px;
    background-color: hsla(var(--foreground), 0.4);
    transition: background-color 0.7s ease, width 1s ease-out;
}

.dc-skill-card:hover .dc-skill-progress-fill {
    background-color: hsla(var(--foreground), 0.7);
}

.dc-skill-progress-text {
    display: block;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: hsl(var(--muted-foreground));
    margin-top: 0.5rem;
}
.dc-projects-section {
    padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
    .dc-projects-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.dc-projects-container {
    max-width: 64rem;
    margin: 0 auto;
}

.dc-projects-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .dc-projects-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.dc-project-card {
    position: relative;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .dc-project-card:hover {
        border-color: hsla(var(--foreground), 0.3);
    }

    .dc-project-card:active {
        transform: scale(0.97);
    }

.dc-project-thumb {
    position: relative;
    height: 12rem;
    background-color: hsla(var(--secondary), 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dc-project-icon {
    color: hsla(var(--foreground), 0.15);
    transition: all 0.5s ease;
}

.dc-project-card:hover .dc-project-icon {
    color: hsla(var(--foreground), 0.3);
    transform: scale(1.1);
}

.dc-project-overlay {
    position: absolute;
    inset: 0;
    background-color: hsla(var(--background), 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dc-project-card:hover .dc-project-overlay {
    opacity: 1;
}

.dc-project-cta {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    border: 1px solid hsla(var(--foreground), 0.4);
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    color: hsla(var(--foreground), 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .dc-project-cta:hover {
        color: hsl(var(--foreground));
        border-color: hsla(var(--foreground), 0.6);
    }

.dc-project-content {
    padding: 1.5rem;
}

.dc-project-subtitle {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.25rem;
}

.dc-project-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dc-project-description {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    line-height: 1.625;
}

.dc-project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dc-project-badge {
    font-size: 0.6875rem;
    font-family: var(--font-mono);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background-color: hsl(var(--secondary));
    color: hsl(var(--muted-foreground));
}
.dc-contact-section {
    padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
    .dc-contact-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.dc-contact-container {
    max-width: 42rem;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.dc-contact-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 3rem;
    font-size: 1rem;
}

.dc-contact-form-wrapper {
    margin-bottom: 3rem;
}

.dc-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dc-form-group {
    display: flex;
    flex-direction: column;
}

.dc-form-label {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.5rem;
}

.dc-form-input,
.dc-form-textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    font-family: inherit;
    transition: all 0.2s;
}

.dc-form-textarea {
    resize: none;
}

    .dc-form-input:focus,
    .dc-form-textarea:focus {
        outline: none;
        border-color: hsla(var(--foreground), 0.4);
        box-shadow: 0 0 0 1px hsla(var(--foreground), 0.2);
    }

    .dc-form-input::placeholder,
    .dc-form-textarea::placeholder {
        color: hsla(var(--muted-foreground), 0.5);
    }

.dc-btn-block {
    width: 100%;
}

.dc-text-danger {
    color: hsl(var(--destructive));
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.dc-alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-align: center;
}

.dc-alert-success {
    background-color: hsla(120, 100%, 25%, 0.2);
    color: #4ade80;
    border: 1px solid hsla(120, 100%, 25%, 0.4);
}

.dc-alert-error {
    background-color: hsla(0, 100%, 50%, 0.1);
    color: hsl(var(--destructive-foreground));
    border: 1px solid hsl(var(--destructive));
}

.dc-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.dc-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.3s ease;
}

    .dc-social-link:hover {
        color: hsl(var(--foreground));
    }

.dc-social-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.dc-social-link:hover .dc-social-icon {
    transform: scale(1.1);
}

.dc-social-text {
    font-size: 0.875rem;
    font-family: var(--font-mono);
}
.dc-aboutme-section {
    padding: 6rem 1.5rem;
    border-top: 1px solid hsl(var(--border));
}

@media (min-width: 768px) {
    .dc-aboutme-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.dc-aboutme-container {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .dc-aboutme-container {
        flex-direction: row;
        align-items: center;
    }
}

.dc-aboutme-image-wrapper {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .dc-aboutme-image-wrapper {
        justify-content: flex-start;
    }
}

.dc-aboutme-card {
    position: relative;
    width: 20rem;
    height: 20rem;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    box-shadow: 0 4px 12px hsla(var(--background), 0.5);
}

.dc-profile-placeholder {
    width: 6rem;
    height: 6rem;
    color: hsla(var(--foreground), 0.3);
}

.dc-placeholder-text {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    font-family: var(--font-heading);
}

.dc-aboutme-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.dc-aboutme-content {
    flex-grow: 1;
}

@media (min-width: 768px) {
    .dc-aboutme-content {
        padding-left: 2rem;
    }
}

.dc-aboutme-bio {
    font-size: 1rem;
    line-height: 1.75;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.dc-aboutme-content .dc-section-title {
    margin-bottom: 1.5rem;
}
.dc-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dc-project-card:hover .dc-project-image {
    transform: scale(1.05);
}

.dc-project-comingsoon-bg {
    width: 100%;
    height: 100%;
    background-color: hsla(var(--border), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dc-project-comingsoon-overlay {
    opacity: 1 !important;
    background-color: hsla(var(--background), 0.85) !important;
    backdrop-filter: blur(2px) !important;
}

.dc-project-comingsoon-status {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    border: 1px dashed hsla(var(--foreground), 0.3);
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    user-select: none;
}
#pixel-snow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    background-color: hsl(var(--background));
}

#pixel-snow-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
}

#vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#vanta-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}



