/* Enhanced Project Description Styling - Cyberpunk Edition */

/* Make descriptions more visible and remove scrollbars */
.project-description {
    color: #c5e6ff !important;
    font-family: 'Courier New', monospace !important;
    line-height: 1.7 !important;
    margin: 15px 0 !important;
    max-height: none !important;
    overflow: visible !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
    padding: 5px 0 !important;
    position: relative !important;
}

/* Add subtle tech line pattern background */
.project-description:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 243, 255, 0.05) 1px, 
        transparent 1px
    ),
    linear-gradient(0deg, 
        rgba(0, 243, 255, 0.05) 1px, 
        transparent 1px
    );
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
}

/* Add cyberpunk terminal effect */
.project-description {
    border-left: 2px solid var(--cyber-neon-blue);
    padding-left: 12px !important;
    position: relative;
    transition: all 0.3s ease;
}

.project-card:hover .project-description {
    border-left: 2px solid var(--cyber-neon-pink);
    text-shadow: 0 0 2px rgba(0, 243, 255, 0.5);
}

/* Add typing cursor animation */
.project-description:after {
    content: '|';
    position: absolute;
    right: 0;
    bottom: 0;
    color: var(--cyber-neon-blue);
    opacity: 0;
    animation: cursor-blink 1.2s infinite;
}

.project-card:hover .project-description:after {
    opacity: 1;
}

@keyframes cursor-blink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Ensure content fits within card boundaries */
.project-content {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 220px;
}
