@font-face {
    font-family: "prompt";
    font-display: block;
    font-weight: 400;
    src: url(../fonts/prompt/Prompt-Regular.ttf)
}

@font-face {
    font-family: 'fontello';
    font-display: block;
    src: url('../fonts/fontello/fontello.ttf');
    font-weight: normal;
    font-style: normal;
}

.demo-icon {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


body {
    font-family: "prompt", sans-serif;
    line-height: 1;
}

@theme {
    --color-clifford: #da373d;
}


.card-container {
    /*    background: linear-gradient(90.44deg, rgb(239, 233, 213) 12.64%, rgb(79, 149, 157) 143.55%);*/
    border-radius: 8px;
    padding: 20px;
/*    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);*/
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #146C94 0%, #19A7CE 100%);
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

    .sidenav a {
        padding: 15px 25px;
        text-decoration: none;
        font-size: 16px;
        color: white;
        display: block;
        transition: 0.3s;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

        .sidenav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            padding-left: 35px;
        }

    .sidenav .closebtn {
        position: absolute;
        top: 15px;
        right: 25px;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }

.overlay {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-gradient {
    background: linear-gradient(135deg, #F6F1F1 0%, #AFD3E2 50%, #19A7CE 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

    .card-hover:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(20, 108, 148, 0.15);
    }

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.text-gradient {
    background: linear-gradient(135deg, #146C94 0%, #19A7CE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}





.track-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #3b5998, #4a6ba8);
    color: white;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
}

.info-section {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-label {
    font-weight: 500;
    color: #666;
}

.info-value {
    color: #2c5aa0;
    font-weight: bold;
}

.progress-section {
    padding: 20px 20px;
}

.progress-container {
    position: relative;
    margin: 20px 0;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e0e0e0;
    z-index: 1;
}

.progress-line-active {
    position: absolute;
    top: 20px;
    left: 0;
    height: 4px;
    background: #4caf50;
    width: 20%;
    z-index: 2;
    transition: width 0.8s ease;
    animation: 3s infinite;
}

@keyframes progressShimmer {
    0% {
        background: linear-gradient(90deg, #4caf50, #2196f3);
    }

    50% {
        background: linear-gradient(90deg, #4caf50, #64b5f6, #2196f3);
    }

    100% {
        background: linear-gradient(90deg, #4caf50, #2196f3);
    }
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 20%;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s ease;
}

    .step-circle.completed {
        background: #4caf50;
        color: white;
    }

    .step-circle.active {
        background: rgb(224, 224, 224);
        color: black;
        border: 3px solid #4caf50;
        animation: pulse 2s infinite, bounce 3s infinite;
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.7);
    }

    .step-circle.waiting {
        background: rgb(224, 224, 224);
        color: black;
        border: 3px solid #CF0F47;
        animation: pulse_waiting 2s infinite, bounce 3s infinite;
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.7);
    }

@keyframes pulse_waiting {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(33, 150, 243, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(33, 150, 243, 0.8), 0 0 30px rgba(33, 150, 243, 0.6);
    }

    100% {
        box-shadow: 0 0 5px rgba(33, 150, 243, 0.5);
    }
}

.step-circle.pending {
    background: #e0e0e0;
    color: #666;
}

.step-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 150px;
    color: #333;
}

.step.completed .step-title {
    color: #4caf50;
}

.step.active .step-title {
    color: #2196f3;
    font-weight: 500;
    animation: fadeGlow 2s infinite alternate;
}

@keyframes fadeGlow {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
    }
}

.status-section {
    padding: 20px;
    background: #f8f9fa;
}

.status-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.status-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #2196f3;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.status-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
    animation: iconBob 2.5s ease-in-out infinite;
}

@keyframes iconBob {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(-2deg);
    }

    50% {
        transform: translateY(-6px) rotate(0deg);
    }

    75% {
        transform: translateY(-3px) rotate(2deg);
    }
}

.status-content {
    flex: 1;
}

.status-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.status-meta {
    font-size: 16px;
    color: #333;
}

.download-btn {
    background: #2196f3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

    .download-btn:hover {
        background: #1976d2;
    }

.detail-section {
    padding: 20px;
    background: #fff;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: #333;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
    }

    .info-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .steps {
        flex-direction: column;
        gap: 30px;
    }

    .step {
        width: 100%;
        flex-direction: row;
        text-align: left;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .step-circle {
        margin-right: 15px;
        margin-bottom: 0;
    }

    .progress-line,
    .progress-line-active {
        display: none;
    }

    .progress-section {
        padding: 20px;
    }

    .step-title {
        max-width: none;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .header {
        font-size: 16px;
        padding: 15px;
    }

    .step-circle {
        width: 35px;
        height: 35px;
    }

    .step-title {
        font-size: 13px;
    }
}

/*playlist*/
.playlist-item:hover {
    transform: translateX(4px);
    transition: transform 0.2s ease;
}

.playlist-item.active {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.video-container {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.youtube-logo {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-effect {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}
/*end playlist*/