/* P2E Feature Disable Styles */

/* Disabled Button Styles */
.btn-disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    background: #666 !important;
    border-color: #666 !important;
    position: relative;
}

.btn-disabled:hover {
    background: #666 !important;
    border-color: #666 !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-disabled:active {
    transform: none !important;
}

/* Coming Soon Notice */
.coming-soon-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    color: white;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.coming-soon-notice h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: bold;
}

.coming-soon-notice p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

/* Page Banner for Adventure */
.p2e-disabled-banner {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

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

/* Disabled Card Overlay */
.nft-card-disabled {
    position: relative;
}

.nft-card-disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    border-radius: inherit;
    pointer-events: none;
}

/* Disabled State Tooltip */
.disabled-tooltip {
    position: relative;
    display: inline-block;
}

.disabled-tooltip:hover::after {
    content: "Coming Soon! P2E features will be available in the next update.";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.85rem;
    z-index: 1000;
    margin-bottom: 5px;
}

.disabled-tooltip:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    z-index: 1000;
}

/* Feature Toggle Hidden */
.feature-disabled {
    display: none !important;
}

/* Grayed Out Content */
.content-grayed {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(30%);
}