        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #0a290a 0%, #121212 100%);
            background-attachment: fixed;
            color: #e0e0e0;
            min-height: 100vh;
            padding: 20px;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(139, 195, 74, 0.1) 0%, transparent 20%);
            overflow-x: hidden;
            position: relative;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            padding-bottom: 80px; /* 为版权信息留出空间 */
        }
        
        header {
            text-align: center;
            padding: 30px 0;
            margin-bottom: 30px;
            position: relative;
            animation: fadeInDown 1s ease;
        }
        
        h1 {
            font-size: 3.2rem;
            background: linear-gradient(to right, #4CAF50, #8BC34A, #CDDC39);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
            margin-bottom: 10px;
            font-family: 'Press Start 2P', cursive;
            letter-spacing: 2px;
        }
        
        .subtitle {
            color: #aaa;
            font-size: 1.2rem;
            margin-top: 10px;
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        }
        
        .server-info {
            background: rgba(10, 30, 10, 0.8);
            border: 2px solid #4CAF50;
            border-radius: 15px;
            padding: 20px;
            margin: 20px auto;
            max-width: 800px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
            animation: slideUp 0.8s ease;
        }
        
        .server-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #4CAF50, #8BC34A);
        }
        
        .server-address {
            font-size: 1.8rem;
            color: #4CAF50;
            margin-bottom: 15px;
            font-weight: bold;
            letter-spacing: 1px;
        }
        
        .status-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
            animation: fadeIn 1.2s ease;
        }
        
        .status-card {
            background: rgba(15, 25, 15, 0.85);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
            transition: transform 0.3s ease;
            border: 2px solid #2e4a2e;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }
        
        .status-card:hover {
            transform: translateY(-5px);
            border-color: #4CAF50;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #2e4a2e;
        }
        
        .card-title {
            font-size: 1.6rem;
            color: #4CAF50;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .status-badge {
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 1rem;
            font-weight: bold;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }
        
        .online {
            background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
            color: white;
            animation: pulse 2s infinite;
        }
        
        .offline {
            background: linear-gradient(135deg, #f44336 0%, #b71c1c 100%);
            color: white;
        }
        
        .info-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #2e4a2e;
        }
        
        .info-row:last-child {
            border-bottom: none;
        }
        
        .info-label {
            color: #aaa;
            font-size: 1.1rem;
            flex: 1;
        }
        
        .info-value {
            font-weight: bold;
            color: #e0e0e0;
            font-size: 1.1rem;
            text-align: right;
            max-width: 60%;
            word-break: break-word;
            flex: 1;
        }
        
        .player-count {
            text-align: center;
            font-size: 1.5rem;
            margin: 15px 0;
            padding: 15px;
            border-radius: 10px;
            background: rgba(40, 60, 40, 0.7);
            border: 2px solid #4CAF50;
        }
        
        .player-count .online-value {
            color: #4CAF50;
            font-size: 2.2rem;
            font-weight: bold;
            display: block;
            margin-top: 5px;
        }
        
        .player-count .max-value {
            color: #8BC34A;
            font-size: 1.8rem;
        }
        
        .motd {
            background: rgba(20, 35, 20, 0.8);
            border-radius: 10px;
            padding: 15px;
            margin-top: 20px;
            color: #aaa;
            line-height: 1.6;
            border-left: 4px solid #4CAF50;
            font-size: 1.1rem;
            min-height: 120px;
            font-family: 'Courier New', monospace;
            white-space: pre-wrap;
            overflow: auto;
            max-height: 200px;
        }
        
        .server-icon-container {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }
        
        .server-icon {
            width: 120px;
            height: 120px;
            border-radius: 15px;
            border: 4px solid #4CAF50;
            background: #1a1a1a;
            box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
            object-fit: cover;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><rect width="64" height="64" fill="%23222"/><path d="M32 12L12 24v16l20 12 20-12V24L32 12zm-8 34V30l8 4.8V46.8l-8-0.8zm16 0l-8 0.8V34.8l8-4.8v16z" fill="%234CAF50"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }
        
        .last-updated {
            text-align: center;
            color: #8BC34A;
            margin-top: 30px;
            font-size: 1rem;
            font-weight: bold;
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            animation: fadeIn 1s ease;
        }
        
        .loading {
            text-align: center;
            padding: 40px;
            font-size: 1.2rem;
        }
        
        .loading i {
            color: #4CAF50;
            font-size: 3rem;
            margin-bottom: 20px;
            animation: spin 1.5s linear infinite;
        }
        
        .loading-text {
            font-size: 1.5rem;
            color: #8BC34A;
            margin-top: 15px;
            text-shadow: 0 0 10px rgba(139, 195, 74, 0.5);
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
            100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .error {
            background: rgba(180, 40, 40, 0.3);
            border: 2px solid #f44336;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            margin: 30px 0;
            color: #ff8a80;
            font-size: 1.2rem;
            box-shadow: 0 8px 20px rgba(244, 67, 54, 0.2);
            animation: shake 0.5s ease;
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            20%, 60% { transform: translateX(-10px); }
            40%, 80% { transform: translateX(10px); }
        }
        
        .auto-refresh-info {
            text-align: center;
            color: #8BC34A;
            margin-top: 15px;
            font-size: 0.9rem;
        }
        
        .minecraft-border {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            background-image: 
                linear-gradient(to right, #4CAF50 2px, transparent 2px),
                linear-gradient(to bottom, #4CAF50 2px, transparent 2px);
            background-size: 40px 40px;
            opacity: 0.1;
            z-index: -1;
        }
        
        .server-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 15px;
        }
        
        .stat-item {
            text-align: center;
            padding: 10px;
        }
        
        .stat-value {
            font-size: 1.8rem;
            color: #4CAF50;
            font-weight: bold;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* 玩家列表样式 */
        .players-list {
            margin-top: 15px;
            max-height: 300px;
            overflow-y: auto;
        }
        
        .player-item {
            display: flex;
            align-items: center;
            padding: 10px;
            background: rgba(30, 45, 30, 0.5);
            margin: 8px 0;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .player-item:hover {
            background: rgba(40, 60, 40, 0.7);
            transform: translateX(5px);
        }
        
        .player-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 15px;
            background: #2c2c2c;
            border: 2px solid #4CAF50;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .player-avatar i {
            color: #8BC34A;
            font-size: 1.2rem;
        }
        
        .player-name {
            flex: 1;
            font-size: 1.1rem;
        }
        
        .no-players {
            text-align: center;
            padding: 15px;
            color: #aaa;
            font-style: italic;
        }
        
        /* 版权信息样式 */
        .footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            text-align: center;
            padding: 20px 0;
            background: rgba(10, 20, 10, 0.8);
            color: #8BC34A;
            font-size: 1rem;
            border-top: 2px solid #4CAF50;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            z-index: 10;
        }
        
        .copyright {
            margin: 0 auto;
            max-width: 1200px;
            padding: 0 20px;
        }
        
        .copyright a {
            color: #4CAF50;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .copyright a:hover {
            color: #8BC34A;
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .status-container {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .server-address {
                font-size: 1.4rem;
            }
            
            .player-count {
                font-size: 1.2rem;
            }
            
            .player-count .online-value {
                font-size: 1.8rem;
            }
            
            .player-count .max-value {
                font-size: 1.5rem;
            }
            
            .card-title {
                font-size: 1.4rem;
            }
            
            .status-badge {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
            
            .server-stats {
                flex-direction: column;
                gap: 10px;
            }
            
            .footer {
                font-size: 0.9rem;
                padding: 15px 0;
            }
        }
        
        /* 添加一些装饰元素 */
        .grass-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10"><path d="M0,10 Q20,0 40,10 T80,0 T100,10 Z" fill="%234CAF50" opacity="0.6"/></svg>');
            background-size: 100% 100%;
            z-index: 5;
        }
        
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            background: rgba(139, 195, 74, 0.5);
            border-radius: 50%;
            animation: float 10s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }