/*
Theme Name: ReAnime
Theme URI: https://reanime.blog/
Author: ReAnime
Description: High performance anime streaming theme.
Version: 1.0.0
Text Domain: reanime
*/

:root{
    --primary:#e8ff47;
    --background:#000;
    --card:#0d0d0f;
    --card-2:#151517;
    --border:rgba(255,255,255,.08);
    --muted:#a1a1aa;
    --text:#fff;
}

*{box-sizing:border-box}

html{
    background:#000;
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:#000;
    color:#fff;
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    -webkit-font-smoothing:antialiased;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    display:block;
    max-width:100%;
}

button,input{
    font:inherit;
}

.re-container{
    width:min(1536px,calc(100% - 32px));
    margin:auto;
}

.re-primary{
    color:var(--primary);
}