* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #e0e0e0;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: none;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 80, 150, 0.4);
    border: 2px solid rgba(0, 150, 200, 0.5);
    border-radius: 25px;
    color: #00ddff;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 100, 200, 0.3);
}

.lang-btn:hover {
    background: rgba(0, 100, 180, 0.5);
    border-color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 200, 0.5);
}

.lang-flag {
    font-size: 1.4em;
    line-height: 1;
    display: inline-block;
    min-width: 28px;
    text-align: center;
}

.lang-name {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lang-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.lang-btn.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    min-width: 200px;
    background: rgba(10, 20, 40, 0.95);
    border: 2px solid rgba(0, 150, 200, 0.4);
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(0, 100, 200, 0.4);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 150, 200, 0.2);
    font-size: 1em;
    font-weight: 500;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(0, 100, 150, 0.4);
    color: #00ff88;
    padding-left: 25px;
}

.lang-option.active {
    background: rgba(0, 120, 180, 0.3);
    border-left: 3px solid #00ff88;
    color: #00ff88;
}

.lang-option .lang-flag {
    font-size: 1.5em;
    min-width: 32px;
}

.lang-flag svg {
    width: 24px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 2px;
}


/* Smoke Canvas Background */
#smokeCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Stars Container */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%; /* Dvojnásobná výška pre pokrytie celého scrollu */
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle linear infinite;
}

.star.small {
    width: 2px;
    height: 2px;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
}

.star.medium {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 5px rgba(0, 170, 255, 0.9);
}

.star.large {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 8px rgba(0, 255, 136, 1);
}

.star.shooting {
    width: 2px;
    height: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%, rgba(0, 170, 255, 0.5));
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: shoot 3s ease-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg) scaleX(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-500px) translateY(500px) rotate(-45deg) scaleX(3);
        opacity: 0;
    }
}

/* Custom Cursor */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 170, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #00aaff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.8);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc, #00aa66);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 150, 200, 0.4);
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 150, 200, 0.6);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn span {
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Sidebar Panel */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.95), rgba(0, 50, 80, 0.95));
    border-right: 2px solid rgba(0, 150, 200, 0.4);
    padding: 40px 20px;
    z-index: 100;
    overflow-y: auto;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 5px 0 30px rgba(0, 100, 200, 0.3);
}

.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(0, 20, 40, 0.5);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 150, 200, 0.5);
    border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 170, 255, 0.7);
}

.profile-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(0, 170, 255, 0.6);
    box-shadow: 
        0 0 30px rgba(0, 170, 255, 0.5),
        0 0 60px rgba(0, 255, 136, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: photoGlow 3s ease-in-out infinite;
}

@keyframes photoGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(0, 170, 255, 0.5),
            0 0 60px rgba(0, 255, 136, 0.3),
            inset 0 0 20px rgba(0, 0, 0, 0.3);
        border-color: rgba(0, 170, 255, 0.6);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(0, 170, 255, 0.8),
            0 0 80px rgba(0, 255, 136, 0.5),
            inset 0 0 20px rgba(0, 0, 0, 0.3);
        border-color: rgba(0, 255, 136, 0.8);
    }
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: 
        contrast(1.1)
        brightness(1.05)
        saturate(1.2)
        drop-shadow(0 0 10px rgba(0, 170, 255, 0.3));
    transition: all 0.5s ease;
}

.profile-photo:hover img {
    transform: scale(1.1);
    filter: 
        contrast(1.15)
        brightness(1.1)
        saturate(1.3)
        drop-shadow(0 0 15px rgba(0, 255, 136, 0.5));
}

.sidebar .name {
    font-size: 2em;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #00aaff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar .title {
    font-size: 1.1em;
    color: #00ddaa;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.5;
}

.contact-info {
    margin-top: 20px;
    margin-bottom: 20px;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 80, 150, 0.3);
    border: 2px solid rgba(0, 150, 200, 0.4);
    border-radius: 50px;
    color: #00ddff;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.email-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 170, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.email-link:hover::before {
    width: 300px;
    height: 300px;
}

.email-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.email-link span {
    position: relative;
    z-index: 1;
}

.email-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.4);
    border-color: #00ff88;
}

.email-link:hover svg {
    transform: scale(1.2) rotate(5deg);
}

.sidebar .social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.sidebar .social-link {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 0 0 340px;
    padding: 40px 20px;
}

.profile-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #0066cc, #00aa66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 150, 200, 0.5);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 150, 200, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 150, 200, 0.8);
        transform: scale(1.05);
    }
}

.name {
    font-size: 3em;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #00aaff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(0, 170, 255, 0.5));
    }
    to {
        filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.8));
    }
}

.title {
    font-size: 1.3em;
    color: #00ddaa;
    font-weight: 300;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 80, 150, 0.3);
    border: 2px solid rgba(0, 150, 200, 0.4);
    border-radius: 50px;
    color: #00ddff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 170, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-link:hover::before {
    width: 300px;
    height: 300px;
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link span {
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.4);
}

.social-link:hover svg {
    transform: scale(1.2) rotate(5deg);
}

.social-link.linkedin {
    border-color: rgba(0, 119, 181, 0.6);
}

.social-link.linkedin:hover {
    border-color: #0077b5;
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.5);
}

.social-link.github {
    border-color: rgba(100, 100, 100, 0.6);
}

.social-link.github:hover {
    border-color: #333;
    box-shadow: 0 10px 30px rgba(100, 100, 100, 0.5);
}

.social-link.facebook {
    border-color: rgba(24, 119, 242, 0.6);
}

.social-link.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
}

/* About Me Section */
.about-me {
    margin-bottom: 60px;
}

.about-content {
    margin-top: 40px;
}

.about-intro {
    text-align: center;
    font-size: 1.2em;
    color: #b0c4de;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(0, 50, 100, 0.2);
    border-radius: 15px;
    border-left: 4px solid #00ff88;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    padding: 35px 30px;
    background: rgba(0, 50, 100, 0.25);
    border-radius: 15px;
    border: 2px solid rgba(0, 150, 200, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    background: rgba(0, 60, 120, 0.35);
    border-color: #00ff88;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 170, 255, 0.3);
}

.about-icon {
    font-size: 3.5em;
    text-align: center;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-card:nth-child(1) .about-icon {
    animation-delay: 0s;
}

.about-card:nth-child(2) .about-icon {
    animation-delay: 0.5s;
}

.about-card:nth-child(3) .about-icon {
    animation-delay: 1s;
}

.about-card:nth-child(4) .about-icon {
    animation-delay: 1.5s;
}

.about-card h3 {
    font-size: 1.6em;
    color: #00ddff;
    margin-bottom: 15px;
    text-align: center;
}

.about-card p {
    color: #b0c4de;
    line-height: 1.7;
    font-size: 1.05em;
    text-align: justify;
}

section {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(10, 20, 30, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(0, 150, 200, 0.2);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 150, 200, 0.3);
}

h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #00ccff;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
}

.card {
    padding: 30px;
    background: rgba(0, 50, 100, 0.2);
    border-radius: 10px;
    border-left: 4px solid #00aa66;
    transition: all 0.3s ease;
}

.card:hover {
    background: rgba(0, 50, 100, 0.3);
    border-left-color: #00ff88;
}

.card h3 {
    font-size: 1.8em;
    color: #00ddff;
    margin-bottom: 10px;
}

.role {
    font-size: 1.2em;
    color: #00cc99;
    margin-bottom: 15px;
    font-weight: 500;
}

.description {
    color: #b0c4de;
    line-height: 1.6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.tech-item {
    padding: 25px;
    background: rgba(0, 80, 150, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(0, 150, 200, 0.3);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    background: rgba(0, 100, 180, 0.35);
    border-color: #00ff88;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
}

.tech-icon {
    font-size: 2.5em;
    min-width: 50px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tech-info {
    flex: 1;
}

.tech-name {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #e0e0e0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 50, 100, 0.5);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066cc, #00ff88);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.secondary-tech-title {
    font-size: 1.5em;
    color: #00aacc;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.secondary-tech-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00aacc, transparent);
}

.secondary-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.secondary-tech-item {
    padding: 20px;
    background: rgba(0, 60, 120, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(0, 120, 180, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0.85;
}

.secondary-tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.08), transparent);
    transition: left 0.5s ease;
}

.secondary-tech-item:hover::before {
    left: 100%;
}

.secondary-tech-item:hover {
    background: rgba(0, 80, 150, 0.25);
    border-color: #00aacc;
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.2);
    opacity: 1;
}

.progress-fill.secondary {
    background: linear-gradient(90deg, #0088cc, #00ccaa);
}

.progress-fill.secondary::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00aaff, #00ff88);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-marker {
    position: absolute;
    left: -42px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    border: 3px solid #000;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 1);
    }
}

.timeline-content {
    background: rgba(0, 50, 100, 0.2);
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid #00aa66;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(0, 60, 120, 0.3);
    border-left-color: #00ff88;
    transform: translateX(5px);
}

.period {
    display: inline-block;
    background: linear-gradient(90deg, #0066cc, #00aa66);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content h3 {
    font-size: 1.5em;
    color: #00ddff;
    margin-bottom: 8px;
}

.company-link {
    color: #00ddff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.company-link::after {
    content: ' 🔗';
    font-size: 0.7em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-link:hover::after {
    opacity: 1;
}

.company-link:hover {
    color: #00ff88;
    transform: translateX(5px);
}

.location {
    color: #00cc99;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.tech {
    color: #90b0d0;
    font-size: 0.95em;
    margin-top: 10px;
    font-style: italic;
}

.note {
    color: #708090;
    font-size: 0.9em;
    margin-top: 8px;
    font-style: italic;
}

.footer {
    text-align: center;
    padding: 40px;
    color: #708090;
    font-size: 0.9em;
}

.footer-note {
    margin-top: 10px;
    font-size: 0.85em;
    color: #00aa66;
}

/* Stats Section */
.stats-section {
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(0, 50, 100, 0.3);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(0, 150, 200, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0, 170, 255, 0.4);
}

.stat-icon {
    font-size: 3em;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.stat-number {
    font-size: 3.5em;
    font-weight: bold;
    background: linear-gradient(135deg, #00aaff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0;
}

.stat-label {
    color: #b0c4de;
    font-size: 1.1em;
    margin-top: 10px;
}

/* Skills Radar */
.skills-radar {
    margin-bottom: 60px;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.skill-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    cursor: pointer;
}

.skill-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid rgba(0, 100, 150, 0.2);
    box-sizing: border-box;
}

.skill-circle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: #00aaff;
    border-right-color: #00aaff;
    border-bottom-color: #00ff88;
    box-sizing: border-box;
    transform: rotate(0deg);
    transition: transform 1.5s ease;
}

.skill-circle:hover::after {
    transform: rotate(360deg);
}

.skill-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.skill-percentage {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: #00ddff;
    margin-bottom: 10px;
}

.skill-name {
    display: block;
    font-size: 1.1em;
    color: #b0c4de;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 2px solid rgba(0, 150, 200, 0.4);
        padding: 30px 20px;
    }
    
    .container {
        margin: 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor-follower,
    .cursor-dot {
        display: none;
    }
    
    .language-switcher {
        top: 15px;
        right: 15px;
    }
    
    .lang-btn {
        padding: 10px 16px;
        font-size: 0.9em;
    }
    
    .lang-dropdown {
        min-width: 180px;
    }
    
    .lang-option {
        padding: 12px 16px;
        font-size: 0.95em;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
    }
    
    .sidebar .name {
        font-size: 1.8em;
    }
    
    .sidebar .title {
        font-size: 1em;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-marker {
        left: -32px;
    }
    
    h2 {
        font-size: 1.8em;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-container {
        grid-template-columns: 1fr;
    }
}
