/*
Theme Name: Custom Shortcode Theme
Theme URI: https://yourdomain.com/
Author: Musa
Author URI: https://yourdomain.com/
Description: ثيم احترافي ومبسط مصمم خصيصاً لعرض الشورت كود في الصفحة الرئيسية للموقع.
Version: 1.0
Text Domain: custom-shortcode-theme
*/

:root {
    --bg-color: #0f1115;
    --text-color: #e2e8f0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.shortcode-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    box-sizing: border-box;
}