        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f0f0f0 100%);
    min-height: 100vh;
    overflow: hidden;
    color: #333;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.shape {
    position: absolute;
    border: 2px solid rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape.circle {
    border-radius: 50%;
}

.shape.square {
    border-radius: 4px;
}

a {
    text-decoration: none;
    color: #000;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.shape.hexagon {
    width: 30px;
    height: 17px;
    background: transparent;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 8.5px solid rgba(0, 0, 0, 0.08);
    border-bottom: 8.5px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.shape.hexagon::before {
    content: "";
    position: absolute;
    top: -12.5px;
    left: -15px;
    width: 30px;
    height: 17px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 8.5px solid rgba(0, 0, 0, 0.08);
}

.shape.hexagon::after {
    content: "";
    position: absolute;
    top: 17px;
    left: -15px;
    width: 30px;
    height: 17px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 8.5px solid rgba(0, 0, 0, 0.08);
}

.shape.diamond {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.06);
    transform: rotate(45deg);
}

.shape.star {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 7px solid rgba(0, 0, 0, 0.08);
    transform: rotate(35deg);
}

.shape.star::before {
    content: '';
    position: absolute;
    left: -10px;
    top: -5px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 7px solid rgba(0, 0, 0, 0.08);
    transform: rotate(-70deg);
}

.shape.star::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 3px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 7px solid rgba(0, 0, 0, 0.08);
    transform: rotate(70deg);
}

.shape.pentagon {
    position: relative;
    width: 24px;
    height: 16px;
    background: transparent;
    border-top: 2px solid rgba(0, 0, 0, 0.07);
    border-left: 2px solid rgba(0, 0, 0, 0.07);
    border-right: 2px solid rgba(0, 0, 0, 0.07);
}

.shape.pentagon::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -2px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 10px solid rgba(0, 0, 0, 0.07);
}

.shape.octagon {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.05);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 15px;
    position: relative;
    z-index: 10;
}

.card {
    background: #fff;
    border: 3px solid #000;
    border-radius: 16px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.8);
    width: 680px;
    height: 95vh;
    padding: 20px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    animation: cardEntrance 0.8s ease-out;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.card:has(.project-item:hover) {
    z-index: 10000;
}

.card.project-hovered {
    z-index: 10000;
}

.card::-webkit-scrollbar {
    display: none;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card.slide-left {
    transform: translateX(-360px);
}

.project-card {
    background: #fff;
    border: 3px solid #000;
    border-radius: 16px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.8);
    width: 680px;
    height: 95vh;
    padding: 20px;
    position: absolute;
    right: -720px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 5;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.project-card::-webkit-scrollbar {
    display: none;
}

.project-card.show {
    right: 15px;
}

.header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.header::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #000;
    border-radius: 2px;
}

.name {
    font-size: 2.4rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -1px;
    position: relative;
}

.title {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    background: #f8f8f8;
    padding: 6px 18px;
    border: 2px solid #000;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.title:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.8);
}

.subtitle {
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

.section {
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: #000;
    border-radius: 2px;
}

.section-title::after {
    content: "▶";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 0.7rem;
}

.bio {
    background: #f9f9f9;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #444;
    position: relative;
    overflow: hidden;
}

.bio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #000, #666, #000);
    animation: bioShine 3s ease-in-out infinite;
}

@keyframes bioShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.stat-item {
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.6);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 900;
    color: #000;
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.info-item {
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.info-label {
    font-size: 0.65rem;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 0.9rem;
    color: #000;
    font-weight: 600;
}

.skills-section {
    margin-bottom: 20px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.skill-item {
    background: #ffffff;
    border: 2px solid #000;
    border-radius: 6px;
    padding: 8px 4px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.skill-item:hover {
    transform: translateY(-3px) rotate(2deg);
    box-shadow: 4px 6px 0px rgba(0, 0, 0, 0.5);
    background: #e8e8e8;
}

.skill-item:nth-child(even):hover {
    transform: translateY(-3px) rotate(-2deg);
}

.skill-icon {
    font-size: 1.2rem;
    color: #000;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.project-item {
    background: #fff;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.5);
    position: relative;
}

.project-item:hover {
    z-index: 1500;
}

.project-status {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
}

.project-item:hover .project-status {
    opacity: 1;
    transform: scale(1.2);
}

.project-status.status-production {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.project-status.status-development {
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.project-status.status-concept {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.project-status::after,
.project-status::before {
    display: none;
}

.status-tooltip {
    position: fixed;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
}

.status-tooltip.show {
    opacity: 1;
}

.status-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #000;
}

.project-status:hover::after,
.project-status:hover::before {
    display: none;
}

.project-status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
    border: 2px solid #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status-badge.status-production {
    background: #22c55e;
}

.project-status-badge.status-development {
    background: #f59e0b;
}

.project-status-badge.status-concept {
    background: #ef4444;
}

.project-item::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 6px;
    height: 6px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
}

.project-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 8px 10px 0px rgba(0, 0, 0, 0.7);
}

.project-name {
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 4px;
}

.project-type {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.project-brief {
    font-size: 0.7rem;
    color: #555;
    line-height: 1.3;
    margin-bottom: 8px;
}

.project-links {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.project-link {
    background: #f8f8f8;
    border: 2px solid #000;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.75rem;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    min-height: 35px;
}

.project-link:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: 2px solid #000;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 900;
    color: #000;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 9999;
}

.close-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background: #ff6b6b;
    color: #fff;
}

.project-details {
    margin-top: 15px;
}

.project-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 15px;
    background: #f9f9f9;
    padding: 15px;
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.project-features {
    margin-bottom: 15px;
}

.features-accordion {
    border: 2px solid #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.feature-item {
    border-bottom: 1px solid #ddd;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-header {
    background: #f5f5f5;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.85rem;
}

.feature-header:hover {
    background: #e8e8e8;
}

.feature-header.active {
    background: #000;
    color: #fff;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.feature-header.active .feature-icon {
    background: #fff;
    color: #000;
}

.feature-title {
    flex: 1;
}

.feature-toggle {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.feature-header.active .feature-toggle {
    transform: rotate(180deg);
}

.feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.feature-content.expanded {
    max-height: 200px;
}

.feature-description {
    padding: 15px;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #555;
    border-left: 3px solid #000;
    margin: 0;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
    padding: 0 15px 15px;
}

.feature-tag {
    background: #e8e8e8;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 3px 8px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #666;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 15px;
}

.gallery-item {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    border: 2px solid #000;
    border-radius: 8px;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    color: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.gallery-item.placeholder {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tech-tag {
    background: #f0f0f0;
    border: 2px solid #000;
    border-radius: 15px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
}

.tech-tag:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

.contact-section {
    background: #f8f8f8;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.contact-link {
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 45px;
    min-width: 100px;
    justify-content: center;
}

.contact-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 4px 6px 0px rgba(0, 0, 0, 0.5);
    background: #000;
    color: #fff;
}

.timeline {
    position: relative;
    margin: 15px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #000;
}

.timeline-item {
    position: relative;
    margin-bottom: 15px;
    padding-left: 45px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 25px;
    width: 14px;
    height: 14px;
    background: #000;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #000;
}

.timeline-content {
    background: #f9f9f9;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.timeline-date {
    font-size: 0.7rem;
    color: #666;
    font-weight: bold;
    margin-bottom: 4px;
}

.timeline-title {
    font-size: 0.85rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 2px;
}

.timeline-desc {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.3;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
    min-height: 40px;
    display: flex;
    align-items: center;
}

.filter-tab.active,
.filter-tab:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 3px 4px 0px rgba(0, 0, 0, 0.5);
}

.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
}

.image-modal.show {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 900;
    color: #000;
    font-size: 1.2rem;
}

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-transition {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

@media (max-width: 1024px) {
    .card, .project-card {
        width: 90vw;
        height: 90vh;
    }
    
    .card.slide-left {
        transform: translateX(-45vw);
    }
    
    .project-card.show {
        right: 5vw;
    }
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
        min-height: 100vh;
    }

    .container {
        padding: 10px;
        align-items: flex-start;
        min-height: auto;
    }

    .card,
    .project-card {
        width: 95vw;
        height: auto;
        min-height: 90vh;
        padding: 15px;
        box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8);
        margin: 10px 0;
    }

    .card.slide-left {
        transform: translateX(-100vw);
    }

    .project-card {
        position: fixed;
        top: 0;
        right: -100vw;
        transform: none;
        height: 100vh;
        overflow-y: auto;
        z-index: 1000;
    }

    .project-card.show {
        right: 0;
    }

    .name {
        font-size: 1.8rem;
    }

    .title {
        font-size: 0.9rem;
        padding: 5px 15px;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1rem;
        padding-left: 15px;
    }

    .bio {
        font-size: 0.8rem;
        padding: 12px;
    }

    .projects-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .skill-item {
        padding: 10px 6px;
        font-size: 0.7rem;
    }

    .skill-icon {
        font-size: 1rem;
    }

    .project-item {
        padding: 12px;
        margin-bottom: 10px;
    }

    .project-name {
        font-size: 0.95rem;
    }

    .project-type {
        font-size: 0.7rem;
    }

    .project-brief {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .project-links {
        flex-wrap: wrap;
        gap: 6px;
    }

    .project-link {
        padding: 6px 10px;
        font-size: 0.7rem;
        min-height: 32px;
    }

    .contact-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .contact-link {
        min-width: 80px;
        padding: 8px 12px;
        font-size: 0.8rem;
        min-height: 40px;
    }

    .tech-tag {
        padding: 4px 8px;
        font-size: 0.75rem;
        min-height: 28px;
    }

    .filter-tabs {
        gap: 6px;
        margin-bottom: 10px;
    }

    .filter-tab {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-height: 35px;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-header {
        font-size: 0.8rem;
        padding: 10px 12px;
    }

    .feature-description {
        font-size: 0.75rem;
        padding: 12px;
    }

    .timeline-item {
        padding-left: 35px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item::before {
        left: 7px;
        width: 12px;
        height: 12px;
    }

    .project-status-badge {
        top: 10px;
        left: 10px;
        padding: 4px 8px;
        font-size: 0.65rem;
    }

    .close-btn {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .shape {
        display: none;
    }

    body::before {
        animation: none;
    }

    .bio::before {
        animation: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 5px;
    }

    .card,
    .project-card {
        width: 100vw;
        border-radius: 0;
        padding: 12px;
        border-left: none;
        border-right: none;
        margin: 0;
    }

    .name {
        font-size: 1.6rem;
    }

    .title {
        font-size: 0.85rem;
        padding: 4px 12px;
    }

    .section-title {
        font-size: 0.95rem;
        padding-left: 12px;
    }

    .section {
        margin-bottom: 15px;
    }

    .bio {
        font-size: 0.75rem;
        padding: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .info-item {
        padding: 8px;
    }

    .info-label {
        font-size: 0.6rem;
    }

    .info-value {
        font-size: 0.8rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .skill-item {
        padding: 8px 4px;
        font-size: 0.65rem;
    }

    .skill-icon {
        font-size: 0.9rem;
    }

    .project-item {
        padding: 10px;
    }

    .project-name {
        font-size: 0.9rem;
    }

    .project-type {
        font-size: 0.65rem;
    }

    .project-brief {
        font-size: 0.7rem;
    }

    .project-link {
        padding: 5px 8px;
        font-size: 0.65rem;
        min-height: 30px;
        gap: 3px;
    }

    .contact-link {
        min-width: 70px;
        padding: 6px 10px;
        font-size: 0.75rem;
        min-height: 35px;
        gap: 4px;
    }

    .tech-tag {
        padding: 3px 6px;
        font-size: 0.7rem;
        min-height: 26px;
        gap: 4px;
    }

    .filter-tab {
        padding: 5px 10px;
        font-size: 0.7rem;
        min-height: 32px;
    }

    .feature-header {
        font-size: 0.75rem;
        padding: 8px 10px;
    }

    .feature-description {
        font-size: 0.7rem;
        padding: 10px;
    }

    .feature-tags {
        padding: 0 10px 10px;
    }

    .feature-tag {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    .timeline-content {
        padding: 8px;
    }

    .timeline-date {
        font-size: 0.65rem;
    }

    .timeline-title {
        font-size: 0.8rem;
    }

    .timeline-desc {
        font-size: 0.7rem;
    }

    .modal-content {
        max-width: 95%;
        max-height: 95%;
    }

    .modal-close {
        top: -35px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .project-item:hover {
        transform: none;
        box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.5);
    }

    .skill-item:hover,
    .skill-item:nth-child(even):hover {
        transform: translateY(-2px);
    }

    .stat-item:hover {
        transform: translateY(-2px) scale(1.02);
    }

    .contact-link:hover {
        transform: translateY(-2px) scale(1.02);
    }

    .tech-tag:hover {
        transform: scale(1.05);
    }
}

@media (max-width: 360px) {
    .name {
        font-size: 1.4rem;
    }

    .title {
        font-size: 0.8rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skill-item {
        font-size: 0.6rem;
    }

    .project-link {
        font-size: 0.6rem;
        padding: 4px 6px;
    }

    .contact-link {
        font-size: 0.7rem;
        min-width: 60px;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .card,
    .project-card {
        height: auto;
        min-height: 95vh;
    }

    .container {
        align-items: flex-start;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .card,
    .project-card {
        border-width: 2px;
    }

    .skill-item,
    .project-item,
    .contact-link,
    .tech-tag,
    .filter-tab {
        border-width: 1.5px;
    }
}