/*
Theme Name: Taringa! v7 Clone
Theme URI: https://tu-sitio.com
Author: Desarrollador Senior WordPress
Description: Custom Theme estilo Taringa! v7 con Gamificación, AJAX nativo y motor Anti-Spam.
Version: 1.2
License: Apache-2.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
    --t-blue: #0047ba;
    --t-bg: #f2f3f5;
    --t-border: #e1e4e8;
    --t-text: #333333;
}

body {
    background-color: var(--t-bg);
    color: var(--t-text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.t-card {
    background: #fff;
    border: 1px solid var(--t-border);
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.t-btn-primary {
    background-color: var(--t-blue);
    color: #fff;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.t-btn-primary:hover {
    background-color: #00378f;
    transform: translateY(-1px);
}
