/* Meditation Feature Styles */
body {
    background-color: #000 !important;
    background-image: none !important;
}

#fluid-canvas {
    display: none !important;
}

.meditation-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding-top: 100px;
    animation: fadeIn 1s ease-out;
}

.screen-border {
    width: 90%;
    max-width: 600px;
    aspect-ratio: 16/9;
    background: #000;
    border: 4px solid #111;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), inset 0 0 50px rgba(0, 0, 0, 1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.screen-border:hover {
    border-color: #333;
}

.screen-border.active {
    border-color: #ff4757;
    box-shadow: 0 0 40px rgba(255, 71, 87, 0.4), inset 0 0 20px rgba(255, 71, 87, 0.2);
    cursor: default;
}

.meditation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: scale(1.1);
    filter: brightness(0.2) blur(10px);
    transition: opacity 2s ease, filter 2s ease, transform 3s ease;
}

.screen-border.active .meditation-image {
    opacity: 1;
    filter: brightness(1) blur(0px);
    transform: scale(1);
}

.reveal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, rgba(255, 71, 87, 0.6), rgba(255, 71, 87, 0.2), transparent);
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: color-dodge;
}

.status-panel {
    margin-top: 40px;
    text-align: center;
    width: 90%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.stat-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.timer-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.timer-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff4757, #ff6b81);
    box-shadow: 0 0 15px rgba(255, 71, 87, 0.8);
    border-radius: 10px;
}

.timer-text {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

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

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

/* Glass Button Customization */
#btn-claim {
    background: rgba(46, 213, 115, 0.1);
    border-color: rgba(46, 213, 115, 0.3);
}

#btn-claim:hover {
    background: rgba(46, 213, 115, 0.2);
    border-color: #2ed573;
    box-shadow: 0 0 20px rgba(46, 213, 115, 0.4);
}