.scp-item-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    text-align: center;
}

.scp-instructions {
    margin-bottom: 15px;
    font-size: 14px;
    color: #aaa;
    font-style: italic;
}

.scp-display-box {
    background: #252525;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #333;
    word-break: break-word;
}

.scp-content {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.scp-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* Important for mobile */
}

.scp-copy-btn, .scp-open-link-btn {
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 140px; /* Better click target on mobile */
}

.scp-copy-btn {
    background: #3b82f6;
    color: white;
}

.scp-open-link-btn {
    background: #10b981;
    color: white;
}

.scp-copy-btn:hover { background: #2563eb; transform: translateY(-2px); }
.scp-open-link-btn:hover { background: #059669; transform: translateY(-2px); }

/* Mobile Optimizations */
@media (max-width: 480px) {
    .scp-item-container {
        margin: 10px;
        padding: 15px;
    }
    .scp-content {
        font-size: 16px;
    }
    .scp-copy-btn, .scp-open-link-btn {
        width: 100%;
        padding: 14px;
    }
}
