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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a1929 0%, #1a2332 50%, #0d1b2a 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: rgba(15, 30, 50, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.1);
    text-align: center;
}

.warning-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

h1 {
    color: #3b82f6;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

p {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 400;
}

.script-container {
    background: rgba(10, 25, 41, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    position: relative;
}

.script-label {
    color: #60a5fa;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 600;
}

.script-box {
    background: #0a0f1a;
    color: #60a5fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    text-align: left;
    overflow-x: auto;
    white-space: pre;
    max-height: 300px;
    overflow-y: auto;
}

.copy-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.copy-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

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

.copied {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
}
