/* ============================================================
   Website Lock Screen Styles
   ============================================================ */

.website-lock-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    overflow: hidden;
    background: #000; /* Solid black background as fallback */
}

/* Blurred Background */
.lock-background {
    position: fixed;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    width: calc(100vw + 100px);
    height: calc(100vh + 100px);
    background-image: url('logo\ 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(60px);
    transform: scale(1.2);
    z-index: -1;
}

/* Dark Overlay */
.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

/* Content Container */
.lock-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2;
    overflow-y: auto;
}

.lock-content-inner {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Main Title */
.lock-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    padding: 0 1rem;
}

/* Custom Message */
.lock-custom-message {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

/* Description */
.lock-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 1.25rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 1rem;
}

/* Countdown Timer */
.lock-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 600px;
    margin: 1.5rem auto;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'Courier New', monospace;
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Media Container */
.lock-media {
    max-width: 600px;
    margin: 1.5rem auto;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.lock-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
}

.lock-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 340px;
    border: none;
    display: block;
}

/* Date Info */
.lock-date-info {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lock-content {
        padding: 1rem;
    }

    .lock-title {
        font-size: 2rem;
        padding: 0 0.5rem;
    }

    .lock-custom-message {
        font-size: 1.25rem;
    }

    .lock-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .lock-countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem auto;
    }

    .countdown-item {
        padding: 1.5rem 0.5rem;
    }

    .countdown-value {
        font-size: 2.5rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .lock-media {
        margin: 2rem auto;
    }

    .lock-image {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .lock-title {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }

    .lock-custom-message {
        font-size: 1.1rem;
    }

    .lock-description {
        font-size: 0.95rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-item {
        padding: 1rem 0.5rem;
    }

    .lock-media {
        border-width: 2px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.website-lock-screen {
    animation: fadeIn 0.5s ease-out;
}

.lock-title,
.lock-custom-message,
.lock-description,
.lock-countdown,
.lock-media {
    animation: fadeIn 0.8s ease-out backwards;
}

.lock-custom-message {
    animation-delay: 0.1s;
}

.lock-description {
    animation-delay: 0.2s;
}

.lock-countdown {
    animation-delay: 0.3s;
}

.lock-media {
    animation-delay: 0.4s;
}
