/*
Theme Name: RenewSTB
Theme URI: https://renewstb.com/
Author: RenewSTB
Description: Dark + gradient, modern custom theme for RenewSTB.
Version: 1.0.1
Text Domain: renewstb
*/

:root {
  --bg: #0b0b12;
  --panel: #121226;
  --text: #e6e6f0;
  --muted: #9aa0b4;
  --primary: #6c63ff;      /* purple */
  --primary-2: #7a35ff;    /* deeper purple */
  --accent: #ffb800;       /* highlight */
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);

        /* green link color */
}



*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;line-height:1.6}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto}
.container{width:min(1200px,92%);margin-inline:auto}

.btn {
    display: block;
    align-items: center;
    gap: .6rem;
    padding: 7px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: transform .2s ease;
}