/* General — Ryzer Host · identidade tech / game hosting */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');
:root {

  /* Fonts */
  --primary-font    : 'Outfit', system-ui, sans-serif;
  --secondary-font  : 'Plus Jakarta Sans', system-ui, sans-serif;
  --third-font      : 'Space Grotesk', system-ui, sans-serif;
  --fourth-font     : 'Outfit', sans-serif;
  --game-1-font     : 'Audiowide', sans-serif;
  --game-2-font     : 'Abel', sans-serif;

  /* Brand — vermelho + preto (acento secundário também em vermelho) */
  --primary         : #dc2626;
  --primary-deep    : #991b1b;
  --primary-rgb     : 220, 38, 38;
  --neon            : #ef4444;
  --neon-rgb        : 239, 68, 68;
  --gold            : #fbbf24;
  --dark            : #0a0a0a;
  --semi-dark       : #141414;
  --semi-dark-2     : #1f1f1f;
  --text-gray       : #94a3b8;
  --red             : #f87171;
  --border          : #e5e5e5;
  --light           : #fafafa;

}
:root .light-theme {
  --text-gray   : #525252;
}
:root .light-theme .theme-footer {
  --text-gray   : #a3a3a3;
}

html {
  font-family: var(--secondary-font);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: default;
  background-color: #050505;
  background-image:
    radial-gradient(ellipse 100% 70% at 50% -15%, rgba(var(--primary-rgb), 0.22), transparent 45%),
    linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}
body.light-theme {
  background-color: #fafafa;
  background-image:
    radial-gradient(ellipse 110% 60% at 50% -8%, rgba(var(--primary-rgb), 0.09), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
}
/*------------------------------------------------------*/

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  height: 54px;
  line-height: 1;
  padding: 0 36px;
  border-radius: 999px;
  letter-spacing: .8px;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--secondary-font);
  transition: transform .20s ease, box-shadow .20s ease, background-color .20s ease, border-color .20s ease, color .20s ease;
}

/* btn-sm */
.btn-sm {
  height: 48px;
  padding: 0 24px;
  font-size: 14px;
}

/* btn-rounded */
.btn-rounded {
  border-radius: 50px;
}

/* fill-primary */
.btn-fill-primary {
  background: linear-gradient(135deg, #f87171 0%, var(--primary) 40%, var(--primary-deep) 100%);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 18px 36px -14px rgba(var(--primary-rgb), 0.5);
}
.btn-fill-primary:hover {
  background: linear-gradient(135deg, #fca5a5 0%, #dc2626 55%, #7f1d1d 100%);
  border-color: rgba(0, 0, 0, 0.25);
}

/* fill-warning */
.btn-fill-warning {
  background-color: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  box-shadow: 0 22px 20px -15px rgba(0, 106, 255, 0.5);
}
.btn-fill-warning:hover {
  background-color: #d2962a;
  border-color: #d2962a;
}

/* outline-dark */
.btn-outline-dark {
  background-color: rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 20px 35px -20px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
}
.btn-outline-dark.level-up {
  background-color: rgba(255, 255, 255, .04);
}
.btn-outline-dark:hover {
  border-color: rgba(255, 255, 255, .28);
  color: #ffffff;
}

.light-theme .btn-outline-dark {
  background-color: rgba(255, 255, 255, .92);
  border-color: rgba(var(--primary-rgb), .18);
  color: var(--dark);
  box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.12);
}
.light-theme .btn-outline-dark:hover {
  background-color: #fff;
  border-color: rgba(var(--primary-rgb), 0.45);
  color: var(--dark);
}

/* fill-success */
.btn-fill-success {
  background: linear-gradient(135deg, #f87171 0%, var(--primary) 45%, #7f1d1d 100%);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 18px 34px -16px rgba(var(--primary-rgb), 0.45);
}
.btn-fill-success:hover {
  background: linear-gradient(135deg, #fca5a5 0%, #b91c1c 55%, #450a0a 100%);
  border-color: rgba(0, 0, 0, 0.2);
}

/* btn-icon */
.btn-icon {
  margin-right: 10px;
  width: 20px;
}
.btn-icon.right-icon {
  margin-right: unset;
  margin-left: 10px;
}

/* btn-circle */
.btn.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 54px;
  padding: 0;
  border-radius: 50%;
}
.btn.btn-circle .btn-icon {
  margin: 0 !important;
  width: 30px;
}
.btn.btn-circle.btn-lg {
  height: 64px;
  width: 64px;
}

/* shadow-off */
.btn.shadow-off {
  box-shadow: unset !important;
}

/* hover */
.btn:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

@media only screen and (max-width: 1199px) {
  .btn {
    font-size: 14px;
    height: 46px;
    padding: 0 26px;
  }
}
/*------------------------------------------------------*/

/* Backgrounds & Colors */
.bg-2 {
  background:
    linear-gradient(180deg, rgba(var(--primary-rgb), 0.06) 0%, rgba(255, 255, 255, 0.02) 100%),
    #0a0a0a;
}
.light-theme .bg-2 {
  position: relative;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.04) 0%, #ffffff 55%, #fafafa 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1;
}
.primary-color {
  color: var(--primary);
}
/*------------------------------------------------------*/

/* Section head */
.se-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 75px;
}
.se-head .se-title-1 {
  font-size: 13px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.light-theme .se-head .se-title-1 {
  color: var(--primary-deep);
}
.se-head .se-title-2 {
  font-family: var(--third-font);
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -.03em;
}

/* game-se-head */
.se-head.game-se-head .se-title-1 {
  font-family: var(--game-1-font);
  color: var(--gold);
}
.se-head.game-se-head .se-title-2 {
  font-family: var(--game-1-font);
  text-transform: uppercase;
}
.se-head.game-se-head .se-para {
  font-size: 24px;
  font-family: var(--game-2-font);
  color: var(--text-gray);
  line-height: 1.4;
}

.light-theme .se-head .se-title-2 {
  color: var(--dark);
}
@media only screen and (max-width: 1199.98px) {
  .se-head .se-title-2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767.98px) {
  .se-head .se-title-2 {
    font-size: 26px;
  }
  .se-head.game-se-head .se-para {
    font-size: 20px;
  }
}
/*------------------------------------------------------*/
