* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.back-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f5f5f5;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.back-chip::before {
    content: "";
    width: 7px;
    height: 7px;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: rotate(45deg);
}

.back-chip:hover {
    background: #667eea;
    color: white;
}

.back-chip:focus-visible {
    outline: 3px solid rgba(102, 126, 234, 0.4);
    outline-offset: 3px;
}

h1 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.subtitle {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.server-url {
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 1.1em;
    word-break: break-all;
    border-left: 4px solid #667eea;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.server-url-content {
    flex: 1;
    min-width: 0;
}

.server-url strong {
    color: #667eea;
}

.server-config-content {
    flex: 1;
    min-width: 0;
    white-space: pre-wrap;
}

.copy-button {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-button:hover {
    background: #5568d3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.copy-button:active {
    transform: translateY(0);
}

.copy-button.copied {
    background: #4caf50;
}

.copy-button.copied:hover {
    background: #45a049;
}

.soft-launch {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.soft-launch strong {
    color: #2e7d32;
}

h2 {
    color: #764ba2;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

p {
    margin-bottom: 1em;
}

.incident-list {
    margin-top: 30px;
    border-top: 1px solid #eee;
    list-style: none;
    font-size: 1.5em;
}

.incident-list li {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.incident-list a {
    color: #667eea;
    text-decoration: none;
}

.incident-list a:hover {
    text-decoration: underline;
}

.severity-low {
    color: #1976d2;
}

.severity-medium {
    color: #c66a00;
}

.severity-high {
    color: #e65100;
}

.severity-critical {
    color: #a31515;
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95em;
}

th,
td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

th {
    background: #f5f5f5;
    color: #667eea;
    font-weight: 600;
}

td a {
    color: #667eea;
    text-decoration: none;
}

td a:hover {
    text-decoration: underline;
}

.status-fixed {
    color: #2e7d32;
}

.status-pending-disclosure {
    color: #81c784;
}

.status-pending-release {
    color: #ef6c00;
}

.example {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
}

.example-header {
    background: #667eea;
    color: white;
    padding: 12px 20px;
    font-weight: bold;
    font-family: 'Monaco', 'Courier New', monospace;
}

.example-content {
    padding: 0 20px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
    background: #fff;
}

.example-prompt {
    color: #ffdd44;
    font-weight: bold;
}

.example-output {
    color: #1976d2;
    margin-top: 10px;
}

.links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin-top: 20px;
    }

    h1 {
        font-size: 2em;
    }

    .example-content {
        font-size: 0.85em;
    }
}
