* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: oklch(94% 0.02 240);
    background-color: oklch(0% 0 0);
    min-height: calc(100vh);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1.25rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    filter: blur(0.25rem);
    transition: filter 0.8s ease-out;
}

/* Vodleux - Essential UI Protection */
* {
    user-select: none;
    -webkit-user-drag: none;
}

/* Vodleux - Interactive Elements */
a, button, .vod-project-card, .vod-status-badge {
    pointer-events: auto;
}

body.vod-loaded {
    filter: blur(0);
}





.vod-profile-container {
    max-width: 36.5rem;
    width: 100%;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

/* Vodleux - Loading Animations */
.vod-fade-in-element {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.vod-fade-in-element.vod-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.vod-profile-header {
    animation-delay: 0.1s;
}

.vod-profile-bio {
    animation-delay: 0.3s;
}

.vod-social-links {
    animation-delay: 0.5s;
}

.vod-project-cards {
    animation-delay: 0.7s;
}

.vod-version-info {
    animation-delay: 0.9s;
}

/* Vodleux - Profile Header */
.vod-profile-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Vodleux - Status Badge Wrapper */
.vod-status-badge-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.vod-profile-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vod-profile-photo {
    position: relative;
    width: 3rem;
    height: calc(3rem);
    flex-shrink: 0;
}

.vod-profile-photo img {
    width: 100%;
    height: calc(100%);
    border-radius: 50%;
    object-fit: cover;
}

.vod-profile-photo-placeholder {
    width: 3rem;
    height: calc(3rem);
    border-radius: 50%;
    background: linear-gradient(135deg, oklch(60% 0.15 260) 0%, oklch(55% 0.12 285) 100%);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: oklch(100% 0 0);
    position: absolute;
    top: 0;
    left: 0;
}

.vod-profile-info {
    flex: 1;
}

.vod-profile-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: oklch(94% 0.02 240);
}

.vod-profile-username {
    font-size: 0.875rem;
    font-weight: 400;
    color: oklch(94% 0.02 240 / 0.64);
}

/* Vodleux - Biography */
.vod-profile-bio {
    text-align: left;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: oklch(94% 0.02 240);
}

/* Vodleux - Status Badge */
.vod-status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: oklch(75% 0.15 150 / 0.1);
    border: 0.0625rem solid oklch(75% 0.15 150 / 0.2);
    border-radius: 1.25rem;
    width: fit-content;
    flex-shrink: 0;
}

.vod-pulse-icon {
    width: 0.5rem;
    height: calc(0.5rem);
    border-radius: 50%;
    background: linear-gradient(
        45deg,
        oklch(70% 0.18 140),
        oklch(75% 0.15 150),
        oklch(80% 0.12 160),
        oklch(78% 0.14 145),
        oklch(70% 0.18 140)
    );
    background-size: 300% 300%;
    animation: vod-gradientShift 8s ease-in-out infinite;
    position: relative;
}

.vod-pulse-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: calc(0.5rem);
    border-radius: 50%;
    background: linear-gradient(
        45deg,
        oklch(70% 0.18 140),
        oklch(75% 0.15 150),
        oklch(80% 0.12 160),
        oklch(78% 0.14 145),
        oklch(70% 0.18 140)
    );
    background-size: 300% 300%;
    animation: vod-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite, vod-gradientShift 8s ease-in-out infinite;
}

.vod-badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    background: linear-gradient(
        45deg,
        oklch(70% 0.18 140),
        oklch(75% 0.15 150),
        oklch(80% 0.12 160),
        oklch(78% 0.14 145),
        oklch(70% 0.18 140)
    );
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: vod-gradientShift 12s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
    display: inline-block;
}

@keyframes vod-ping {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    75%, 100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes vod-gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Vodleux - Social Media Links */
.vod-social-links {
    display: flex;
    flex-direction: row;
    gap: 3.6rem;
    align-items: flex-start;
    justify-content: flex-start;
}

.vod-social-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: oklch(94% 0.02 240 / 0.64);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translate(0, 0);
}

.vod-social-link:hover {
    color: oklch(94% 0.02 240);
    transform: translate(0.375rem, -0.25rem);
}

.vod-arrow-icon {
    width: 1rem;
    height: calc(1rem);
    fill: currentColor;
}

/* Vodleux - Project Cards */
.vod-project-cards {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.vod-project-card {
    background: oklch(94% 0.02 240 / 0.03);
    border: 0.0625rem solid oklch(94% 0.02 240 / 0.08);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.vod-project-card:hover {
    background: oklch(94% 0.02 240 / 0.06);
    border-color: oklch(94% 0.02 240 / 0.15);
    transform: translateY(-0.375rem);
}

.vod-project-image {
    position: relative;
    width: 100%;
    height: 10rem;
    overflow: hidden;
}

.vod-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vod-project-card:hover .vod-project-image img {
    transform: scale(1.05);
}

.vod-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, oklch(0% 0 0 / 0.3) 0%, oklch(0% 0 0 / 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 5;
}

.vod-project-card:hover .vod-project-overlay {
    opacity: 1;
}

.vod-project-info {
    padding: 1.25rem;
}

.vod-project-meta {
    margin-top: 0.75rem;
}

.vod-project-tool {
    font-size: 0.75rem;
    font-weight: 500;
    color: oklch(94% 0.02 240 / 0.64);
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
}

.vod-project-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: oklch(94% 0.02 240);
    margin: 0;
    line-height: 1.3;
}

.vod-project-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: oklch(100% 0 0);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 0.0625rem solid oklch(100% 0 0 / 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    background: oklch(100% 0 0 / 0.1);
    backdrop-filter: blur(0.5rem);
    transform: translateY(0.25rem);
}

.vod-project-button:hover {
    background: oklch(100% 0 0 / 0.25);
    border-color: oklch(100% 0 0 / 0.5);
    transform: translateY(0);
}

.vod-project-button .vod-arrow-icon {
    width: 0.875rem;
    height: 0.875rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vod-project-button:hover .vod-arrow-icon {
    transform: translateX(0.1875rem);
}

/* Vodleux - View More Link */
.vod-view-more {
    margin-top: 2rem;
    text-align: center;
}

.vod-view-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: oklch(94% 0.02 240 / 0.64);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    background: oklch(94% 0.02 240 / 0.03);
    border: 0.0625rem solid oklch(94% 0.02 240 / 0.08);
}

.vod-view-more-link:hover {
    color: oklch(94% 0.02 240);
    background: oklch(94% 0.02 240 / 0.06);
    border-color: oklch(94% 0.02 240 / 0.15);
    transform: translateY(-0.125rem);
}

.vod-view-more-link .vod-arrow-icon {
    width: 0.875rem;
    height: 0.875rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vod-view-more-link:hover .vod-arrow-icon {
    transform: translateX(0.1875rem);
}

/* Vodleux - Version Info */
.vod-version-info {
    margin-top: 2rem;
    text-align: center;
}

.vod-version-text {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: oklch(94% 0.02 240 / 0.4);
    letter-spacing: 0.05rem;
}




/* Vodleux - Responsive Design */

/* Vodleux - Tablet & Small Screens */
@media (max-width: 40rem) {
    .vod-profile-container {
        max-width: 100%;
        margin-top: 3rem;
        padding: 0 1rem;
    }
    
    .vod-social-links {
        gap: 2.5rem;
    }
    
    .vod-status-badge {
        padding: 0.5rem 0.65rem;
    }

    /* Tablet proje kartları */
    .vod-project-cards {
        grid-template-columns: 1fr;
        gap: 1.375rem;
        margin-top: 2.5rem;
    }

    .vod-project-image {
        height: 9rem;
    }

    .vod-project-info {
        padding: 1.125rem;
    }

    .vod-project-info h3 {
        font-size: 0.9375rem;
    }

    .vod-project-meta {
        margin-top: 0.625rem;
    }

    .vod-project-button {
        font-size: 0.8125rem;
        padding: 0.625rem 1rem;
    }

    .vod-project-tool {
        font-size: 0.6875rem;
    }
    
    .vod-view-more {
        margin-top: 1.75rem;
    }
    
    .vod-view-more-link {
        font-size: 0.8125rem;
        padding: 0.625rem 1rem;
    }
}

/* Vodleux - Mobile */
@media (max-width: 30rem) {
    .vod-profile-container {
        margin-top: 2rem;
        padding: 0 0.75rem;
    }
    
    .vod-profile-header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .vod-status-badge-wrapper {
        position: static;
        display: flex;
        justify-content: flex-start;
        margin-bottom: 1rem;
    }
    
    .vod-profile-left {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .vod-profile-info {
        text-align: left;
    }
    
    .vod-profile-bio {
        margin-bottom: 1.5rem;
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .vod-social-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .vod-social-link {
        color: oklch(94% 0.02 240 / 0.64);
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: translate(0, 0);
        font-size: 0.8125rem;
    }
    
    .vod-social-link:hover {
        color: oklch(94% 0.02 240);
        transform: translate(0.375rem, -0.25rem);
    }
    
    .vod-status-badge {
        padding: 0.45rem 0.6rem;
        font-size: 0.6875rem;
    }
    
    .vod-badge-text {
        font-size: 0.6875rem;
    }
    
    .vod-pulse-icon {
        width: 0.4375rem;
        height: 0.4375rem;
    }
    
    .vod-pulse-icon::before {
        width: 0.4375rem;
        height: 0.4375rem;
    }

    body {
        filter: blur(0) !important;
        padding: 1rem;
    }

    /* Proje kartları mobile */
    .vod-project-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .vod-project-card {
        border-radius: 0.625rem;
    }

    .vod-project-image {
        height: 8rem;
    }

    .vod-project-info {
        padding: 1rem;
    }

    .vod-project-info h3 {
        font-size: 0.9375rem;
    }

    .vod-project-meta {
        margin-top: 0.625rem;
    }

    .vod-project-button {
        font-size: 0.75rem;
        padding: 0.625rem 1rem;
    }

    .vod-project-tool {
        font-size: 0.65rem;
    }
    
    .vod-view-more {
        margin-top: 1.5rem;
    }
    
    .vod-view-more-link {
        font-size: 0.75rem;
        padding: 0.625rem 1rem;
        width: 100%;
        max-width: 12rem;
        justify-content: center;
    }
    
    .vod-version-info {
        margin-top: 1.5rem;
    }
    
    .vod-version-text {
        font-size: 0.6875rem;
    }
}