/* =========================================================================
   CANISTERCREATURES GAMING INTEGRATION STYLES
   VIP features, NFT bonuses, and exclusive tournament styling
   ========================================================================= */

/* NFT Gaming Status Panel */
.nft-integration {
    background: linear-gradient(135deg, #2d1b69 0%, #1a1a2e 100%);
    border: 3px solid #ffd700;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.nft-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #ff9ff3, #54a0ff);
    background-size: 200% 100%;
    animation: vip-glow 2s infinite;
}

@keyframes vip-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nft-gaming-status {
    padding: 20px;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vip-badge.diamond {
    background: linear-gradient(135deg, #e056fd 0%, #9c27b0 100%);
    color: white;
    border: 2px solid #fff;
}

.vip-badge.platinum {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c2c54;
    border: 2px solid #40407a;
}

.vip-badge.gold {
    background: linear-gradient(135deg, #ffd700 0%, #feca57 100%);
    color: #2c2c54;
    border: 2px solid #ff6b6b;
}

.vip-badge.silver {
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    color: #2c2c54;
    border: 2px solid #8b5cf6;
}

.vip-badge.standard {
    background: linear-gradient(135deg, #40407a 0%, #2c2c54 100%);
    color: #ffd700;
    border: 2px solid #40407a;
}

.nft-bonuses {
    margin-bottom: 20px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.bonus-item:last-child {
    border-bottom: none;
}

.bonus-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.bonus-text {
    color: #ffd700;
    font-weight: 600;
    font-size: 14px;
}

.nft-collection {
    margin-top: 20px;
}

.collection-title {
    display: block;
    color: #ffd700;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}

.nft-card {
    background: linear-gradient(135deg, #2c2c54 0%, #1a1a2e 100%);
    border: 2px solid #40407a;
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.nft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.3s;
}

.nft-card.legendary {
    border-color: #e056fd;
}

.nft-card.legendary::before {
    background: linear-gradient(90deg, #e056fd, #ff6b6b, #feca57);
    opacity: 1;
}

.nft-card.ultra-rare {
    border-color: #ff6b6b;
}

.nft-card.ultra-rare::before {
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    opacity: 1;
}

.nft-card.rare {
    border-color: #feca57;
}

.nft-card.rare::before {
    background: #feca57;
    opacity: 1;
}

.nft-card.common {
    border-color: #54a0ff;
}

.nft-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.nft-id {
    font-size: 10px;
    color: #40407a;
    font-weight: 600;
    margin-bottom: 5px;
}

.nft-type {
    font-size: 12px;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 5px;
}

.nft-power {
    font-size: 11px;
    color: #54a0ff;
    font-weight: 600;
}

/* NFT Bonus Notification */
.nft-bonus-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2d1b69 0%, #1a1a2e 100%);
    border: 3px solid #ffd700;
    border-radius: 15px;
    padding: 20px;
    max-width: 350px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: notification-slide-in 0.5s ease-out;
}

@keyframes notification-slide-in {
    0% {
        transform: translateX(400px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    font-size: 36px;
    animation: notification-pulse 2s infinite;
}

@keyframes notification-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.notification-text {
    flex: 1;
}

.notification-title {
    color: #ffd700;
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 5px;
}

.notification-subtitle {
    color: #40407a;
    font-size: 14px;
    font-weight: 600;
}

/* Enhanced Game Integration Styles */
.game-card.nft-enhanced {
    border: 3px solid #ffd700;
    position: relative;
}

.game-card.nft-enhanced::before {
    content: '🐲 NFT BONUS ACTIVE';
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #e056fd 0%, #9c27b0 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(224, 86, 253, 0.5);
}

.progressive-jackpot-boosted {
    background: linear-gradient(90deg, #ff6b6b, #feca57, #ff9ff3);
    background-size: 200% 100%;
    animation: jackpot-boost 3s infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes jackpot-boost {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* VIP Tournament Styles */
.exclusive-tournament {
    background: linear-gradient(135deg, #2d1b69 0%, #1a1a2e 100%);
    border: 3px solid #e056fd;
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
}

.exclusive-tournament::before {
    content: '🏆 EXCLUSIVE';
    position: absolute;
    top: 10px;
    right: 15px;
    background: linear-gradient(135deg, #e056fd 0%, #ff6b6b 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.tournament-name {
    color: #ffd700;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
}

.tournament-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tournament-buy-in {
    color: #ff6b6b;
    font-weight: 700;
}

.tournament-prize {
    color: #2ed573;
    font-weight: 900;
    font-size: 20px;
}

.tournament-requirement {
    color: #e056fd;
    font-weight: 600;
    font-size: 12px;
}

/* Revenue Sharing Display */
.revenue-sharing {
    background: linear-gradient(135deg, #1a4c1a 0%, #1a1a2e 100%);
    border: 2px solid #2ed573;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
}

.revenue-title {
    color: #2ed573;
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.revenue-amount {
    color: #ffd700;
    font-size: 24px;
    font-weight: 900;
}

.revenue-percentage {
    color: #40407a;
    font-size: 14px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nft-bonus-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification-content {
        gap: 10px;
    }
    
    .notification-icon {
        font-size: 24px;
    }
    
    .nft-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 8px;
    }
    
    .nft-card {
        padding: 8px 6px;
    }
    
    .vip-badge {
        font-size: 12px;
        padding: 10px 15px;
    }
}

/* Dark theme integration */
@media (prefers-color-scheme: dark) {
    .nft-integration {
        background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    }
    
    .nft-card {
        background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    }
}

/* Print styles */
@media print {
    .nft-bonus-notification,
    .nft-integration::before,
    .game-card.nft-enhanced::before {
        display: none !important;
    }
    
    .nft-integration {
        background: white !important;
        border: 1px solid black !important;
    }
    
    .vip-badge,
    .bonus-text,
    .collection-title {
        color: black !important;
    }
}
