        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: 400px;
            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;
        }
        .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;
            display: block;
            margin-bottom: 10px;
        }
        .links a:hover {
            text-decoration: underline;
            color: #e0e0e0;
        }
        .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;
        }
        .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); }
        }
        .admin-link {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        .admin-link a {
            color: #4caf50;
            text-decoration: none;
            font-size: 12px;
        }
        .admin-link a:hover {
            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;
        }