/* CSS Custom Properties and Theme Variables */
:root {
    --sociail-yellow: #f9d949;
    --sociail-blue: #0066ff;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --bg-primary: #fbfbfd;
    --bg-secondary: #f5f5f7;
    --border-color: rgba(0, 0, 0, 0.1);
    --screen-color: #3375e0;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f5f5f7;
        --text-secondary: #a1a1a6;
        --bg-primary: #000000;
        --bg-secondary: #1c1c1e;
        --border-color: rgba(255, 255, 255, 0.1);
        --screen-color: #007aff;
    }
}

[data-theme="dark"] {
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --bg-primary: #000000;
    --bg-secondary: #1c1c1e;
    --border-color: rgba(255, 255, 255, 0.1);
    --screen-color: #007aff;
}

[data-theme="light"] {
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --bg-primary: #fbfbfd;
    --bg-secondary: #f5f5f7;
    --border-color: rgba(0, 0, 0, 0.1);
    --screen-color: #3375e0;
}
