/* Minecraft Logs 工具样式 - 基于 color-codes 风格 */

/* Breadcrumb navigation */
.breadcrumb {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666666;
}

.breadcrumb a {
    color: var(--minecraft-green);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Page decorations */
.tool-container {
    position: relative;
    overflow: hidden;
}

.grass-block-decoration {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAAsTAAALEwEAmpwYAAAA7klEQVRYhe2XMQ7CMAxFXzN0YekROAE34QQMnIuJiYGJgYmJlSNwBA7AAVjKgFo1VdM4aZGKJUt/cPLlO3acCPwTCnAFHsAZGAKhxvlb4r9KAAfDHKAHzIE18AC2wBiIFP4VMAdK4A7MgF7dgnGvp2QsExjV+KcGO7XBNW8JXNJkAuwa5qwU/0yYQA6cFH8T0uCo+JtQvucmToWCEeBXwSiQyVwmqlEQ41bB1fX8Vi2ZMQp6zv2XgnwPHQWZo6DG5Ypw9/xKyecK9kmDRiiZr9LEDzKRKbiSuVsXvO1kpKyC02ve+gqWoODzf+CvPAFUVvdRnE1w7QAAAABJRU5ErkJggg==');
    background-size: cover;
    transform: rotate(-15deg);
    opacity: 0.8;
    z-index: 0;
    image-rendering: pixelated;
    display: none; /* 在大屏幕上才显示 */
}

.redstone-ore-decoration {
    position: absolute;
    bottom: 30px;
    right: -15px;
    width: 70px;
    height: 70px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA1klEQVQ4y83TMUoDQRTG8d/GQrCxVBCxSBFIYWMjeIFcQG+QK3iEXMAT2HkA02lI6QWsUqS1SGGRQrGwsfCzsJFld2Z3C/3gwQzD+/7vzTCpVqsI4hjbmHc5/sYAE/iqC2pJTGunMNFiPsA++jjAVdF8lKOvchXrBVTxlRVzknNgU0u5H0DI3J4aAOXC+CnvwDGupeBrPOI9ZD7MqLnDFt7yCrjNqOliA5M8AkJTb3RwhnbMXOAZRw14nOAhZN7AKe5rAr5xjlFsE5WYwgzP+V3/v3TxiAs8pVzfogKMEF94h+YAAAAASUVORK5CYII=');
    background-size: cover;
    transform: rotate(10deg);
    opacity: 0.8;
    z-index: 0;
    image-rendering: pixelated;
    display: none; /* 在大屏幕上才显示 */
}

/* Log Analyzer Container */
.log-analyzer-container {
    position: relative;
    background: var(--minecraft-panel);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
    border: 2px solid var(--minecraft-secondary);
    z-index: 1;
    border-radius: 2px;
}

.log-analyzer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQImWNgYGD4z8DAwMAAADgDAKdD8tMAAAAASUVORK5CYII=');
    background-size: 2px 2px;
    opacity: 0.05;
    z-index: -1;
}

.log-analyzer-container h2 {
    color: var(--minecraft-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--minecraft-secondary);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

/* Analyzer Input Area */
.analyzer-input {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.analyzer-input label {
    font-weight: bold;
    color: #E0E0E0;
    margin-bottom: 0.5rem;
    display: block;
}

#log-content {
    width: 100%;
    min-height: 300px;
    padding: 0.75rem;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--minecraft-secondary);
    color: white;
    font-family: 'Noto Sans Mono', monospace;
    font-size: 13px;
    line-height: 1.4;
    resize: vertical;
    border-radius: 2px;
}

#log-content:focus {
    outline: none;
    border-color: var(--minecraft-green);
    box-shadow: 0 0 0 2px rgba(68, 189, 50, 0.2);
}

#log-content::placeholder {
    color: #666666;
    font-style: italic;
}

/* Analyzer Options */
.analyzer-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: rgba(59, 133, 38, 0.1);
    border-left: 4px solid var(--minecraft-green);
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.option-group {
    display: flex;
    align-items: center;
}

.option-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #AAAAAA;
    margin: 0;
}

.option-group input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

/* Analyze Button */
.analyze-btn {
    width: 100%;
    background: var(--minecraft-green);
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'VT323', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2),
                inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.analyze-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.3s ease;
}

.analyze-btn:hover::before {
    left: 100%;
}

.analyze-btn:hover {
    background: var(--minecraft-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.analyze-btn:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    font-size: 1.2em;
}

/* 加载指示器 */
.loading-indicator {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
}

.loading-animation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.minecraft-block {
    width: 20px;
    height: 20px;
    background: #8bc34a;
    border-radius: 2px;
    animation: minecraft-bounce 1.4s ease-in-out infinite both;
}

.minecraft-block:nth-child(1) { animation-delay: -0.32s; }
.minecraft-block:nth-child(2) { animation-delay: -0.16s; }
.minecraft-block:nth-child(3) { animation-delay: 0s; }

@keyframes minecraft-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Analysis Results */
.analysis-results {
    position: relative;
    background: var(--minecraft-panel);
    padding: 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
    border: 2px solid var(--minecraft-secondary);
    z-index: 1;
    border-radius: 2px;
}

.analysis-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQImWNgYGD4z8DAwMAAADgDAKdD8tMAAAAASUVORK5CYII=');
    background-size: 2px 2px;
    opacity: 0.05;
    z-index: -1;
}

.analysis-results h3 {
    color: var(--minecraft-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--minecraft-secondary);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* Log Examples Section */
.log-examples-section {
    background: var(--minecraft-panel);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
    border: 2px solid var(--minecraft-secondary);
    position: relative;
    z-index: 1;
    border-radius: 2px;
}

.log-examples-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQImWNgYGD4z8DAwMAAADgDAKdD8tMAAAAASUVORK5CYII=');
    background-size: 2px 2px;
    opacity: 0.05;
    z-index: -1;
}

.log-examples-section h2 {
    margin-bottom: 1.5rem;
    color: var(--minecraft-green);
    border-bottom: 2px solid var(--minecraft-secondary);
    padding-bottom: 0.5rem;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    color: #CCCCCC;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-style: italic;
    opacity: 0.9;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.example-card {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid var(--minecraft-secondary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
    border-radius: 2px;
    padding: 1.5rem;
}

.example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQImWNgYGD4z8DAwMAAADgDAKdD8tMAAAAASUVORK5CYII=');
    background-size: 2px 2px;
    opacity: 0.05;
    z-index: -1;
}

.example-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
    border-color: var(--minecraft-green);
}

.error-card { border-left-color: #f44336; }
.warning-card { border-left-color: #ff9800; }
.info-card { border-left-color: #2196f3; }
.security-card { border-left-color: #9c27b0; }

.severity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    border-radius: 2px;
}

.severity-badge.error { 
    background: linear-gradient(135deg, #dc3545, #c82333);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}
.severity-badge.warning { 
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}
.severity-badge.info { 
    background: linear-gradient(135deg, #17a2b8, #138496);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}
.severity-badge.security { 
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}

.example-card h3 {
    color: #2c5234;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.log-sample {
    background: rgba(0, 0, 0, 0.8);
    color: var(--minecraft-text);
    padding: 1rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    margin: 1rem 0;
    overflow-x: auto;
    border: 1px solid var(--minecraft-secondary);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    border-radius: 2px;
    line-height: 1.4;
}

.log-sample code {
    color: inherit;
    background: none;
    padding: 0;
}

.solution h4 {
    color: #4caf50;
    margin: 15px 0 10px 0;
    font-size: 1em;
}

.solution ul {
    margin: 0;
    padding-left: 20px;
}

.solution li {
    margin-bottom: 5px;
    color: #555;
}

/* Log Tips Section */
.log-tips-section {
    background: var(--minecraft-panel);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
    border: 2px solid var(--minecraft-secondary);
    position: relative;
    z-index: 1;
    border-radius: 2px;
}

.log-tips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQImWNgYGD4z8DAwMAAADgDAKdD8tMAAAAASUVORK5CYII=');
    background-size: 2px 2px;
    opacity: 0.05;
    z-index: -1;
}

.log-tips-section h2 {
    margin-bottom: 1.5rem;
    color: var(--minecraft-green);
    border-bottom: 2px solid var(--minecraft-secondary);
    padding-bottom: 0.5rem;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.tip-card {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid var(--minecraft-secondary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
    border-radius: 2px;
    padding: 1.5rem;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQImWNgYGD4z8DAwMAAADgDAKdD8tMAAAAASUVORK5CYII=');
    background-size: 2px 2px;
    opacity: 0.05;
    z-index: -1;
}

.tip-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
    border-color: var(--minecraft-green);
}

.tip-card h3 {
    color: var(--minecraft-green);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.tip-card p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.tip-highlight {
    background: rgba(76, 175, 80, 0.1);
    padding: 1rem;
    border: 1px solid var(--minecraft-green);
    border-radius: 2px;
    font-size: 14px;
    color: #E0E0E0;
    position: relative;
    z-index: 1;
}

.tip-highlight strong {
    color: #1b5e20;
}

/* AI Analysis Results Styling */
.result-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid var(--minecraft-secondary);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 2px;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.result-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQImWNgYGD4z8DAwMAAADgDAKdD8tMAAAAASUVORK5CYII=');
    background-size: 2px 2px;
    opacity: 0.05;
    z-index: -1;
}

.result-section h4 {
    color: var(--minecraft-green);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--minecraft-secondary);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* Summary Section */
.summary-section {
    border-color: var(--minecraft-green);
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    text-align: center;
    border-radius: 2px;
    border: 1px solid var(--minecraft-secondary);
    position: relative;
    z-index: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--minecraft-text);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #CCCCCC;
    margin-top: 0.25rem;
}

.stat-item.error .stat-number { color: #ff6b6b; }
.stat-item.warning .stat-number { color: #ffd93d; }
.stat-item.info .stat-number { color: #74c0fc; }
.stat-item.performance .stat-number { color: var(--minecraft-green); }

.summary-text {
    color: #E0E0E0;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Issues Section */
.issues-section {
    border-color: #ff6b6b;
}

.issue-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--minecraft-secondary);
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.issue-item.critical { border-left: 4px solid #ff4757; }
.issue-item.error { border-left: 4px solid #ff6b6b; }
.issue-item.warning { border-left: 4px solid #ffd93d; }
.issue-item.info { border-left: 4px solid #74c0fc; }

.issue-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.issue-severity {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 2px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.issue-item h5 {
    color: var(--minecraft-text);
    margin: 0;
    font-size: 1.125rem;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.issue-description {
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.issue-log-line {
    background: rgba(0, 0, 0, 0.8);
    padding: 0.75rem;
    margin: 0.75rem 0;
    border-radius: 2px;
    border: 1px solid var(--minecraft-secondary);
    overflow-x: auto;
}

.issue-log-line code {
    color: #f8f8f2;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    white-space: pre-wrap;
}

.issue-solution {
    background: rgba(76, 175, 80, 0.1);
    padding: 1rem;
    margin-top: 0.75rem;
    border: 1px solid var(--minecraft-green);
    border-radius: 2px;
}

.issue-solution h6 {
    color: var(--minecraft-green);
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.solution-content {
    color: #E0E0E0;
    line-height: 1.6;
}

.solution-content ul, .solution-content ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.solution-content li {
    margin-bottom: 0.25rem;
}

/* Performance Section */
.performance-section {
    border-color: var(--minecraft-green);
}

.performance-content p {
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.performance-content strong {
    color: var(--minecraft-green);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

/* Plugins Section */
.plugins-section {
    border-color: #74c0fc;
}

.plugin-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--minecraft-secondary);
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.plugin-item h5 {
    color: var(--minecraft-text);
    margin: 0 0 0.5rem 0;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.plugin-item p {
    color: #E0E0E0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.plugin-status {
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.plugin-status.loaded { background: var(--minecraft-green); color: white; }
.plugin-status.error { background: #ff6b6b; color: white; }
.plugin-status.conflict { background: #ffd93d; color: #212529; }

/* Recommendations Section */
.recommendations-section {
    border-color: #ffd93d;
}

.recommendation-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--minecraft-secondary);
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.recommendation-item h5 {
    color: var(--minecraft-green);
    margin: 0 0 0.75rem 0;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.recommendation-item p {
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.recommendation-steps {
    background: rgba(255, 217, 61, 0.1);
    padding: 1rem;
    border: 1px solid #ffd93d;
    border-radius: 2px;
    margin-top: 0.75rem;
}

.recommendation-steps h6 {
    color: #ffd93d;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.recommendation-steps ol {
    margin: 0;
    padding-left: 1.5rem;
    color: #E0E0E0;
}

.recommendation-steps li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Success Message */
.no-issues-section {
    border-color: var(--minecraft-green);
    text-align: center;
}

.success-message h4 {
    color: var(--minecraft-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: #E0E0E0;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.success-tips {
    background: rgba(76, 175, 80, 0.1);
    padding: 1.5rem;
    border: 1px solid var(--minecraft-green);
    border-radius: 2px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.success-tips h5 {
    color: var(--minecraft-green);
    margin: 0 0 1rem 0;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.success-tips ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #E0E0E0;
}

.success-tips li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .grass-block-decoration,
    .redstone-ore-decoration {
        display: block;
    }
}

@media (max-width: 768px) {
    .tool-container {
        padding: 15px;
        margin: 10px;
    }
    
    .log-analyzer-container,
    .log-examples-section,
    .log-tips-section {
        padding: 20px;
    }
    
    .examples-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .analyzer-options {
        flex-direction: column;
        gap: 10px;
    }
    
    #log-content {
        min-height: 200px;
        font-size: 12px;
    }
    
    .analyze-btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    
    .summary-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .result-section {
        padding: 1rem;
    }
    
    .issue-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .log-analyzer-container h2,
    .log-examples-section h2,
    .log-tips-section h2 {
        font-size: 1.5em;
    }
    
    .example-card,
    .tip-card {
        padding: 15px;
    }
    
    .severity-badge {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }
}