:root {
    /* Color Palette - Midknight Blues Theme */
    --color-bg-dark: hsl(222, 47%, 11%);
    --color-bg-card: hsl(217, 33%, 17%);
    --color-primary: hsl(190, 100%, 50%);
    /* Cyan */
    --color-secondary: hsl(260, 100%, 65%);
    /* Purple */
    --color-accent: hsl(330, 100%, 60%);
    /* Pink */
    --color-text-main: hsl(210, 40%, 98%);
    --color-text-muted: hsl(215, 20%, 65%);
    --color-border: hsl(217, 33%, 25%);

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

    /* Animation */
    --transition-fast: 0.2s ease;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

h1 {
    font-size: 3.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin: 0 0 2rem 0;
    font-weight: 400;
}

h3 {
    font-size: 1.2rem;
    color: var(--color-text-main);
    margin-bottom: 1rem;
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-size: 1rem;
    margin: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-bg-dark);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5);
    color: var(--color-bg-dark);
}

.btn-small-text {
    font-size: 0.60rem;
    padding: 0.8rem 1rem;
}



.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-icons a {
    display: block;
    transition: transform var(--transition-fast);
}

.social-icons a:hover {
    transform: scale(1.1) rotate(5deg);
}

.social-icons img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-3 {
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.section-small-stuff {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.small-stuff-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.github-icon-svg {
    background: white;
    border-radius: 12px;
    padding: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-fast);
}

.github-icon-svg:hover {
    transform: scale(1.1) rotate(5deg);
}