:root {
    /* Main colors */
    --copper: #CC6633;
    /* --copper: #f09133; */
    --earth: #99461A;
    --green-river: #095334;
    --phtalo: #005582;
    --deepsea: #003366;

    /* Basic colors */
    --fog: #D8D9DD;
    --cirrus: #A1A2AA;
    --cumulus: #686D7D;

    /* Other variables */
    --text-light: var(--fog);
    --text-dark: #202428;
    --bg-overlay: linear-gradient(to bottom, rgba(0, 13, 26, 0.9), rgba(0, 10, 30, 0.5));
    --bg-card: rgba(71, 117, 169, 0.14);
    --border-radius: 12px;
    --border-color: rgba(244, 125, 13, 0.257);
    /* --border-color: rgba(199, 204, 211, 0.154); */
    --glow-color: rgba(159, 80, 41, 0.479);
    /* --glow-color: rgba(159, 106, 41, 0.479); */
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* --box-shadow: 0 4px 12px rgba(0, 0, 0, 0); */
    --transition: all 0.3s ease;

    /* Spacing */
    --space-xxs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1rem;
    --space-lg: 0.75rem;
    --space-xl: 2rem;
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background-color: var(--deepsea);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* BG Video */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: -1;
}

/* Main Container */
.container {
    max-width: 550px;
    margin: 0 auto;
    padding: var(--space-lg);
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Language Header */
.language-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: auto;
}

.language-switcher {
    display: flex;
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--cumulus);
    padding: var(--space-xxs) var(--space-xs);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background-color: var(--phtalo);
    color: var(--text-light);
    font-weight: 600;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 20px var(--glow-color), var(--box-shadow);
}

.name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.25rem;
    font-weight: 700;
    text-shadow: 0.5px 0 var(--border-color), -0.5px 0 var(--border-color), 0 0.5px var(--border-color), 0 -0.5px var(--border-color),
        0.5px 0.5px var(--border-color), -0.5px -0.5px var(--border-color), 0.5px -0.5px var(--border-color), -0.5px 0.5px var(--border-color),
        0 0 10px var(--glow-color), var(--box-shadow);
}

.category {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-tag {
    background-color: var(--bg-card);
    padding: 4px 12px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    box-shadow: var(--box-shadow);
}

.bio {
    max-width: 550px;
    margin: 0 auto;
    padding: var(--space-md);
    text-align: center;
    line-height: 1.6;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: var(--space-md);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
}

.bio-highlight {
    color: var(--copper);
    font-weight: 600;
}

/* Links */
.links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.link-item {
    background-color: var(--bg-card);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.link-item:hover {
    transform: translateY(-3px);
    border-color: var(--copper);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px var(--glow-color);
}

.link-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xxs);
    text-decoration: none;
    color: inherit;
}

.link-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    border-radius: 50%;
    margin-right: var(--space-xs);
    font-size: 1.5rem;
    transition: var(--transition);
}

.link-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    min-width: 100px;
    flex: 1;
}

.link-arrow {
    color: var(--copper);
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition);
    margin-right: var(--space-md);
}

.link-item:hover .link-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Link Specific Colors */
.linkedin .link-icon {
    color: #1b7de0;
}

.artstation .link-icon {
    color: #00B4D8;
}

.behance .link-icon {
    color: #4369ff;
}

.instagram .link-icon {
    color: #d74484;
}

.email .link-icon {
    color: #db5448;
}

footer {
    text-align: center;
    padding-top: var(--space-md);
    color: var(--cirrus);
    font-size: 0.9rem;
    width: 100%;
    z-index: 1;
    margin-top: auto;
    text-shadow: var(--box-shadow);
}

/* Responsiveness */
@media (max-width: 768px) {}

@media (max-width: 480px) {
    .lang-btn {
        padding: var(--space-xxs) var(--space-xs);
        font-size: 0.75rem;
    }

    .name {
        font-size: 2.75rem;
    }

    .category-tag {
        font-size: 0.8rem;
    }

    .avatar {
        width: 140px;
        height: 140px;
    }

    .bio {
        font-size: 0.9rem;
    }

    .link-title {
        font-size: 1rem;

    }

    .link-item a {
        padding: 0;
    }
}

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

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

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

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

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

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

.delay-4 {
    animation-delay: 0.4s;
    opacity: 0;
}

.delay-5 {
    animation-delay: 0.5s;
    opacity: 0;
} */

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Visible Focus Style */
.link-item a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}