   /* Minecraft-themed styling */
        @import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
        
        :root {
            --dirt-brown: #866043;
            --grass-green: #5E7C16;
            --stone-gray: #828282;
            --obsidian-dark: #1D1D1D;
            --oak-wood: #9C7F4A;
            --gold: #FFAA00;
        }
        
        body {
            font-family: 'VT323', monospace;
            background-color: #3A3A3A;
            color: white;
            margin: 0;
            padding: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Crect width='8' height='8' x='0' y='0' fill='%232E2E2E'/%3E%3Crect width='8' height='8' x='8' y='8' fill='%232E2E2E'/%3E%3C/svg%3E");
            background-size: 16px 16px;
        }
        
        .container {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
        }
        
        .title {
            text-align: center;
            font-size: 36px;
            color: #55FF55;
            text-shadow: 2px 2px #222;
            margin-bottom: 20px;
            letter-spacing: 2px;
            position: relative;
        }
        
        .title:before, .title:after {
            content: "⛏";
            margin: 0 10px;
            color: #FFAA00;
        }
        
        .minecraft-box {
            background-color: var(--obsidian-dark);
            border: 4px solid #555555;
            padding: 15px;
            margin-bottom: 20px;
            position: relative;
            box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
            border-radius: 3px;
        }
        
        .minecraft-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(to right, #555555, #777777, #555555);
            opacity: 0.5;
        }
        
        .field-label {
            display: block;
            font-size: 22px;
            margin-bottom: 8px;
            color: #AAAAAA;
        }
        
        textarea {
            width: 100%;
            height: 150px;
            background-color: #2D2D2D;
            border: 2px solid #555555;
            color: #FFFFFF;
            font-family: 'VT323', monospace;
            font-size: 18px;
            padding: 10px;
            box-sizing: border-box;
            resize: vertical;
            border-radius: 3px;
        }
        
        .button-row {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        
        button {
            background-color: var(--grass-green);
            border: 2px solid #4A6611;
            color: white;
            font-family: 'VT323', monospace;
            font-size: 20px;
            padding: 8px 15px;
            cursor: pointer;
            transition: all 0.2s;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            border-radius: 0;
            box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
        }
        
        button:hover {
            background-color: #8AB645;
            transform: translateY(-2px);
        }
        
        button:active {
            transform: translateY(2px);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
        }
        
        .copy-button {
            background-color: var(--oak-wood);
            border-color: #7D6636;
        }
        
        .copy-button:hover {
            background-color: #B8965C;
        }
        
        .status {
            font-size: 18px;
            color: var(--gold);
            margin: 10px 0;
            min-height: 18px;
        }
        
        .cached {
            color: #FF5555;
        }
        
        .cached-entry {
            color: #FF7700;
        }
        
        .progress-container {
            margin-top: 15px;
        }
        
        .progress-bar {
            height: 20px;
            background-color: #2D2D2D;
            border: 2px solid #555555;
            position: relative;
            display: none;
            border-radius: 3px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(to right, #5E7C16, #8AB645);
            width: 0%;
            transition: width 0.3s;
            background-size: 20px 20px;
            background-image: linear-gradient(45deg, rgba(255, 255, 255, .1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .1) 50%, rgba(255, 255, 255, .1) 75%, transparent 75%, transparent);
            animation: stripes 1s linear infinite;
        }
        
        @keyframes stripes {
            0% {background-position: 0 0;} 
            100% {background-position: 20px 0;}
        }
        
        .progress-text {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            text-align: center;
            line-height: 20px;
            color: white;
            text-shadow: 1px 1px #000;
        }
        
        .copy-notification {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #5E7C16;
            color: white;
            padding: 10px 20px;
            border-radius: 3px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: none;
            font-size: 18px;
        }
        
        .minecraft-texture {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background-image: linear-gradient(to bottom, transparent, var(--dirt-brown) 40%);
            z-index: -1;
        }
        
        .minecraft-texture:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 10px;
            background-color: var(--grass-green);
        }
        
        /* Minecraft-style tooltip */
        .tooltip {
            position: relative;
            display: inline-block;
        }
        
        .tooltip .tooltiptext {
            visibility: hidden;
            background-color: #111;
            color: #fff;
            text-align: center;
            padding: 5px;
            border: 1px solid #333;
            border-radius: 3px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 14px;
            width: 140px;
        }
        
        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }
