        body {
            font-family: 'Courier New', Courier, monospace;
            margin: 0;
            padding: 0;
            background-color: #0d0d0d;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            -webkit-tap-highlight-color: transparent;
        }
        .container {
            background-color: #1a1a1a;
            padding: 40px;
            border: 1px solid #333;
            box-shadow: 0 0 15px rgba(0,0,0,0.5);
            width: 100%;
            max-width: 450px;
            margin: 20px;
        }
        .header {
            text-align: center;
            margin-bottom: 30px;
        }
        .header h1 {
            color: #4caf50;
            margin: 0 0 10px 0;
            font-size: 28px;
        }
        .header p {
            color: #e0e0e0;
            margin: 0;
            font-size: 16px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #e0e0e0;
            font-weight: bold;
            font-size: 14px;
        }
        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #555;
            background-color: #0d0d0d;
            color: #e0e0e0;
            font-size: 16px;
            transition: border-color 0.3s ease;
            box-sizing: border-box;
        }
        .form-group input:focus {
            outline: none;
            border-color: #4caf50;
        }
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #555;
            background-color: #0d0d0d;
            color: #e0e0e0;
            font-size: 14px;
            resize: vertical;
            min-height: 80px;
            box-sizing: border-box;
        }
        .form-group textarea:focus {
            outline: none;
            border-color: #4caf50;
        }
        .btn {
            width: 100%;
            padding: 14px;
            background-color: #4caf50;
            color: #0d0d0d;
            border: 1px solid #4caf50;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s, border-color 0.3s;
            margin-bottom: 15px;
        }
        .btn:hover {
            background-color: #333;
            color: #e0e0e0;
            border-color: #555;
            transform: none;
        }
        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            background-color: #333;
            color: #e0e0e0;
            border-color: #555;
            transform: none;
        }
        .alert {
            padding: 12px;
            border: 1px solid;
            margin-bottom: 20px;
            display: none;
        }
        .alert-success {
            background-color: #2a2a2a;
            color: #4caf50;
            border-color: #4caf50;
        }
        .alert-error {
            background-color: #2a2a2a;
            color: #e74c3c;
            border-color: #e74c3c;
        }
        .links {
            text-align: center;
            margin-top: 20px;
        }
        .links a {
            color: #4caf50;
            text-decoration: none;
            margin: 0 10px;
            font-size: 14px;
        }
        .links a:hover {
            text-decoration: underline;
            color: #e0e0e0;
        }

        /* Stats Section */
        .stats-section {
            background-color: #2a2a2a;
            border: 1px solid #333;
            padding: 20px;
            margin-top: 30px;
            text-align: left;
        }

        .stats-section h2 {
            color: #4caf50;
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 1.5em;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
        }

        .stats-section p {
            margin-bottom: 8px;
            color: #e0e0e0;
        }

        .stats-section strong {
            color: #4caf50;
        }
        .info-box {
            background-color: #2a2a2a;
            border: 1px solid #4caf50;
            padding: 15px;
            margin-bottom: 20px;
        }
        .info-box h3 {
            margin: 0 0 10px 0;
            color: #4caf50;
            font-size: 16px;
        }
        .info-box p {
            margin: 0;
            color: #e0e0e0;
            font-size: 14px;
            line-height: 1.4;
        }
        .password-requirements {
            font-size: 12px;
            color: #aaa;
            margin-top: 5px;
        }
        .loading {
            display: none;
            text-align: center;
            margin: 10px 0;
        }
        .spinner {
            border: 3px solid #333;
            border-top: 3px solid #4caf50;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Full-screen overlay styles */
        .full-screen-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            display: none; /* Hidden by default */
        }
        .overlay-content {
            background-color: #1a1a1a;
            padding: 30px;
            border: 1px solid #4caf50;
            box-shadow: 0 0 20px rgba(0,0,0,0.7);
            text-align: center;
            max-width: 500px;
            width: 90%;
            position: relative;
        }
        .overlay-content h2 {
            color: #4caf50;
            margin-top: 0;
            margin-bottom: 20px;
        }
        .overlay-content p {
            color: #e0e0e0;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        .overlay-content .token-display {
            background-color: #0d0d0d;
            border: 1px solid #555;
            padding: 10px;
            margin: 20px auto;
            word-break: break-all;
            font-size: 1.1em;
            color: #4caf50;
            position: relative;
        }
        .overlay-content .token-display button {
            position: absolute;
            top: 5px;
            right: 5px;
            background-color: #333;
            color: #e0e0e0;
            border: 1px solid #555;
            padding: 5px 10px;
            cursor: pointer;
        }
        .overlay-content .token-display button:hover {
            background-color: #4caf50;
            color: #0d0d0d;
        }
        .overlay-content .countdown-message {
            color: #e0e0e0;
            margin-top: 20px;
            font-size: 1.1em;
        }
        .overlay-content .btn-overlay {
            width: auto;
            padding: 10px 20px;
            margin-top: 20px;
        }