.page {
    background: linear-gradient(135deg, #0a192f 0%, #1e3a5f 100%);
    color: #e6f1ff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.header__title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #64ffda, #00a8cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.header__subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.track-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0;
}

.track-container__track {
    position: absolute;
    width: 90%;
    height: 8px;
    background: linear-gradient(90deg, transparent, #64ffda, transparent);
    border-radius: 4px;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
}

.track-container__runner {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 80px;
    transition: left 8s ease-in-out;
    z-index: 10;
}

.runner__body {
    width: 30px;
    height: 60px;
    background: #64ffda;
    border-radius: 15px 15px 5px 5px;
    position: absolute;
    top: 0;
    left: 15px;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.8);
}

.runner__arm {
    position: absolute;
    width: 20px;
    height: 10px;
    background: #64ffda;
    border-radius: 5px;
    top: 15px;
}

.runner__arm--left {
    left: 0;
    transform: rotate(30deg);
    animation: armMoveLeft 0.5s infinite alternate;
}

.runner__arm--right {
    right: 0;
    transform: rotate(-30deg);
    animation: armMoveRight 0.5s infinite alternate;
}

.runner__leg {
    position: absolute;
    width: 15px;
    height: 25px;
    background: #64ffda;
    border-radius: 0 0 5px 5px;
    bottom: 0;
}

.runner__leg--left {
    left: 15px;
    animation: legMoveLeft 0.5s infinite alternate;
}

.runner__leg--right {
    right: 15px;
    animation: legMoveRight 0.5s infinite alternate;
}

.checkpoints {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.checkpoint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: rgba(10, 25, 47, 0.9);
    border: 2px solid #64ffda;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
}

.checkpoint:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 25px rgba(100, 255, 218, 0.6);
}

.checkpoint__icon {
    font-size: 1.5rem;
    color: #64ffda;
    margin-bottom: 5px;
}

.checkpoint__label {
    font-size: 0.8rem;
    font-weight: 600;
}

.checkpoint--llm {
    left: 20%;
}

.checkpoint--projects {
    left: 35%;
}

.checkpoint--akildash {
    left: 50%;
}

.checkpoint--games {
    left: 65%;
}

.checkpoint--about {
    left: 80%;
}

.info-panel {
    background: rgba(10, 25, 47, 0.85);
    border: 1px solid #64ffda;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-panel--active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.info-panel__title {
    font-size: 1.8rem;
    color: #64ffda;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-panel__content {
    line-height: 1.6;
    font-size: 1.1rem;
}

.info-panel__highlight {
    color: #64ffda;
    font-weight: 600;
}

.progress-section {
    margin-top: 3rem;
    text-align: center;
}

.progress-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e6f1ff;
}

.progress-bar {
    height: 12px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, #64ffda, #00a8cc);
    width: 10%;
    border-radius: 6px;
    transition: width 2s ease;
}

.progress-section__text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 255, 218, 0.2);
}

.contact__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #64ffda;
}

.contact__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact__link {
    color: #e6f1ff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact__link:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: #64ffda;
    transform: translateY(-3px);
}

.footer {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.ornament {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(100, 255, 218, 0.1) 10px,
        rgba(100, 255, 218, 0.1) 20px
    );
    opacity: 0.5;
}

@keyframes armMoveLeft {
    0% {
        transform: rotate(30deg);
    }
    100% {
        transform: rotate(10deg);
    }
}

@keyframes armMoveRight {
    0% {
        transform: rotate(-30deg);
    }
    100% {
        transform: rotate(-10deg);
    }
}

@keyframes legMoveLeft {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}

@keyframes legMoveRight {
    0% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .page__container {
        padding: 1rem;
    }

    .header__title {
        font-size: 2rem;
    }

    .track-container {
        height: 500px;
    }

    .checkpoint {
        width: 60px;
        height: 60px;
    }

    .checkpoint__icon {
        font-size: 1rem;
    }

    .checkpoint__label {
        font-size: 0.6rem;
    }

    .contact__links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
