/* Main Global Styles */

/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    transition: var(--transition-fast);
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Tipografía Escala */
h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Utilidades de Texto */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(90deg, #EAF0FF 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-accent {
    color: var(--accent-cyan);
}

.text-secondary {
    color: var(--accent-primary);
}

.text-primary {
    color: var(--text-accent);
}

/* Fondos Especiales */
.bg-darker {
    background-color: #05070D;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}