
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* =========================
   HEADER / NAVIGATION CSS
========================= */

:root {
    --bg: #1a0a0a;
    --bg2: #2a0f0f;
    --tm: #ffffff;
    --acc: #983410;
    --acc2: #9e3000;
    --br: rgba(232, 82, 26, .18);
    --r6: 6px;
    --r12: 12px;
    --t: .22s cubic-bezier(.4, 0, .2, 1);
}

/* =========================
   RESET
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body p{
        font-family: "Poppins", sans-serif;
}
body {
    margin: 0;
    overflow-x: hidden;
         font-family: "Poppins", sans-serif;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

button {
    font: inherit;
}

/* =========================
   HEADER
========================= */

.hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    background: #fff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid var(--br);

    transition:
        box-shadow var(--t),
        background var(--t);
}

/* =========================
   HEADER INNER
========================= */

.hi {
    max-width: 1200px;
    height: 85px;

    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;

    font-family: Orbitron, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;

    letter-spacing: .04em;
    gap: 8px;
}

.logo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.logo span {
    color: var(--acc2);
}

/* =========================
   DESKTOP NAV
========================= */

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nitem {
    position: relative;
}

/* =========================
   NAV LINKS / BUTTONS
========================= */

.nl {
    height: 70px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    gap: 5px;

    color: var(--bg);

    font-family: Rajdhani, sans-serif;
    font-weight: 600;

    white-space: nowrap;
    cursor: pointer;

    border: none;
    background: transparent;

    transition: .3s;
}

.nl:hover,
.nl:focus {
    background: rgba(255, 255, 255, .05);
    color: #000;
}

.nl.act {
    color: #000;
    background: rgba(255, 255, 255, .05);
}

.nl.act::after {
    content: "";

    position: absolute;
    left: 30px;
    right: 12px;
    bottom: 6px;

    height: 3px;

    background: #000;
    border-radius: 20px;
}

/* =========================
   NAV ARROW
========================= */

.narr {
    font-size: .65rem;
    transition: transform var(--t);
}

.nitem:hover .narr,
.nitem:focus-within .narr {
    transform: rotate(180deg);
}

/* =========================
   DROPDOWN
========================= */

.drop {
    position: absolute;

    top: calc(100% + 8px);
    left: 0;

    min-width: 230px;

    background: var(--tm);

    border: 1px solid var(--br);
    border-radius: var(--r12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
        opacity var(--t),
        visibility var(--t),
        transform var(--t);

    overflow: hidden;
}

/* Dropdown open on hover/focus */

.nitem:hover .drop,
.nitem:focus-within .drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
   DROPDOWN LINKS
========================= */

.drop a {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 18px;

    color: var(--bg);

    font-family: Rajdhani, sans-serif;
    font-size: .95rem;
    font-weight: 600;

    letter-spacing: .02em;

    border-bottom: 1px solid rgba(0, 0, 0, .08);

    transition:
        color var(--t),
        background var(--t),
        padding-left var(--t);
}

.drop a:last-child {
    border-bottom: none;
}

.drop a:hover {
    background: rgba(232, 82, 26, .1);
    padding-left: 24px;
}

/* =========================
   BLOGS DROPDOWN
========================= */

.blogs-menu {
    min-width: 300px;
}

/* =========================
   HEADER CTA
========================= */

.hcta {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-left: 20px;
}

/* =========================
   DOWNLOAD BUTTON
========================= */

.bhl,
.bhr {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 20px;

    border: none;
    border-radius: var(--r6);

    font-family: Rajdhani, sans-serif;
    font-size: .95rem;
    font-weight: 700;

    letter-spacing: .05em;

    color: #fff;

    transition: all var(--t);
}

.bhl {
    background: #01875f;
}

.bhl:hover {
    background: #00f;
    color: #fff;
}

.bhr {
    background: linear-gradient(135deg,
            var(--acc) 0,
            var(--acc2) 100%);
}

.bhr:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232, 82, 26, .25);
}

/* =========================
   FOCUS ACCESSIBILITY
========================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--acc2);
    outline-offset: 3px;
    border-radius: 2px;
}

/* =========================
   HAMBURGER
========================= */

.ham {
    display: none;

    flex-direction: column;
    gap: 5px;

    padding: 6px;

    background: transparent;
    border: none;

    cursor: pointer;
}

.ham span {
    width: 24px;
    height: 2px;

    background: var(--bg);

    border-radius: 2px;

    transition: all var(--t);
}

/* Hamburger active state */

.ham.op span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.ham.op span:nth-child(2) {
    opacity: 0;
}

.ham.op span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   MOBILE NAV
========================= */

.mnav {
    display: none;

    flex-direction: column;

    background: var(--tm);

    border-top: 1px solid var(--acc);

    padding: 16px 24px 24px;

    gap: 4px;
}

/* Mobile nav links */

.mnav a,
.mnav button {
    display: block;

    padding: 10px 0;

    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .12);

    background: transparent;

    color: var(--bg);

    font-family: Rajdhani, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;

    letter-spacing: .03em;

    text-align: left;

    cursor: pointer;

    transition: color var(--t);
}

.mnav a:hover,
.mnav button:hover {
    color: var(--acc2);
}

/* Mobile active link */

.mnav a.act {
    color: var(--acc2);
}

/* =========================
   MOBILE BLOG / MORE
========================= */

.mobile-blogs {
    width: 100%;
}

.mobile-blog-btn {
    width: 100%;

    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.mobile-blog-arrow {
    transition: transform var(--t);
}

.mobile-blogs.open .mobile-blog-arrow {
    transform: rotate(180deg);
}

.mobile-blog-list {
    display: none;
    padding-left: 16px;
}

.mobile-blogs.open .mobile-blog-list {
    display: block;
}

.mobile-blog-list .sub {
    font-size: .95rem;
}

/* =========================
   MOBILE CTA
========================= */

.mcta {
    display: flex;
    gap: 10px;

    margin-top: 16px;
}

.mcta .bhl,
.mcta .bhr {
    flex: 1;
    text-align: center;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .hi {
        padding: 0 20px;
    }

    .nav {
        gap: 0;
    }

    .nl {
        padding: 0 12px;
    }

    .hcta {
        margin-left: 10px;
    }

    .blogs-menu {
        min-width: 270px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .hi {
        height: 70px;
        padding: 0 16px;
    }

    .logo img {
        max-width: 64px !important;
    }

    .nav,
    .hcta {
        display: none;
    }

    .ham {
        display: flex;
    }

    .mnav {
        display: none;
    }

    .mnav.op,
    .mnav.open {
        display: flex;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .hi {
        padding: 0 12px;
    }

    .logo img {
        max-width: 60px !important;
    }

    .mnav {
        padding: 14px 16px 20px;
    }

    .mcta {
        flex-direction: column;
    }

    .mcta .bhl,
    .mcta .bhr {
        width: 100%;
    }
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body,
h1,
h2,
h3,
h4 {
        font-family: "Poppins", sans-serif;
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* -----------------End-----Header-------------- */


:root{
  --blue:#0754d9;
  --blue-dark:#06286f;
  --navy:#111d38;
  --red:#ed151c;
  --red-soft:#fff0f0;
  --pale:#eef6ff;
  --line:#d6e4f5;
  --text:#18233a;
  --muted:#47546a;
  --white:#fff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#fff;
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.45;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.page{overflow:hidden}
/* ================= HERO ================= */
.hero {
    padding: 78px 0px 0px;
    position: relative;
    min-height: 520px;
    background: radial-gradient(circle at 0 0, #cfe3fb 0 118px, transparent 119px), radial-gradient(circle at 100% 68%, #cfe3fb 0 165px, transparent 166px), linear-gradient(135deg, #fff 0%, #fbfdff 58%, #edf6ff 100%);
}
.hero:before{
  content:"";
  position:absolute;
  left:-60px;
  top:30px;
  width:250px;
  height:125px;
  border-top:3px solid var(--red);
  border-radius:50%;
  transform:rotate(-7deg);
}
.hero:after{
  content:"";
  position:absolute;
  right:-40px;
  bottom:10px;
  width:230px;
  height:130px;
  border-top:3px solid var(--red);
  border-radius:50%;
  transform:rotate(-28deg);
}
.hero-inner{
  width: min(1290px,100%);
  min-height:520px;
  margin:auto;
  display:grid;
  grid-template-columns:47% 53%;
  position:relative;
  z-index:2;
}
.hero-copy{
  padding:62px 0 42px 25px;
  position:relative;
  z-index:5;
}
.hero-title{
  margin:0;
  font-size:90px;
  line-height:.82;
  letter-spacing:-7px;
  font-style:italic;
  font-weight:900;
  color:var(--navy);
}
.hero-title span{color:var(--red)}
.hero-game{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
  margin:13px 0 4px 18px;
  color:var(--blue);
  font-size:31px;
  font-weight:900;
  letter-spacing:11px;
}
.hero-game:before,.hero-game:after{
  content:"";
  width:55px;
  height:2px;
  background:var(--blue);
}
.tagline{
  margin-left:73px;
  font-size:13px;
  letter-spacing:5px;
  font-weight:900;
  color:#131e35;
}
.hero-copy>p{
  width:470px;
  max-width:100%;
  margin:18px 0 20px;
  font-size: 15px;
  color:#1e293d;
}
.hero-buttons{display:flex;gap:13px}
.hero-buttons .btn{height:38px;min-width:101px}

/* supplied reference artwork used as the visual hero object */
.hero-art{
  position:absolute;
  right:-1%;
  top:0;
  width:58%;
  height:100%;
  object-fit:cover;
  object-position:73% 29%;
  z-index:3;
  mix-blend-mode:multiply;
  opacity:.99;
  pointer-events:none;
}
.hero-art-mask{
  position:absolute;
  right:0;
  top:0;
  width:56%;
  height:100%;
  overflow:hidden;
  z-index:3;
}
.hero-art-mask img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:74% 27%;
}
.hero-features{
  display:grid;
  grid-template-columns:repeat(4,115px);
  gap:7px;
  margin-top:22px;
}
.hero-feature{
  text-align:center;
  color:var(--navy);
  font-size:10px;
  font-weight:900;
  border-right:1px solid #e1e7ef;
}
.hero-feature:last-child{border:0}
.hero-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#edf5ff;
  color:var(--blue);
  display:grid;
  place-items:center;
  margin:0 auto 6px;
  font-size:22px;
  border:1px solid #dceafa;
}
.hero-feature b{display:block;line-height:1.15}

/* ================= CONTENT CARD / REFERENCE SHAPE ================= */
.content-wrap{
  width: min(1280px,100%);
  margin:-2px auto 0;
  position:relative;
  z-index:20;
}
.card {
    background: #fff;
    border: 1px solid #cbdcf2;
    border-radius: 22px;
    box-shadow: 0 7px 24px rgba(17, 65, 130, .13);
    padding: 22px 23px;
    margin-bottom: 42px;
}
.card-title{
    color: #b74c2c;
    font-size: 27px;
    line-height: 1.3;
  font-weight:900;
  text-transform:uppercase;
}
.card-title:before{
  content:"";
  display:inline-block;
  width:5px;
  height:22px;
  background:var(--red);
  border-radius:4px;
  margin-right:8px;
  vertical-align:-3px;
}
.card h2{
    color: #b74c2c;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 17px;
}
.card h3{
  margin:0 0 9px;
  color:var(--navy);
  font-size:14px;
  line-height:1.2;
}
.card p{
  margin:0 0 10px;
  font-size: 15px;
  color:#202b3f;
}
.about-card{
  border-radius:22px;
  padding:20px 25px 22px;
}
.about-card h2{text-transform:uppercase}
.about-card h2::first-letter{color:var(--navy)}
.about-card h2 span{color:var(--blue)}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
  margin-top:13px;
}
.feature-card{
  min-height:206px;
  border:1px solid #cfdff2;
  border-radius:12px;
  padding:12px 12px 10px;
  background:#fff;
  box-shadow:0 2px 7px rgba(22,70,130,.04);
  text-align:center;
}
.feature-card .icon{
  width:49px;height:49px;
  margin:0 auto 8px;
  color:var(--blue);
  font-size:29px;
  display:grid;
  place-items:center;
  font-weight:900;
}
.feature-card h3{
  font-size: 18px;
  min-height:31px;
  margin-bottom:5px;
}
.feature-card h3:after{
  content:"";
  display:block;
  width:22px;
  height:2px;
  margin:7px auto 7px;
  background:var(--red);
}
.feature-card p{
  text-align:left;
  font-size: 15px;
  line-height:1.42;
}

/* ================= TWO COLUMN SECTIONS ================= */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
.subcard{
  position:relative;
  background:#fff;
  border:1px solid #d2e1f3;
  border-radius:14px;
  box-shadow:0 5px 16px rgba(18,67,130,.09);
  padding:15px 17px;
}
.ribbon{
  display:inline-block;
  background:var(--blue);
  color:#fff;
  padding:5px 15px;
  border-radius:5px;
  font-size: 18px;
  font-weight:900;
  margin-bottom:9px;
}
.ribbon:after{
  content:"";
  display:inline-block;
  margin-left:7px;
  width:0;height:0;
  border-left:9px solid #fff;
  border-top:5px solid transparent;
  border-bottom:5px solid transparent;
}
.steps{display:grid;gap:6px}
.step{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:7px;
  align-items:start;
  font-size: 15px;
  color:#172237;
}
.step-label{
  background:var(--red);
  color:#fff;
  border-radius:4px;
  padding:2px 5px;
  font-weight: 700;
  white-space:nowrap;
  font-size: 15px;
}
.step b{font-weight:900}

/* ================= INSTALL + NAVIGATION ================= */
.nav-list{
  display:grid;
  gap:9px;
  margin-top:6px;
}
.nav-row{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:9px;
  align-items:center;
}
.nav-row p{margin:0;font-size:15px}
.iphone-note{
  background:#ffe9e9;
  border:1px solid #ffd0d0;
  border-radius:10px;
  padding:9px 11px;
  margin-top:9px;
  font-size: 15px;
}
.iphone-note strong{color:var(--red)}

/* ================= REGISTER / LOGIN ================= */
.long-steps{
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:30px;
}
.long-steps p{
  margin:0 0 8px;
  padding:7px 9px;
  border-left:3px solid var(--red);
  background:#fafcff;
}
.forgot{margin-top:13px}

/* ================= LISTS / COMMON PROBLEMS ================= */
.clean-list{
  list-style:none;
  padding:0;
  margin:9px 0 0;
}
.clean-list li{
  padding:8px 5px 8px 19px;
  border-bottom:1px solid #edf2f8;
  font-size: 15px;
  position:relative;
}
.clean-list li:before{
  content:"";
  position:absolute;
  left:4px;
  top:13px;
  width:7px;height:7px;
  background:var(--red);
  border-radius:50%;
}
.problem-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.problem{
  border:1px solid #d4e2f2;
  border-radius:12px;
  padding:12px;
}
.problem h3{
  color:var(--blue);
  font-size: 19px;
}
.problem p{font-size: 15px;}

/* ================= CONCLUSION ================= */
.conclusion {
    background: linear-gradient(135deg, #d71f1f, #8d533d);
    border: 0;
    color: #fff;
}
.conclusion .card-title,.conclusion p{color:#fff}
.conclusion .card-title:before{background:var(--red)}

/* ================= FAQ ================= */
.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.faq{
  border:1px solid #d5e3f3;
  border-radius:12px;
  padding:12px 14px;
}
.faq h3{font-size: 19px;color:var(--blue)}
.faq p{font-size: 15px;}

/* ================= FOOTER â€” same dark-blue / red curve language ================= */
/* =========================================
   91 CLUB GAME FOOTER
   ========================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 8% 15%, rgba(255, 255, 255, .08) 0 70px, transparent 71px), radial-gradient(circle at 92% 80%, rgba(255, 255, 255, .07) 0 90px, transparent 91px), #b74c2c;
    color: #ffffff;
    padding: 58px 0 0;
}

/* Decorative blue/white shape */

.site-footer::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    left: -210px;
    top: 35px;
    border-radius: 50%;
    background: rgba(43, 112, 235, .20);
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 2px;
    right: -130px;
    bottom: 52px;
    background: #ef1b23;
    transform: rotate(-42deg);
    transform-origin: center;
    pointer-events: none;
}


/* Main footer container */

.site-footer .container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* Footer Grid */

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 42px;
}


/* Footer Columns */

.footer-column {
    position: relative;
}

.footer-column h3 {
    margin: 5px 0 22px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 9px;
    border-radius: 10px;
    background: #ef1b23;
}


/* Logo */

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    display: block;
    width: 175px;
    height: auto;
    object-fit: contain;
}


/* Brand Text */

.footer-brand p {
    max-width: 390px;
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    line-height: 1.75;
}


/* Footer Links */

.footer-column > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 14px;
    color: rgba(255,255,255,.92);
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-column > a:hover {
    color: #ffffff;
    transform: translateX(5px);
}


/* Small Red Dots */

.footer-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #1b1112;
}

/* Bottom */

.footer-bottom {
    position: relative;
    border-top: 1px solid rgba(255,255,255,.18);
    padding: 20px 0 22px;
    text-align: center;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.footer-bottom a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ef1b23;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 35px;
    }

}

@media (max-width: 700px) {

    .site-footer {
        padding-top: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 600px;
    }

}

@media (max-width: 480px) {

    .site-footer .container {
        width: min(100% - 30px, 1180px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-logo img {
        width: 155px;
    }

    .footer-bottom {
        font-size: 12px;
    }

}

/* ================= RESPONSIVE ================= */
@media(max-width:1000px){
  .nav{gap:14px}
  .hero-title{font-size:72px}
  .hero-art-mask{width:58%}
  .feature-grid{grid-template-columns:repeat(3,1fr)}
  .footer-inner{grid-template-columns:1fr 1fr}
}
@media(max-width:760px){
  .header{height:auto;padding:13px 0}
  .header-inner{flex-wrap:wrap;gap:12px}
  .nav{display:none}
  .actions{margin-left:auto}
  .hero{min-height:750px}
  .hero-inner{display:block;min-height:750px}
  .hero-copy{padding:40px 5px 0;text-align:center}
  .hero-title{font-size:65px}
  .hero-game{justify-content:center;margin-left:0}
  .tagline{margin-left:0}
  .hero-copy>p{margin-left:auto;margin-right:auto}
  .hero-buttons{justify-content:center}
  .hero-features{justify-content:center;margin:20px auto 0;grid-template-columns:repeat(4,1fr);max-width:480px}
  .hero-art-mask{top:315px;right:0;width:100%;height:435px}
  .content-wrap{margin-top:0}
  .grid-2,.faq-grid,.problem-grid{grid-template-columns:1fr}
  .long-steps{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
}
@media(max-width:500px){
  .logo{font-size:29px;width:145px}
  .actions .btn{min-width:78px;padding:0 12px}
  .hero-title{font-size:54px}
  .hero-game{font-size:23px;letter-spacing:7px}
  .hero-features{grid-template-columns:repeat(2,1fr)}
  .feature-grid{grid-template-columns:1fr}
  .card{padding:17px}
}

/* ------Start------Inner---pages---Code----- */
.inner-page {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 55px 20px 70px;
    background: radial-gradient(circle at 0% 5%, rgba(23, 91, 221, 0.10) 0 130px, transparent 131px), radial-gradient(circle at 100% 35%, rgba(23, 91, 221, 0.08) 0 170px, transparent 171px), #f8fbff;
    padding: 130px 0px 0px;
}

        .inner-page::before {
            content: "";
            position: absolute;
            width: 230px;
            height: 230px;
            border: 2px solid #ed1c24;
            border-radius: 50%;
            left: -145px;
            top: 280px;
            opacity: 0.9;
        }

        .inner-page::after {
            content: "";
            position: absolute;
            width: 240px;
            height: 240px;
            border: 2px solid #ed1c24;
            border-radius: 50%;
            right: -150px;
            bottom: 160px;
            opacity: 0.9;
        }

        .inner-container {
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* MAIN INTRO */

        .inner-intro {
            background: #ffffff;
            border-radius: 22px;
            padding: 42px 48px;
            border: 1px solid #dce7f8;
            box-shadow: 0 10px 35px rgba(20, 55, 110, 0.08);
            margin-bottom: 28px;
            position: relative;
            overflow: hidden;
        }

        .inner-intro::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 7px;
            height: 100%;
            background: #ed1c24;
        }

        .main-title {
            font-size: 38px;
            line-height: 1.2;
            font-weight: 800;
            color: #111d3d;
            margin-bottom: 22px;
            position: relative;
            display: inline-block;
        }

        .main-title::after {
            content: "";
            display: block;
            width: 70px;
            height: 4px;
            background: #ed1c24;
            border-radius: 10px;
            margin-top: 10px;
        }

        .inner-intro p {
            font-size: 16px;
            color: #33415f;
            margin-bottom: 15px;
        }

        .inner-intro a {
            color: #1457d9;
            font-weight: 700;
            text-decoration: none;
        }

        /* CONTENT CARD */

        .content-card {
            background: #ffffff;
            border: 1px solid #dce7f8;
            border-radius: 20px;
            padding: 34px 38px;
            margin-bottom: 25px;
            box-shadow: 0 8px 28px rgba(20, 55, 110, 0.065);
            position: relative;
        }

        .content-card::before {
            content: "";
            position: absolute;
            left: 0;
            top: 25px;
            width: 5px;
            height: 45px;
            background: #1457d9;
            border-radius: 0 5px 5px 0;
        }

 h2 {
    color: #b74c2c;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 17px;
    padding-left: 4px;
}

        h3 {
            color: #142142;
            font-size: 20px;
            line-height: 1.35;
            font-weight: 750;
            margin-top: 27px;
            margin-bottom: 12px;
            position: relative;
        }

        p {
            color: #39455f;
            font-size: 15.5px;
            margin-bottom: 15px;
        }

        p:last-child {
            margin-bottom: 0;
        }

        /* LIST */

        ul {
            margin: 16px 0 8px;
            padding: 0;
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 18px;
        }

        ul li {
            position: relative;
            padding: 12px 15px 12px 39px;
            background: #f8fbff;
            border: 1px solid #e0e8f5;
            border-radius: 10px;
            color: #34415c;
            font-size: 14.5px;
        }

        ul li::before {
            content: "✓";
            position: absolute;
            left: 13px;
            top: 10px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #1457d9;
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* SPECIAL SECTIONS */

        .privacy-section {
            border-top: 4px solid #1457d9;
        }

        .contact-section {
            border-top: 4px solid #ed1c24;
        }

        .policy-section {
            background: #ffffff;
        }

        .looking-section {
            background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
        }

        /* EMAIL */

        .email {
            color: #1457d9;
            font-weight: 700;
        }

        /* RESPONSIVE */

        @media (max-width: 800px) {

            .inner-page {
                padding: 35px 15px 50px;
            }

            .inner-intro {
                padding: 32px 25px;
            }

            .content-card {
                padding: 28px 24px;
            }

            .main-title {
                font-size: 31px;
            }

            h2 {
                font-size: 24px;
            }

            h3 {
                font-size: 19px;
            }

            ul {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {

            .inner-page {
                padding: 25px 11px 40px;
            }

            .inner-intro {
                padding: 27px 20px;
                border-radius: 16px;
            }

            .content-card {
                padding: 25px 19px;
                border-radius: 16px;
            }

            .main-title {
                font-size: 27px;
            }

            h2 {
                font-size: 22px;
            }

            p {
                font-size: 14.5px;
            }

            ul li {
                font-size: 14px;
            }
        }

        /* ----End---Inner--Code--------- */
