/* Roadmap Page Styles */
.roadmap-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.roadmap-section {
    margin-bottom: 4rem;
    background: linear-gradient(180deg, #000 0%, #111 100%);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.roadmap-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.roadmap-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.roadmap-section.animate-in h2 {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-item {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.08) 0%, rgba(0, 255, 255, 0.03) 50%, rgba(0, 0, 0, 0.1) 100%);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease, transform 0.6s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(0, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(0, 255, 255, 0.05) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.roadmap-item:nth-child(even) {
    transform: translateX(50px);
}
.roadmap-item a{
    color: rgb(0, 255, 255);
}
.roadmap-section.animate-in .roadmap-item {
    opacity: 1;
    transform: translateX(0);
}

.roadmap-item:nth-child(1) { transition-delay: 0.3s; }
.roadmap-item:nth-child(2) { transition-delay: 0.5s; }
.roadmap-item:nth-child(3) { transition-delay: 0.7s; }
.roadmap-item:nth-child(4) { transition-delay: 0.9s; }
.roadmap-item:nth-child(5) { transition-delay: 1.1s; }
.roadmap-item:nth-child(6) { transition-delay: 1.3s; }

.roadmap-item:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0.15) 100%);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 255, 255, 0.25),
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.roadmap-item:hover::before {
    opacity: 1;
}

.roadmap-item h3 {
    color: #0ff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.roadmap-item h3 i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #0ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-item .status {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    margin-left: auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.status.current {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.25) 0%, rgba(0, 255, 255, 0.15) 100%);
    color: #0ff;
    border: 1px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.status.planned {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.25) 0%, rgba(255, 165, 0, 0.15) 100%);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.3);
}

.status.completed {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.25) 0%, rgba(0, 255, 0, 0.15) 100%);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.4);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.roadmap-item p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.roadmap-item .progress {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    height: 10px;
    margin: 1.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.roadmap-item .progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

.roadmap-item .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0ff, #00ffff, #0ff);
    border-radius: 12px;
    transition: width 0.8s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.roadmap-item .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.roadmap-item .tag {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 255, 255, 0.08) 100%);
    color: #0ff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 255, 255, 0.1);
}

.roadmap-item .tag:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.25) 0%, rgba(0, 255, 255, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.back-button {
    position: fixed;
    top: 2rem;
    left: 2rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #0ff;
    color: #0ff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-button:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.roadmap-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.roadmap-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    transition: text-shadow 0.3s ease;
}

.roadmap-header h1:hover {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8),
                 0 0 20px rgba(0, 255, 255, 0.6),
                 0 0 30px rgba(0, 255, 255, 0.4);
}

.roadmap-header p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .roadmap-container {
        padding: 1rem;
    }
    
    .roadmap-section {
        padding: 1.5rem;
    }
    
    .roadmap-section h2 {
        font-size: 2rem;
    }
    
    .roadmap-header h1 {
        font-size: 2.5rem;
    }
    
    .roadmap-item h3 {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .back-button {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        margin-bottom: 2rem;
    }
} 

/* Objectives Section */
.objectives-section {
    margin: 1rem 0;
    padding: 0.8rem;
    background: rgba(0, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.objectives-section h4 {
    font-size: 0.9rem;
    color: #0ff;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
    opacity: 0.8;
}

.objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.objectives-list li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.1rem 0;
}

.objectives-list li strike {
    color: rgba(255, 255, 255, 0.4);
    opacity: 0.6;
}

/* References Section */
.references-section {
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.08) 0%, rgba(255, 165, 0, 0.03) 50%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(255, 165, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.references-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 165, 0, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(255, 165, 0, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.references-section:hover::before {
    opacity: 1;
}

.references-section h4 {
    font-size: 1rem;
    color: #ffa500;
    margin: 0 0 1rem 0;
    font-weight: 600;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.references-section h4::before {
    content: '📚';
    font-size: 0.9rem;
}

.references-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.references-list li {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 165, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 165, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.references-list li::before {
    content: '🔗';
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0.6;
}

.references-list li:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.2);
}

.references-list a {
    color: rgba(255, 165, 0, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    padding-left: 1.5rem;
    font-weight: 500;
    position: relative;
}

.references-list a:hover {
    color: #ffa500;
    text-shadow: 0 0 8px rgba(255, 165, 0, 0.4);
}

.references-list a::after {
    content: '↗';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.2s ease;
}

.references-list a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
}

/* Responsive adjustments for objectives and references */
@media (max-width: 768px) {
    .objectives-section,
    .references-section {
        padding: 0.6rem;
    }
    
    .objectives-section h4,
    .references-section h4 {
        font-size: 0.85rem;
    }
    
    .objectives-list li,
    .references-list li {
        font-size: 0.8rem;
    }
} 

/* Horizontal Scrolling for Recently Completed */
.completed-content-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    position: relative;
    z-index: 2;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 0, 0.6) transparent;
}

.completed-content-scroll::-webkit-scrollbar {
    height: 6px;
}

.completed-content-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 1rem;
}

.completed-content-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(0, 255, 0, 0.8), rgba(0, 255, 0, 0.4));
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.completed-content-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, rgba(0, 255, 0, 1), rgba(0, 255, 0, 0.6));
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.4);
}

.completed-content-scroll::-webkit-scrollbar-corner {
    background: transparent;
}

.completed-content {
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
    min-width: max-content;
}

.completed-content .roadmap-item {
    min-width: 400px;
    max-width: 450px;
    margin-bottom: 0;
}

/* Mobile Responsive for Completed Section */
@media (max-width: 768px) {
    .completed-content {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .completed-content .roadmap-item {
        min-width: 320px;
        max-width: 360px;
    }
} 