/* Zetaflix Link Unlocker - Nimesh Piyumal */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

.zlu-body {
    background-color: #0b0f19;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    position: relative;
    box-sizing: border-box;
}

.zlu-container {
    max-width: 550px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin: 40px auto;
}

.zlu-header {
    text-align: center;
    margin-bottom: 30px;
}

.zlu-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.zlu-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #e62429;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zlu-warning-box {
    background-color: rgba(230, 36, 41, 0.05);
    border: 1px solid rgba(230, 36, 41, 0.3);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.zlu-warning-box p {
    margin: 0;
}

.zlu-highlight {
    color: #e62429;
    font-weight: 700;
}

.zlu-steps-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.zlu-step-card {
    background-color: #151a28;
    border: 1px solid #232a3f;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.zlu-step-card.active {
    border-color: #e62429;
    box-shadow: 0 0 15px rgba(230, 36, 41, 0.15);
}

.zlu-step-card.completed {
    border-color: #17a300;
}

.zlu-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.zlu-step-card.completed .zlu-step-header {
    margin-bottom: 0;
}

.zlu-step-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.zlu-status-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-active {
    background-color: rgba(230, 36, 41, 0.15);
    color: #e62429;
}

.status-locked {
    background-color: rgba(255, 255, 255, 0.05);
    color: #888888;
}

.status-completed {
    background-color: #0b2e04;
    color: #17a300;
}

/* Buttons */
.zlu-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zlu-btn-primary {
    background: linear-gradient(135deg, #e62429 0%, #b60108 100%);
    color: #ffffff;
}

.zlu-btn-primary:hover {
    box-shadow: 0 5px 15px rgba(230, 36, 41, 0.4);
    transform: translateY(-2px);
}

.zlu-btn-disabled {
    background-color: #1e2538;
    color: #555555;
    cursor: not-allowed;
}

.zlu-btn-final {
    background-color: #1e2538;
    color: #555555;
}

.zlu-btn-final.active {
    background: linear-gradient(135deg, #25bd02 0%, #1a8f01 100%);
    color: #ffffff;
    cursor: pointer;
}

.zlu-btn-final.active:hover {
    box-shadow: 0 5px 15px rgba(37, 189, 2, 0.4);
    transform: translateY(-2px);
}

/* Timer as Progress Button */
.zlu-timer-btn {
    width: 100%;
    position: relative;
    background-color: #0b0b0b;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    height: 48px; /* Match button height roughly */
    display: flex;
    align-items: center;
    justify-content: center;
}

.zlu-timer-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #3b0505;
    z-index: 1;
    transition: width 1s linear;
}

.zlu-timer-text {
    position: relative;
    z-index: 2;
    color: #ff3333;
    font-size: 14px;
    font-weight: 700;
}

.zlu-time-left {
    color: #ff3333;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .zlu-container {
        padding: 15px;
        margin: 20px auto;
    }
    
    .zlu-title {
        font-size: 20px;
    }
    
    .zlu-step-card {
        padding: 15px;
    }
}
