.current-project-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.current-project-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.current-project-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(111, 66, 193, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.current-project-section .container {
    position: relative;
    z-index: 1;
}

/* Section badge */
.section-badge {
    background: rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #0d6efd;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.text-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main card */
.current-project-card {
    max-width: 900px;
    background: #ffffff;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(13, 110, 253, 0.08);
    transition: all 0.4s ease;
    margin: 0 auto;
    position: relative;
}

.current-project-card:hover {
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.12);
    border-color: rgba(13, 110, 253, 0.2);
    transform: translateY(-5px);
}

/* Video wrapper */
.video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.current-project-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}

/* Play overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: opacity 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.play-overlay .play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.play-overlay .play-button svg {
    width: 32px;
    height: 32px;
    color: #0d6efd;
    margin-left: 4px;
}

.play-overlay:hover .play-button {
    transform: scale(1.08);
    background: #ffffff;
}

/* Video controls styling */
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
    color: white !important;
}

/* Project info  */
.project-info {
    margin-top: 1.75rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.tech-item {
    padding: 0.35rem 1rem;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1e293b;
    border: 1px solid #e9ecef;
    transition: all 0.2s;
}

.tech-item:hover {
    background: #eef2ff;
    border-color: #c7d2fe;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b2b4a;
    margin-bottom: 1rem;
}

.project-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons  */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1.6rem;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.3);
    color: white;
    background: linear-gradient(135deg, #0b5ed7, #5e33a1);
}

.btn-outline-modern {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.6rem;
    background: transparent;
    color: #0d6efd;
    border: 2px solid rgba(13, 110, 253, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    background: rgba(13, 110, 253, 0.05);
    border-color: #0d6efd;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .current-project-card {
        padding: 1.5rem;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .play-overlay .play-button {
        width: 60px;
        height: 60px;
    }

    .play-overlay .play-button svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .current-project-card {
        padding: 1.25rem;
        border-radius: 24px;
    }

    .tech-item {
        font-size: 0.75rem;
        padding: 0.25rem 0.8rem;
    }

    .project-description {
        font-size: 0.95rem;
    }

    .btn-modern,
    .btn-outline-modern {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .play-overlay .play-button {
        width: 50px;
        height: 50px;
    }

    .play-overlay .play-button svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 576px) {
    .current-project-card {
        padding: 1rem;
    }

    .project-title {
        font-size: 1.3rem;
    }
}