/* ================================================
   NAZI ZOMBIES THEMED WALLET GATE & HUD
   Dark, gritty, military aesthetic
   ================================================ */

/* ==================== WALLET GATE ==================== */

#wallet-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 1s ease;
}

#wallet-gate-overlay.fade-out {
    opacity: 0;
}

.nzp-wallet-gate {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1410 0%, #0a0603 100%);
}

/* Scanline effect (CRT monitor) */
.nzp-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1;
}

/* Vignette effect */
.nzp-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.9);
    pointer-events: none;
    z-index: 1;
}

.nzp-gate-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #d4c5a8;
    font-family: 'Courier New', 'Arial', sans-serif;
    text-align: center;
}

/* ==================== LOGO ==================== */

.nzp-logo {
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(180, 70, 70, 0.8);
}

.nzp-logo h1 {
    font-size: 4em;
    margin: 0;
    font-weight: 900;
    letter-spacing: 8px;
    color: #8b0000;
    text-transform: uppercase;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-shadow: 
        3px 3px 0 #000,
        0 0 30px rgba(139, 0, 0, 0.8),
        0 0 50px rgba(180, 70, 70, 0.5);
}

.nzp-logo h2 {
    font-size: 2.5em;
    margin: -10px 0 10px;
    font-weight: 900;
    letter-spacing: 12px;
    color: #d4c5a8;
    text-transform: uppercase;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-shadow: 
        2px 2px 0 #000,
        0 0 20px rgba(212, 197, 168, 0.3);
}

.nzp-subtitle {
    font-size: 1.2em;
    letter-spacing: 6px;
    color: #8b7355;
    text-transform: uppercase;
    font-weight: bold;
}

/* ==================== WARNING BOX ==================== */

.nzp-warning-box {
    background: rgba(139, 0, 0, 0.2);
    border: 3px solid #8b0000;
    padding: 30px;
    margin: 40px auto;
    max-width: 600px;
    box-shadow: 
        0 0 30px rgba(139, 0, 0, 0.3),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.warning-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.nzp-warning-box h3 {
    margin: 0 0 15px;
    font-size: 1.8em;
    color: #ff4444;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nzp-warning-box p {
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
}

/* ==================== REWARDS SECTION ==================== */

.nzp-rewards-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.reward-panel {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #4a4a3a;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.panel-header {
    background: linear-gradient(180deg, #2a2a1a 0%, #1a1a10 100%);
    padding: 15px;
    border-bottom: 2px solid #4a4a3a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-icon {
    font-size: 1.5em;
}

.panel-title {
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 2px;
    color: #d4c5a8;
    text-transform: uppercase;
}

.panel-body {
    padding: 20px;
}

/* Prize lines */
.prize-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #8b7355;
}

.medal {
    font-size: 1.5em;
    width: 40px;
}

.rank {
    flex: 1;
    text-align: left;
    font-weight: bold;
    color: #d4c5a8;
}

.prize {
    color: #ffa500;
    font-weight: bold;
}

.payout-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #4a4a3a;
    font-size: 0.9em;
    color: #8b7355;
    font-weight: bold;
}

/* Reward rows */
.reward-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #4a4a3a;
}

.reward-row.highlight {
    background: rgba(255, 165, 0, 0.1);
    border-left-color: #ffa500;
}

.reward-icon {
    font-size: 1.3em;
    width: 35px;
}

.reward-text {
    flex: 1;
    text-align: left;
    color: #d4c5a8;
}

.reward-amount {
    color: #00ff88;
    font-weight: bold;
    font-size: 1.1em;
}

/* Coming soon panel */
.coming-soon-panel {
    grid-column: 1 / -1;
    background: rgba(139, 69, 19, 0.2);
    border: 2px solid #8b4513;
}

.coming-soon-panel .panel-header {
    background: linear-gradient(180deg, #3a2a1a 0%, #2a1a10 100%);
    border-bottom-color: #8b4513;
}

.coming-soon-panel .panel-body {
    text-align: center;
    color: #d4c5a8;
    font-style: italic;
}

/* ==================== BUTTONS ==================== */

.nzp-btn {
    display: inline-block;
    padding: 18px 50px;
    margin: 30px 10px;
    font-size: 1.3em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 3px solid;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
}

.nzp-btn-primary {
    background: rgba(139, 0, 0, 0.3);
    border-color: #8b0000;
    color: #ff4444;
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.nzp-btn-primary:hover {
    background: rgba(139, 0, 0, 0.5);
    box-shadow: 
        0 0 40px rgba(255, 68, 68, 0.7),
        inset 0 0 30px rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

.nzp-btn-connect {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    color: #00ff88;
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    animation: btn-glow-sweep 3s infinite;
}

@keyframes btn-glow-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-text {
    position: relative;
    z-index: 1;
}

.nzp-btn-connect:hover {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 
        0 0 50px rgba(0, 255, 136, 0.6),
        inset 0 0 30px rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

.nzp-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-icon {
    margin-right: 10px;
}

/* ==================== INFO GRID (for install screen) ==================== */

.nzp-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.info-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #4a4a3a;
    padding: 25px;
    text-align: center;
}

.card-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #d4c5a8;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.card-text {
    color: #8b7355;
    line-height: 1.6;
}

/* ==================== DISCLAIMER ==================== */

.nzp-disclaimer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #6a5a4a;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
    .nzp-logo h1 {
        font-size: 2.5em;
        letter-spacing: 4px;
    }
    
    .nzp-logo h2 {
        font-size: 1.5em;
        letter-spacing: 6px;
    }
    
    .nzp-rewards-section {
        grid-template-columns: 1fr;
    }
    
    .nzp-btn {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}
