/* Custom MeltingTown Font */
@font-face {
    font-family: 'MeltingTown';
    src: url('MeltingTown.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* Bloody Font (Desktop/bloodyfont) */
@font-face {
    font-family: 'BloodyModes';
    src: url('../../Desktop/bloodyfont/BloodyModes-gwwYp.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* Central Title */
.main-title {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'BloodyModes' !important;
    font-size: 4rem;
    color: #ff4500;
    text-shadow: 
        0 0 10px #ff4500,
        0 0 20px #ff4500,
        0 0 30px #ff4500,
        0 0 40px #ff4500,
        0 0 60px #ff4500,
        0 0 80px #ff4500,
        2px 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 50;
    pointer-events: none;
    animation: titleGlow 3s ease-in-out infinite alternate;
    letter-spacing: 3px;
    font-weight: bold;
    -webkit-text-stroke: 2px #ff4500;
    text-stroke: 2px #ff4500;
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            0 0 10px #ff4500,
            0 0 20px #ff4500,
            0 0 30px #ff4500,
            0 0 40px #ff4500,
            0 0 60px #ff4500,
            0 0 80px #ff4500,
            2px 2px 8px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow: 
            0 0 15px #ff4500,
            0 0 30px #ff4500,
            0 0 45px #ff4500,
            0 0 60px #ff4500,
            0 0 90px #ff4500,
            0 0 120px #ff4500,
            2px 2px 8px rgba(0, 0, 0, 0.8);
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Footer */
.site-footer {
    width: 100%;
    padding: 18px 16px;
    text-align: center;
    color: #ff4500;
    border-top: 1px solid rgba(255,69,0,0.25);
    background: rgba(0,0,0,0.5);
}
.site-footer p { margin: 0; font-family: 'BloodyModes', Arial, sans-serif; }

/* Flowing Lava Background - DISABLED */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: -1;
}

.container {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100vw;
}

/* Wallet Section - Top Right */
.wallet-section {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    text-align: center;
}

.wallet-section .connect-btn {
    background: #000;
    border: 3px solid #ff4500;
    padding: 15px 30px;
    border-radius: 25px;
    color: #ff4500;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
    text-shadow:
        0 0 10px #ff4500,
        0 0 20px #ff4500,
        0 0 30px #ff4500,
        2px 2px 8px rgba(0, 0, 0, 0.8);
    font-family: 'BloodyModes';
    -webkit-text-stroke: 1px #ff4500;
    text-stroke: 1px #ff4500;
}

.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

.wallet-info {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hidden {
    display: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0;
    margin: 0;
}

/* Volcano Container */
.volcano-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.volcano {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    isolation: isolate;
}

.volcano:hover {
    transform: scale(1.01);
}

/* Mascot Image */
.bokeh-effect {
    position: absolute !important;
    top: 20% !important;
    left: 10% !important;
    width: 25vw !important;
    height: 25vh !important;
    object-fit: contain;
    opacity: 0.7 !important;
    z-index: 10 !important;
    pointer-events: none;
    animation: bokehFloat 6s ease-in-out infinite;
    background-color: transparent;
    visibility: visible !important;
}

@keyframes bokehFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.9;
    }
}

/* Hide mascot image when video is playing */
.bokeh-effect.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

/* Mascot Video Styles */
.wild-mascot-video {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 25vw;
    height: 25vh;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 20;
    border: none;
    outline: none;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    filter: none;
    transform: none;
}

.wild-mascot-video.playing {
    display: block !important;
    opacity: 1;
}

/* Hide speech bubble when mascot video is playing */
.volcano:has(.wild-mascot-video.playing) .speech-bubble {
    display: none;
}

/* Hide watermark area bottom-right */
.wild-mascot-video {
    clip-path: inset(0 20% 25% 0); /* Cuts off bottom-right corner */
}

/* Remove all video styling */
.wild-mascot-video::-webkit-media-controls {
    display: none !important;
}

.wild-mascot-video::-webkit-media-controls-panel {
    display: none !important;
}

.wild-mascot-video::-webkit-media-controls-play-button {
    display: none !important;
}

.wild-mascot-video::-webkit-media-controls-timeline {
    display: none !important;
}

.wild-mascot-video::-webkit-media-controls-current-time-display {
    display: none !important;
}

.wild-mascot-video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.wild-mascot-video::-webkit-media-controls-mute-button {
    display: none !important;
}

.wild-mascot-video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.wild-mascot-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

/* Volcano Video Styles */
.volcano-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 3;
}

.volcano-video.playing {
    display: block !important;
    opacity: 1;
}

/* Cover bottom-right watermark area only while video is playing */
.wm-cover {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(110px, 12vw, 180px);
    height: clamp(60px, 8vh, 110px);
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px) brightness(0.45) saturate(0.75);
    -webkit-backdrop-filter: blur(8px) brightness(0.45) saturate(0.75);
    z-index: 9;
    display: none;
    pointer-events: none;
    border-top-left-radius: 12px;
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%, 0 45%);
    box-shadow: inset 0 0 18px rgba(0,0,0,0.6);
}
.volcano:has(.volcano-video.playing) .wm-cover { display: block; }

/* Volcano Image */
.volcano-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    display: block;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #000;
    min-height: 100vh;
}

.volcano-image {
    pointer-events: none;
}

#volcanoErupted {
    pointer-events: none;
}

.volcano-shake-area {
    position: absolute;
    top: 35%;
    left: 30%;
    width: 40%;
    height: 45%;
    pointer-events: auto;
    z-index: 1;
}

.volcano-shake-area:hover + img.volcano-image {
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: scale(1.05) translateX(0); }
    25% { transform: scale(1.05) translateX(-2px); }
    75% { transform: scale(1.05) translateX(2px); }
}

.volcano-container {
}

.volcano-container > * {
    pointer-events: auto;
}

/* Remove hover effect from volcano container */
.volcano:hover {
    transform: none;
}

/* Remove hover effect from volcano image */
.volcano-image:hover {
    /* No animation */
}

/* Hover zone - only covers the volcano area */
.volcano-hover-zone {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 40%;
    height: 50%;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

/* Shake animation class */
.volcano-image.shaking {
    animation: shake 0.5s ease-in-out infinite;
}

/* Eruption Effects */
.eruption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.lava-stream {
    position: absolute;
    width: 12px;
    background: transparent;
    border-radius: 6px;
    animation: lavaErupt 2s ease-out;
    box-shadow: none;
    display: none;
}

.lava-stream-1 {
    left: 15%;
    height: 100px;
    animation-delay: 0s;
}

.lava-stream-2 {
    left: 25%;
    height: 120px;
    animation-delay: 0.1s;
}

.lava-stream-3 {
    left: 35%;
    height: 140px;
    animation-delay: 0.2s;
}

.lava-stream-4 {
    left: 45%;
    height: 160px;
    animation-delay: 0.3s;
}

.lava-stream-5 {
    left: 55%;
    height: 140px;
    animation-delay: 0.4s;
}

.lava-stream-6 {
    left: 65%;
    height: 120px;
    animation-delay: 0.5s;
}

.lava-stream-7 {
    left: 75%;
    height: 100px;
    animation-delay: 0.6s;
}

.lava-stream-8 {
    left: 85%;
    height: 80px;
    animation-delay: 0.7s;
}

/* Sparks */
.sparks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkFly 1.5s ease-out forwards;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.spark-1 { left: 10%; animation-delay: 0s; }
.spark-2 { left: 20%; animation-delay: 0.1s; }
.spark-3 { left: 30%; animation-delay: 0.2s; }
.spark-4 { left: 40%; animation-delay: 0.3s; }
.spark-5 { left: 50%; animation-delay: 0.4s; }
.spark-6 { left: 60%; animation-delay: 0.5s; }
.spark-7 { left: 70%; animation-delay: 0.6s; }
.spark-8 { left: 80%; animation-delay: 0.7s; }
.spark-9 { left: 90%; animation-delay: 0.8s; }
.spark-10 { left: 15%; animation-delay: 0.9s; }
.spark-11 { left: 35%; animation-delay: 1.0s; }
.spark-12 { left: 65%; animation-delay: 1.1s; }

/* Tap Instruction */
.tap-instruction {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #ff4500;
    padding: 20px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.8rem;
    animation: pulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 3px solid #ff4500;
    box-shadow: 
        0 8px 30px rgba(255, 69, 0, 0.6),
        inset 0 2px 10px rgba(255, 69, 0, 0.2);
    z-index: 100;
    pointer-events: auto;
    cursor: pointer;
    text-shadow: 
        0 0 10px #ff4500,
        0 0 20px #ff4500,
        0 0 30px #ff4500,
        2px 2px 8px rgba(0, 0, 0, 0.8);
    font-family: 'BloodyModes', 'Arial', sans-serif;
    -webkit-text-stroke: 1px #ff4500;
    text-stroke: 1px #ff4500;
    display: block !important;
}

/* Burn Information */
.burn-info {
    display: none !important;
}

.burn-info h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.burn-info p {
    margin: 5px 0;
    font-size: 1.1rem;
}

/* Cooldown Timer */
.cooldown-timer {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.cooldown-timer h3 {
    color: #ff6b6b;
    margin-bottom: 10px;
}

#timeRemaining {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b6b;
}

/* Token Information */
.token-info {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.token-info h3 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.info-item h4 {
    color: #ff6b35;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
}

/* Burn Sizes */
.burn-sizes {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.burn-sizes h3 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.burn-levels {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.burn-level {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.burn-level:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.level-name {
    font-weight: bold;
    color: #ff6b35;
}

.level-burn {
    color: #ffd700;
    font-weight: bold;
}

/* Animations */

@keyframes lavaGlow {
    0% { box-shadow: 0 0 10px rgba(255, 107, 53, 0.5); }
    100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.8); }
}

@keyframes smokeFloat {
    0% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 0.6; }
    100% { transform: translateY(-40px) scale(1.5); opacity: 0; }
}

@keyframes lavaErupt {
    0% { height: 0; opacity: 1; }
    50% { height: var(--eruption-height); opacity: 1; }
    100% { height: var(--eruption-height); opacity: 0; }
}

@keyframes sparkFly {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-50px) scale(1.5); opacity: 0.8; }
    100% { transform: translateY(-100px) scale(0.5); opacity: 0; }
}

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

/* Burn popup (centered, grows to readable size) */
.burn-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    color: #ffd700;
    font-family: 'MeltingTown', 'Arial', sans-serif;
    font-weight: bold;
    text-align: center;
    text-shadow:
        0 0 10px #ff4500,
        0 0 20px #ff4500,
        0 0 30px #ff4500,
        2px 2px 8px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 10000;
    padding: 0 16px;
    line-height: 1.1;
    font-size: clamp(2rem, 8vw, 6rem);
    transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 600ms ease-out;
}

.burn-popup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Mascot Section */
.mascot-section {
    width: 100%;
    min-height: 100vh;
    background: #ff4500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.mascot-section {
    position: relative;
}

.large-mascot-wrapper {
    position: relative;
    max-width: 90%;
    height: auto;
    max-height: 80vh;
    display: inline-block;
}

.large-mascot {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

/* One-liners around mascot */
.one-liners {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.one-liner {
    position: absolute;
    font-family: 'BloodyModes';
    font-size: 1.2rem;
    color: #ff4500;
    background: #000;
    padding: 8px 16px;
    border-radius: 15px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.3);
    border: 2px solid #ff4500;
    z-index: 10;
    opacity: 0;
    animation: fadeInBlock 0.5s ease-out forwards;
}

.one-liner:nth-child(1) { top: 5%; left: 50%; transform: translateX(-50%); }
.one-liner:nth-child(2) { top: 14%; left: 5%; animation-delay: 0s; }
.one-liner:nth-child(3) { top: 18%; right: 8%; animation-delay: 0s; }
.one-liner:nth-child(4) { top: 22%; left: 6%; animation-delay: 1.5s; }
.one-liner:nth-child(5) { top: 12%; right: 10%; animation-delay: 1.5s; }
.one-liner:nth-child(6) { top: 26%; right: 6%; animation-delay: 3s; }
.one-liner:nth-child(7) { top: 32%; left: 8%; animation-delay: 3s; }
.one-liner:nth-child(8) { top: 40%; left: 6%; animation-delay: 4.5s; }
.one-liner:nth-child(9) { top: 48%; left: 7%; animation-delay: 4.5s; }
.one-liner:nth-child(10) { top: 34%; right: 9%; animation-delay: 6s; }
.one-liner:nth-child(11) { top: 42%; right: 7%; animation-delay: 6s; }
.one-liner:nth-child(12) { top: 50%; right: 8%; animation-delay: 7.5s; }
.one-liner:nth-child(13) { top: 56%; left: 9%; animation-delay: 7.5s; }
.one-liner:nth-child(14) { top: 64%; left: 7%; animation-delay: 9s; }
.one-liner:nth-child(15) { top: 72%; left: 18%; animation-delay: 9s; }
.one-liner:nth-child(16) { top: 58%; right: 10%; animation-delay: 10.5s; }
.one-liner:nth-child(17) { top: 66%; right: 8%; animation-delay: 10.5s; }
.one-liner:nth-child(18) { top: 74%; right: 9%; animation-delay: 12s; }

@keyframes fadeInBlock {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.one-liner:nth-child(6) { top: 26%; right: 6%; }
.one-liner:nth-child(7) { top: 32%; left: 8%; }
.one-liner:nth-child(8) { top: 40%; left: 6%; }
.one-liner:nth-child(9) { top: 48%; left: 7%; }
.one-liner:nth-child(10) { top: 34%; right: 9%; }
.one-liner:nth-child(11) { top: 42%; right: 7%; }
.one-liner:nth-child(12) { top: 50%; right: 8%; }
.one-liner:nth-child(13) { top: 56%; left: 9%; }
.one-liner:nth-child(14) { top: 64%; left: 7%; }
.one-liner:nth-child(15) { top: 72%; left: 18%; }
.one-liner:nth-child(16) { top: 58%; right: 10%; }
.one-liner:nth-child(17) { top: 66%; right: 8%; }
.one-liner:nth-child(18) { top: 74%; right: 9%; }

/* Mascot speech bubble */
.speech-bubble {
    position: absolute;
    top: 14%;
    left: 2%;
    background: #000;
    color: #ff4500;
    padding: 14px 18px;
    border-radius: 14px;
    border: 3px solid #ff4500;
    box-shadow: 0 8px 24px rgba(255, 69, 0, 0.35);
    font-family: 'BloodyModes', 'Arial', sans-serif;
    font-weight: bold;
    z-index: 10001;
    pointer-events: none;
    line-height: 1.1;
    font-size: clamp(1rem, 2.2vw, 1.6rem);
    text-shadow: 
        0 0 10px #ff4500,
        0 0 20px #ff4500,
        0 0 30px #ff4500,
        2px 2px 8px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 1px #ff4500;
    text-stroke: 1px #ff4500;
}

/* Orange border tail (behind) */
.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #ff4500;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.35));
}

/* Black fill tail (front) */
.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -7px;
    right: 21px;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .volcano-image {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
    }
    
    .volcano {
        width: 100vw;
        height: 100vh;
    }
    
    .volcano-container {
        width: 100vw;
        height: 100vh;
    }
    
    .wallet-section {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 300;
    }
    
    .header {
        top: 20px;
        padding: 15px 25px;
        font-size: 1.5rem;
    }
    
    .tap-instruction {
        font-size: 1.2rem;
        padding: 15px 25px;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .burn-level {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Wallet Modal Styles */
.wallet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 69, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
}

.modal-content h3 {
    color: #ff4500;
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'BloodyModes', 'Arial', sans-serif !important;
}

.modal-content p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.wallet-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.wallet-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.wallet-option:hover {
    background: rgba(255, 69, 0, 0.2);
    border-color: #ff4500;
    transform: translateY(-5px);
}

.wallet-select-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
}

.wallet-select-btn:hover {
    background: rgba(255, 69, 0, 0.2);
    border-color: #ff4500;
    transform: translateY(-5px);
}

.wallet-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-icon img {
    border-radius: 8px;
    background: white;
    padding: 8px;
}

.wallet-name {
    font-weight: bold;
    font-size: 1.2rem;
}

.close-modal {
    background: #ff4500;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    z-index: 10001;
    animation: slideIn 0.3s ease-out;
    max-width: 300px;
    word-wrap: break-word;
}

.notification-success { background: linear-gradient(45deg, #ff9800, #f57c00); border-left: 4px solid #ef6c00; }
.notification-error   { background: linear-gradient(45deg, #ff9800, #f57c00); border-left: 4px solid #ef6c00; }
.notification-warning { background: linear-gradient(45deg, #ff9800, #f57c00); border-left: 4px solid #ef6c00; }
.notification-info    { background: linear-gradient(45deg, #ff9800, #f57c00); border-left: 4px solid #ef6c00; }

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* === Burn Meter - Pure CSS, no images === */
:root {
    --bm-width: 32px;
    --bm-pad: 14px;
    --bm-bg: transparent; /* remove gray background */
    --bm-border: #ff4500; /* custom orange lining */
    --bm-glow: rgba(255, 69, 0, 0.55);
    --bm-lava-1: #ff3b00;
    --bm-lava-2: #ff6a00;
    --bm-lava-3: #ff7a00; /* avoid whitish/yellow tint */
    --bm-tick: transparent; /* hide white ticks */
    --bm-text: #ff4500; /* orange font */
    --bm-muted: rgba(255,140,0,0.8);
}

#burn-meter {
    position: absolute;
    right: 18px;
    top: 18px;
    bottom: 18px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    z-index: 10000;
    pointer-events: none;
}

#burn-meter .bm-frame {
    position: relative;
    width: var(--bm-width);
    height: calc(100% - 84px); /* stays proportional within 50vh container */
    background: var(--bm-bg);
    border: 2px solid var(--bm-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 14px rgba(255,69,0,0.28);
}

#burn-meter .bm-fill {
    position: absolute;
    left: 0; right: 0;
    bottom: 0;
    height: 0%;
    background:
        linear-gradient(180deg, var(--bm-lava-3) 0%, var(--bm-lava-2) 55%, var(--bm-lava-1) 100%);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.25), 0 0 16px 0 rgba(255, 90, 0, 0.28);
    transition: height 220ms ease;
}

#burn-meter.full .bm-fill {
    box-shadow: inset 0 0 14px rgba(0,0,0,0.25), 0 0 24px 0 rgba(255, 90, 0, 0.55);
}

/* Floating lava bubbles */
#burn-meter .bm-bubbles {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(8px 8px at 30% 90%, rgba(255,160,80,0.28), transparent 70%),
        radial-gradient(6px 6px at 70% 85%, rgba(255,140,60,0.24), transparent 70%),
        radial-gradient(10px 10px at 45% 70%, rgba(255,170,90,0.26), transparent 72%),
        radial-gradient(7px 7px at 60% 55%, rgba(255,150,70,0.22), transparent 72%),
        radial-gradient(9px 9px at 38% 40%, rgba(255,140,60,0.20), transparent 72%);
    background-size: 100% 200%;
    background-position: 50% 100%;
    animation: bm-bubbles-float 3.2s ease-in-out infinite;
    opacity: 0.75;
    mix-blend-mode: screen;
}
@keyframes bm-bubbles-float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-9%); }
    100% { transform: translateY(0); }
}

/* Ticks every 10% with stronger markers at 0/50/100 */
#burn-meter .bm-ticks { display: none; }

/* Rounded glossy cap at top */
#burn-meter .bm-cap { display: none; }

/* Label block */
#burn-meter .bm-label {
    width: 150px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    background: rgba(0,0,0,0.7);
    border: 2px solid var(--bm-border);
    border-radius: 12px;
    color: var(--bm-text);
    backdrop-filter: blur(2px);
    align-self: center; /* center vertically within full-height container */
    margin-top: auto;
    margin-bottom: auto;
    box-shadow: 0 0 18px rgba(255,69,0,0.35);
}
#burn-meter .bm-title {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    opacity: 0.98;
}
#burn-meter .bm-percent {
    font-weight: 800;
    font-size: 26px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
#burn-meter .bm-sub {
    font-size: 11px;
    color: var(--bm-muted);
}

/* On full pulse */
#burn-meter.full {
    animation: bm-pulse 0.9s ease-in-out 1;
}
@keyframes bm-pulse {
    0%   { transform: scale(1); box-shadow: none; }
    40%  { transform: scale(1.03); box-shadow: 0 0 28px var(--bm-glow); }
    100% { transform: scale(1); box-shadow: none; }
}

/* Responsive tweak for very short viewports */
@media (max-height: 540px) {
    #burn-meter .bm-label { display: none; }
}
