.main-project-img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
    margin-top: 2rem;
}

.star-section h2 {
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.star-section p {
    line-height: 1.8;
}

.star-section.glass-card {
    border-left: 4px solid var(--accent-color) !important;
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-item img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 17, 19, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9998;
    animation: fadeIn 0.3s ease forwards;
}

.zoomed-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    max-width: 90vw;
    max-height: 90vh;
    z-index: 9999;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    cursor: zoom-out;
    animation: zoomIn 0.3s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.fade-out { animation: fadeIn 0.3s ease reverse forwards; }
.zoom-out { animation: zoomIn 0.3s ease reverse forwards; }

.gallery-vertical.glass-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.gallery-vertical img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tag {
    background: rgba(13, 110, 253, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(13, 110, 253, 0.2);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}
