/* Global Reset */
:root {
    --bg-dark: #0f0c29;
    --bg-gradient: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --primary: #00c6ff;
    --secondary: #0072ff;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.2);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: var(--bg-gradient);
    color: var(--text-main);
    min-height: 100vh;
    overflow: hidden;
    /* Prevent scrolling when locked */
    position: relative;
}

/* Background Orbs */
.background-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: float 10s infinite ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #ff00cc;
    top: -50px;
    left: -50px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #333399;
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

/* Main Content (Blurred) */
.content-wrapper {
    position: relative;
    z-index: 1;
    padding: 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: filter 0.5s ease;
}

.blurred {
    filter: blur(8px) brightness(0.7);
    pointer-events: none;
    user-select: none;
}

header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.highlight {
    color: var(--primary);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
}

nav a.active,
nav a:hover {
    color: var(--text-main);
}

.hero {
    text-align: center;
    max-width: 800px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.file-preview {
    display: flex;
    justify-content: center;
}

.file-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 3rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.file-card i {
    font-size: 2.5rem;
    color: var(--primary);
}

.file-info {
    text-align: left;
}

.file-info h3 {
    font-size: 1.2rem;
}

.file-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.download-btn-fake {
    background: var(--glass-highlight);
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    margin-left: 2rem;
    cursor: default;
}

/* Locker Overlay */
.locker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.glass-panel {
    background: rgba(20, 20, 30, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 2.5rem;
    width: 100%;
    max-width: 480px;
    transform: translateY(0);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.locker-header {
    text-align: center;
    margin-bottom: 3rem;
    /* Increased from 2rem to push bars down */
}

.locker-header .verified-text {
    color: #00ff88;
    /* Bright green */
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.locker-header h2 {
    margin-bottom: 0.5rem;
}

.locker-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Offer List */
.offers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offer-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.offer-item:hover {
    background: var(--glass-highlight);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.offer-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-details h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.offer-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.offer-status {
    margin-left: auto;
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 198, 255, 0.2);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 600;
}

/* Footer */
.locker-footer {
    margin-top: 2rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--text-main);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.disclaimer {
    font-size: 0.75rem;
    color: #666;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.success-modal.active {
    opacity: 1;
    pointer-events: all;
}

.success-content {
    text-align: center;
    max-width: 400px;
}

.check-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.6);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .file-card {
        padding: 1rem;
        width: 100%;
    }

    .glass-panel {
        margin: 1rem;
        padding: 1.5rem;
    }
}