body {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.text-gradient {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient 5s ease infinite;
}

.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.coming-soon {
    opacity: 0.7;
}

.ultra-blur {
    filter: blur(4px) !important;
    opacity: 0.3;
}

.ultra-blur .project-card {
    pointer-events: none;
}

.ultra-blur .card-body, 
.ultra-blur .card-footer {
    opacity: 0.5;
}

.fade-out-bottom {
    position: relative;
}

.fade-out-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, 
        rgba(26, 26, 26, 0) 0%, 
        rgba(10, 10, 10, 1) 100%
    );
    pointer-events: none;
    z-index: 10;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.bg-dark-subtle {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.card {
    color: #fff;
}

.card-title, .card-text {
    color: #ffffff !important;
}

.card .text-body-secondary {
    color: #adb5bd !important;
}

.text-light-secondary {
    color: #9fa6ad !important;
}

.social-links a {
    transition: color 0.3s ease;
    font-size: 1.5rem;
}

.social-links a:hover {
    color: #4ecdc4 !important;
} 