/* ==========================================================================
   TTrade Global - Main CSS
   Master stylesheet that imports all component styles
   ========================================================================== */

/* Base Styles */
@import url('./base/variables.css');

/* Component Styles */
@import url('./components/glass-panel.css');
@import url('./components/buttons.css');
@import url('./components/forms.css');
@import url('./components/cards.css');

/* Utility Styles */
@import url('./utilities/animations.css');
@import url('./utilities/effects.css');
@import url('./utilities/scrollbar.css');

/* Layout Styles */
@import url('./layouts/grid-bg.css');
@import url('./layouts/navigation.css');

/* Language-specific Styles */
@import url('./i18n.css');

/* ==========================================================================
   Additional Global Styles
   ========================================================================== */

/* Selection styling */
::selection {
    background-color: var(--color-primary);
    color: var(--color-background-dark);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Light mode surface helper */
.surface-light {
    background: #ffffff;
}

/* ==========================================================================
   Legal Pages Content Styles (Privacy Policy, Terms of Service)
   ========================================================================== */

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.dark .legal-content h2 {
    color: #ffffff;
    border-bottom-color: #334155;
}

.legal-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.dark .legal-content h3 {
    color: #e2e8f0;
}

.legal-content p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.625;
    text-align: justify;
}

.dark .legal-content p {
    color: #94a3b8;
}

.legal-content ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-left: 1rem;
    margin-bottom: 1rem;
    color: #475569;
}

.dark .legal-content ul {
    color: #94a3b8;
}

.legal-content li {
    line-height: 1.625;
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: #1e293b;
}

.dark .legal-content strong {
    color: #e2e8f0;
}

.legal-content a {
    color: #0df2cc;
}

.legal-content a:hover {
    text-decoration: underline;
}