.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    margin-left: 8px;
    letter-spacing: 0.5px;
}

.scroll-icon {
    width: 16px;
    height: 24px;
    border: 2px solid rgba(142, 45, 226, 0.8);
    border-radius: 10px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: rgba(142, 45, 226, 0.8);
    left: 50%;
    top: 4px;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollAnimation 1.5s infinite;
}

@keyframes scrollAnimation {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

.project-section {
    margin-bottom: 2rem;
}

.instagram-embed {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tech-tags span {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(142, 45, 226, 0.3);
    transition: all 0.3s ease;
}

.tech-tags span:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(142, 45, 226, 0.5);
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #2c3e50, #4a569d);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #34495e, #5a67ad);
}

.feature-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8e2de2;
    font-weight: bold;
}

/* Featured project styling */
.featured-project-content {
    position: relative;
    overflow: hidden;
}

.featured-project-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(74, 0, 224, 0.3), rgba(142, 45, 226, 0.3));
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

.featured-project-content::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.3), rgba(155, 89, 182, 0.3));
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: pulse 8s infinite alternate-reverse;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.featured-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.featured-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.featured-image-container img {
    transition: transform 0.5s ease;
}

.featured-image-container:hover img {
    transform: scale(1.03);
}

.featured-header h2 {
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(142, 45, 226, 0.3);
}

.project-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1rem;
    background: rgba(20, 20, 30, 0.4);
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(30, 30, 40, 0.6);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin: 0.5rem 0;
}

.stat-label {
    font-size: 0.9rem;
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .instagram-embed {
        margin: 1rem 0;
        padding: 0.5rem;
    }

    .project-actions {
        flex-direction: column;
    }

    .cta-button.secondary {
        width: 100%;
        text-align: center;
    }
    
    .featured-header h2 {
        font-size: 2rem;
    }
    
    .stat {
        min-width: 100px;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
}

/* Instagram placeholder styling */
.instagram-placeholder {
    background: rgba(30, 30, 40, 0.4);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    width: 100%;
    max-width: 540px;
}

.instagram-placeholder p {
    margin-bottom: 1rem;
    color: #fff;
}

.load-embed-btn {
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.load-embed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(142, 45, 226, 0.5);
}

/* End of Instagram placeholder styling */ 