*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --bg:#050914;
  --panel:#0E1728;
  --panel2:#101B30;
  --text:#ffffff;
  --muted:#B8C2D6;
  --cyan:#36D7FF;
  --purple:#B43CFF;
  --green:#38f8a6;
  --red:#ff5f7a;
  --border:rgba(255,255,255,.10);
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 80% 10%, rgba(180,60,255,.18), transparent 24%),
    radial-gradient(circle at 20% 20%, rgba(54,215,255,.10), transparent 24%),
    var(--bg);
  color:var(--text);
}

a{
  text-decoration:none;
  color:inherit;
}

.navbar{
  min-height:78px;
  padding:0 44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:rgba(5,9,20,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:100;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  width:54px;
  height:54px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 0 20px rgba(54,215,255,.40);
}

.brand h2{
  font-size:19px;
}

.brand p{
  color:var(--muted);
  font-size:10px;
  text-transform:uppercase;
}

nav{
  display:flex;
  gap:22px;
  align-items:center;
}

nav a{
  font-size:13px;
  font-weight:800;
  color:white;
}

nav a:hover,
nav a.active{
  color:var(--cyan);
}

.nav-btn,
.main-btn{
  display:inline-block;
  background:linear-gradient(135deg,var(--cyan),var(--purple));
  padding:13px 21px;
  border-radius:10px;
  color:white;
  font-weight:900;
  box-shadow:0 0 26px rgba(180,60,255,.28);
}

.outline-btn{
  display:inline-block;
  border:1px solid rgba(255,255,255,.22);
  color:white;
  padding:13px 21px;
  border-radius:10px;
  font-weight:900;
}

/* HOME */

.hero{
  min-height:720px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  padding:70px 70px 56px;
  background:
    linear-gradient(90deg, rgba(5,9,20,.98) 0%, rgba(5,9,20,.86) 45%, rgba(5,9,20,.55) 100%),
    radial-gradient(circle at 74% 48%, rgba(54,215,255,.28), transparent 25%),
    radial-gradient(circle at 84% 52%, rgba(180,60,255,.26), transparent 27%);
}

.hero-content{
  max-width:760px;
}

.eyebrow{
  color:var(--cyan);
  font-weight:900;
  margin-bottom:16px;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:13px;
}

.hero h1{
  font-size:58px;
  line-height:1.05;
  margin-bottom:20px;
}

.hero h1 span{
  color:var(--cyan);
}

.hero-subtitle{
  color:#D7E4FF;
  font-size:18px;
  line-height:1.55;
  margin-bottom:28px;
}

.trust-line{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:13px;
  margin-bottom:30px;
}

.trust-line div{
  background:rgba(17,24,39,.72);
  padding:16px 12px;
  border-radius:16px;
  border:1px solid var(--border);
  box-shadow:inset 0 0 20px rgba(54,215,255,.03);
}

.trust-line strong{
  display:block;
  color:var(--cyan);
  margin-bottom:6px;
  font-size:13px;
}

.trust-line span{
  color:var(--muted);
  font-size:11px;
  line-height:1.3;
}

.price-row{
  display:flex;
  gap:18px;
  margin-bottom:28px;
}

.price-card{
  background:rgba(17,24,39,.82);
  padding:24px;
  border-radius:18px;
  min-width:205px;
  border:1px solid var(--border);
}

.price-card h3{
  color:var(--muted);
  margin-bottom:8px;
  font-size:17px;
}

.price-card h2{
  font-size:40px;
  margin-bottom:8px;
}

.best{
  border-color:var(--cyan);
  position:relative;
  box-shadow:0 0 28px rgba(54,215,255,.18);
}

.badge,
.page-badge{
  position:absolute;
  top:-13px;
  right:14px;
  background:linear-gradient(135deg,var(--cyan),var(--purple));
  padding:7px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}

.hero-buttons{
  display:flex;
  gap:15px;
  margin-bottom:18px;
}

.notice-box,
.info-box{
  background:rgba(17,24,39,.78);
  border:1px solid rgba(54,215,255,.18);
  border-left:4px solid var(--cyan);
  padding:18px 20px;
  border-radius:16px;
  color:#D7E4FF;
  line-height:1.55;
}

.hero-visual{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.glow-card{
  width:430px;
  height:430px;
  border-radius:42px;
  background:
    radial-gradient(circle at 50% 50%, rgba(54,215,255,.24), transparent 44%),
    rgba(17,24,39,.90);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 100px rgba(54,215,255,.24);
}

.glow-card img{
  width:300px;
  border-radius:50%;
}

.featured,
.features{
  padding:45px 70px;
}

.section-title h2{
  font-size:32px;
  margin-bottom:8px;
}

.section-title p{
  color:var(--muted);
  margin-bottom:24px;
}

.featured-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.game-preview,
.features div{
  background:linear-gradient(180deg, rgba(17,24,39,.92), rgba(10,16,30,.92));
  border:1px solid var(--border);
  border-radius:18px;
  padding:24px;
  box-shadow:0 0 22px rgba(54,215,255,.04);
}

.game-preview{
  min-height:115px;
  display:flex;
  align-items:end;
  font-weight:900;
}

.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.features h3{
  margin-bottom:10px;
}

.features p{
  color:var(--muted);
}

/* INFO PAGES */

.info-page{
  padding:58px 70px;
  max-width:1280px;
  margin:0 auto;
}

.info-page h1{
  font-size:48px;
  line-height:1.05;
  text-align:center;
  margin-bottom:14px;
}

.info-page > .eyebrow,
.info-page > .page-subtitle{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.page-subtitle{
  color:var(--muted);
  font-size:18px;
  max-width:760px;
  line-height:1.55;
  margin-bottom:34px;
}

.pricing-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  max-width:900px;
  margin:0 auto 32px;
}

.big-price-card{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(10,16,30,.96));
  border:1px solid var(--border);
  border-radius:24px;
  padding:34px;
  position:relative;
  box-shadow:0 0 26px rgba(54,215,255,.06);
}

.big-price-card h2{
  font-size:25px;
  color:var(--cyan);
  margin-bottom:10px;
}

.big-price-card h3{
  font-size:56px;
  margin-bottom:10px;
}

.big-price-card p,
.info-box p,
.policy-grid p,
.steps-grid p,
.contact-card p{
  color:var(--muted);
  line-height:1.6;
}

.big-price-card ul{
  margin:24px 0;
  padding-left:20px;
  color:#E6EEFF;
  line-height:1.95;
}

.best-card{
  border-color:var(--purple);
  box-shadow:0 0 38px rgba(180,60,255,.20);
}

.steps-grid,
.policy-grid,
.stats-grid,
.contact-grid{
  display:grid;
  gap:20px;
  margin-top:30px;
}

.steps-grid{
  grid-template-columns:repeat(3,1fr);
}

.steps-grid div,
.policy-grid div,
.stats-grid div,
.contact-card{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(10,16,30,.96));
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px;
  box-shadow:0 0 24px rgba(54,215,255,.04);
}

.steps-grid strong{
  display:inline-flex;
  width:38px;
  height:38px;
  border-radius:12px;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--cyan),var(--purple));
  margin-bottom:16px;
  font-weight:900;
}

.policy-grid{
  grid-template-columns:repeat(3,1fr);
}

.policy-grid h3,
.steps-grid h3{
  margin-bottom:10px;
  color:white;
}

.stats-grid{
  grid-template-columns:repeat(4,1fr);
}

.stats-grid div{
  text-align:center;
}

.stats-grid h2{
  color:var(--cyan);
  font-size:36px;
  margin-bottom:8px;
}

.community-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}

.community-links a,
.contact-card span{
  display:inline-block;
  margin-top:14px;
  color:var(--cyan);
  font-weight:900;
}

.contact-grid{
  grid-template-columns:repeat(2,1fr);
}

.contact-card{
  display:block;
}

.contact-card h2{
  margin-bottom:10px;
}

/* GAMES */

.catalog-page{
  padding:34px 48px;
}

.catalog-header{
  margin-bottom:26px;
}

.catalog-header h1{
  font-size:42px;
  margin-bottom:8px;
}

.catalog-header p{
  color:var(--muted);
  margin-bottom:18px;
}

.catalog-controls{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

.catalog-controls input,
.catalog-controls select{
  padding:13px 16px;
  border-radius:12px;
  border:1px solid rgba(54,215,255,.25);
  background:var(--panel);
  color:white;
  font-size:14px;
  outline:none;
}

.catalog-controls input{
  width:100%;
  max-width:500px;
}

.catalog-controls select{
  min-width:175px;
  cursor:pointer;
}

.coming-soon-section,
.featured-section,
.all-games-section{
  margin-top:36px;
}

.coming-soon-section h2,
.featured-section h2,
.all-games-section h2{
  font-size:25px;
  margin-bottom:16px;
}

.catalog-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}

.catalog-card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  transition:.2s ease;
}

.catalog-card:hover{
  transform:translateY(-3px);
  border-color:rgba(54,215,255,.35);
  box-shadow:0 0 18px rgba(54,215,255,.10);
}

.coming-soon-card{
  border-color:rgba(180,60,255,.38);
}

.cover-wrap{
  height:165px;
  overflow:hidden;
  background:#070B14;
  position:relative;
}

.cover-wrap img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.coming-badge{
  position:absolute;
  top:7px;
  left:7px;
  background:linear-gradient(135deg,var(--cyan),var(--purple));
  color:white;
  padding:4px 7px;
  border-radius:999px;
  font-size:8px;
  font-weight:900;
}

.catalog-info{
  padding:10px;
}

.catalog-info h3{
  font-size:14px;
  line-height:1.25;
  margin-bottom:8px;
  min-height:36px;
}

.genre-tags{
  display:flex;
  flex-wrap:wrap;
  gap:5px;
  margin-bottom:8px;
}

.genre-tags span{
  font-size:10px;
  padding:4px 6px;
  border-radius:999px;
  background:rgba(54,215,255,.10);
  color:var(--cyan);
}

.release-date{
  font-size:12px;
  color:var(--muted);
  margin-bottom:9px;
}

.days-left{
  color:var(--cyan);
  background:rgba(54,215,255,.10);
  border:1px solid rgba(54,215,255,.20);
  padding:7px 8px;
  border-radius:8px;
  font-size:12px;
  font-weight:900;
  text-align:center;
  margin-top:8px;
}

.availability{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.availability div{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:6px;
}

.availability span{
  font-size:12px;
  color:var(--muted);
}

.availability strong{
  font-size:11px;
  padding:5px 8px;
  border-radius:999px;
}

.available{
  color:var(--green);
  background:rgba(56,248,166,.12);
}

.unavailable{
  color:var(--red);
  background:rgba(255,95,122,.12);
}

.rent-card-btn{
  display:block;
  margin-top:10px;
  text-align:center;
  background:linear-gradient(135deg,var(--cyan),var(--purple));
  color:white;
  font-size:11px;
  font-weight:900;
  padding:8px 7px;
  border-radius:8px;
}

footer{
  padding:35px;
  text-align:center;
  color:var(--muted);
  border-top:1px solid var(--border);
}

/* RESPONSIVE */

@media(max-width:1400px){
  .catalog-grid{
    grid-template-columns:repeat(5,1fr);
  }
}

@media(max-width:1100px){
  .hero{
    flex-direction:column;
    text-align:center;
  }

  .trust-line{
    grid-template-columns:repeat(3,1fr);
  }

  .price-row,
  .hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
  }

  .steps-grid,
  .policy-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .catalog-grid{
    grid-template-columns:repeat(4,1fr);
  }
}

@media(max-width:800px){
  .navbar{
    flex-direction:column;
    padding:20px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero,
  .info-page{
    padding:42px 20px;
  }

  .hero h1,
  .info-page h1{
    font-size:38px;
  }

  .hero-subtitle,
  .page-subtitle{
    font-size:16px;
  }

  .trust-line{
    grid-template-columns:repeat(2,1fr);
  }

  .glow-card{
    width:300px;
    height:300px;
  }

  .glow-card img{
    width:210px;
  }

  .featured,
  .features{
    padding:35px 20px;
  }

  .featured-grid,
  .features,
  .pricing-cards,
  .steps-grid,
  .policy-grid,
  .stats-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .catalog-page{
    padding:28px 16px;
  }

  .catalog-controls{
    flex-direction:column;
    align-items:stretch;
  }

  .catalog-controls input,
  .catalog-controls select{
    width:100%;
    max-width:100%;
  }

  .catalog-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:600px){
  .catalog-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cover-wrap{
    height:140px;
  }
}/* VISUAL HOW IT WORKS PAGE */

.visual-page{
  padding:60px 70px;
  max-width:1280px;
  margin:0 auto;
}

.visual-page h1{
  font-size:52px;
  text-align:center;
  margin-bottom:14px;
}

.visual-page > .eyebrow,
.visual-page > .page-subtitle{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.visual-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:36px;
}

.visual-step{
  min-height:300px;
  background:
    linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  padding:22px;
  position:relative;
  overflow:hidden;
  box-shadow:0 0 28px rgba(54,215,255,.05);
}

.visual-step::before{
  content:"";
  position:absolute;
  inset:auto -40px -60px auto;
  width:170px;
  height:170px;
  background:radial-gradient(circle, rgba(54,215,255,.18), transparent 70%);
}

.step-number{
  width:36px;
  height:36px;
  border-radius:11px;
  background:linear-gradient(135deg,#36D7FF,#B43CFF);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  margin-bottom:14px;
}

.step-icon{
  font-size:46px;
  margin-bottom:16px;
}

.visual-step h3{
  font-size:20px;
  margin-bottom:10px;
}

.visual-step p{
  color:#B8C2D6;
  line-height:1.55;
  margin-bottom:18px;
}

.mini-plan-row,
.mini-game-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.mini-plan-row span,
.mini-game-row span{
  background:rgba(54,215,255,.10);
  border:1px solid rgba(54,215,255,.18);
  color:#36D7FF;
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}

.paypal-box,
.receipt-box{
  background:linear-gradient(135deg,rgba(54,215,255,.18),rgba(180,60,255,.18));
  border:1px solid rgba(54,215,255,.22);
  border-radius:14px;
  padding:18px;
  font-size:22px;
  font-weight:900;
  color:white;
  text-align:center;
}

.qr-box{
  width:105px;
  height:105px;
  background:white;
  border-radius:10px;
  padding:10px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}

.qr-box div{
  background:#07101f;
  border-radius:5px;
}

.download-bar{
  height:18px;
  background:#081226;
  border-radius:999px;
  border:1px solid rgba(54,215,255,.20);
  overflow:hidden;
}

.download-bar span{
  display:block;
  width:78%;
  height:100%;
  background:linear-gradient(135deg,#36D7FF,#B43CFF);
}

.swap-visual-box{
  margin-top:26px;
  background:linear-gradient(90deg,rgba(17,24,39,.96),rgba(8,14,28,.96));
  border:1px solid rgba(54,215,255,.25);
  border-left:5px solid #36D7FF;
  border-radius:22px;
  padding:28px;
  display:flex;
  gap:22px;
  align-items:center;
}

.swap-icon{
  font-size:64px;
}

.swap-visual-box h2{
  margin-bottom:10px;
}

.swap-visual-box p{
  color:#B8C2D6;
  line-height:1.65;
}

@media(max-width:1000px){
  .visual-steps{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:700px){
  .visual-page{
    padding:42px 18px;
  }

  .visual-page h1{
    font-size:38px;
  }

  .visual-steps{
    grid-template-columns:1fr;
  }

  .swap-visual-box{
    flex-direction:column;
    align-items:flex-start;
  }
}/* HOW IT WORKS VISUAL PAGE */

.how-page{
  padding:60px 42px;
  max-width:1500px;
  margin:0 auto;
}

.how-page h1{
  font-size:52px;
  text-align:center;
  margin-bottom:14px;
}

.how-page > .eyebrow,
.how-page > .page-subtitle{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.how-visual-list{
  display:flex;
  flex-direction:column;
  gap:34px;
  margin-top:40px;
}

.how-visual-card{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  overflow:hidden;
  display:grid;
  grid-template-columns:260px 1fr;
  box-shadow:0 0 30px rgba(54,215,255,.06);
}

.how-visual-card:nth-child(even){
  grid-template-columns:1fr 260px;
}

.how-visual-card:nth-child(even) .how-text{
  order:2;
}

.how-visual-card:nth-child(even) img{
  order:1;
}

.how-text{
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.how-text span{
  display:inline-block;
  width:max-content;
  background:linear-gradient(135deg,#36D7FF,#B43CFF);
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:16px;
}

.how-text h2{
  font-size:26px;
  line-height:1.15;
  margin-bottom:12px;
}

.how-text p{
  color:#B8C2D6;
  line-height:1.65;
  font-size:15px;
}

.how-visual-card img{
  width:100%;
  height:100%;
  max-height:560px;
  object-fit:contain;
  display:block;
  background:#050814;
  padding:12px;
}

.swap-visual-box{
  margin-top:36px;
  background:linear-gradient(90deg,rgba(17,24,39,.96),rgba(8,14,28,.96));
  border:1px solid rgba(54,215,255,.25);
  border-left:5px solid #36D7FF;
  border-radius:22px;
  padding:28px;
  display:flex;
  gap:22px;
  align-items:center;
}

.swap-icon{
  font-size:64px;
}

.swap-visual-box h2{
  margin-bottom:10px;
}

.swap-visual-box p{
  color:#B8C2D6;
  line-height:1.65;
}

@media(max-width:1100px){
  .how-visual-card,
  .how-visual-card:nth-child(even){
    grid-template-columns:1fr;
  }

  .how-visual-card:nth-child(even) .how-text,
  .how-visual-card:nth-child(even) img{
    order:initial;
  }

  .how-visual-card img{
    max-height:none;
  }
}

@media(max-width:700px){
  .how-page{
    padding:42px 16px;
  }

  .how-page h1{
    font-size:36px;
  }

  .how-text{
    padding:22px;
  }

  .how-text h2{
    font-size:24px;
  }

  .how-text p{
    font-size:15px;
  }

  .how-visual-card img{
    padding:8px;
  }

  .swap-visual-box{
    flex-direction:column;
    align-items:flex-start;
  }
}/* SIMPLE HOW IT WORKS PAGE */

.how-page{
  padding:60px 24px 30px;
  max-width:1500px;
  margin:0 auto;
}

.how-page h1{
  font-size:52px;
  text-align:center;
  margin-bottom:14px;
}

.how-page > .eyebrow,
.how-page > .page-subtitle{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.master-visual{
  margin-top:38px;
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 0 35px rgba(54,215,255,.10);
}

.master-visual img{
  width:100%;
  height:auto;
  display:block;
}

.faq-section{
  max-width:1200px;
  margin:70px auto 0;
  padding:0 24px;
}

.faq-section h2{
  text-align:center;
  font-size:36px;
  margin-bottom:28px;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.faq-card{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  padding:24px;
  box-shadow:0 0 25px rgba(54,215,255,.05);
}

.faq-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.faq-card p{
  color:#B8C2D6;
  line-height:1.65;
  font-size:15px;
}

.how-cta{
  text-align:center;
  padding:70px 24px 80px;
}

.how-cta h2{
  font-size:42px;
  margin-bottom:12px;
}

.how-cta p{
  color:#B8C2D6;
  margin:0 auto 26px;
  max-width:720px;
  line-height:1.6;
  font-size:17px;
}

@media(max-width:1000px){
  .faq-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .how-page h1{
    font-size:42px;
  }
}

@media(max-width:700px){
  .how-page{
    padding:42px 14px 20px;
  }

  .how-page h1{
    font-size:34px;
  }

  .faq-section{
    padding:0 14px;
    margin-top:45px;
  }

  .faq-grid{
    grid-template-columns:1fr;
  }

  .faq-section h2{
    font-size:30px;
  }

  .how-cta h2{
    font-size:32px;
  }
}/* CLEAN POLICIES PAGE */

.policy-page{
  padding:70px 24px 80px;
  max-width:1250px;
  margin:0 auto;
}

.policy-page h1{
  font-size:52px;
  text-align:center;
  margin-bottom:14px;
}

.policy-page > .eyebrow,
.policy-page > .page-subtitle{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.policy-clean-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:44px;
}

.policy-clean-card{
  min-height:245px;
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:30px;
  display:flex;
  gap:22px;
  align-items:flex-start;
  box-shadow:0 0 28px rgba(54,215,255,.05);
}

.policy-icon{
  width:74px;
  height:74px;
  min-width:74px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  font-weight:900;
  border:2px solid currentColor;
}

.policy-icon.refund{ color:#B43CFF; background:rgba(180,60,255,.10); }
.policy-icon.delivery{ color:#38f8a6; background:rgba(56,248,166,.10); }
.policy-icon.rules{ color:#36D7FF; background:rgba(54,215,255,.10); }
.policy-icon.swaps{ color:#B43CFF; background:rgba(180,60,255,.10); }
.policy-icon.payment{ color:#FFD84D; background:rgba(255,216,77,.10); }
.policy-icon.promise{ color:#FF4FA3; background:rgba(255,79,163,.10); }

.policy-clean-card h3{
  font-size:24px;
  margin-bottom:16px;
}

.policy-clean-card h3::after{
  content:"";
  display:block;
  width:48px;
  height:3px;
  border-radius:999px;
  margin-top:12px;
  background:linear-gradient(135deg,#36D7FF,#B43CFF);
}

.policy-clean-card p{
  color:#B8C2D6;
  line-height:1.7;
  font-size:16px;
}

@media(max-width:1050px){
  .policy-clean-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:700px){
  .policy-page{
    padding:44px 16px 60px;
  }

  .policy-page h1{
    font-size:36px;
  }

  .policy-clean-grid{
    grid-template-columns:1fr;
  }

  .policy-clean-card{
    min-height:auto;
    padding:24px;
  }
}/* TRUSTED ABOUT PAGE */

.about-page{
  padding:70px 24px 80px;
  max-width:1250px;
  margin:0 auto;
}

.about-page h1{
  font-size:52px;
  text-align:center;
  margin-bottom:14px;
}

.about-page > .eyebrow,
.about-page > .page-subtitle{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.about-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:40px;
}

.about-stats div{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  padding:26px;
  text-align:center;
}

.about-stats h2{
  color:#36D7FF;
  font-size:38px;
  margin-bottom:8px;
}

.about-stats p{
  color:white;
}

.trust-badges{
  margin:26px 0;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}

.trust-badges span{
  background:rgba(54,215,255,.10);
  border:1px solid rgba(54,215,255,.20);
  color:#36D7FF;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
}

.about-record{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(54,215,255,.25);
  border-left:5px solid #36D7FF;
  border-radius:24px;
  padding:34px;
  display:grid;
  grid-template-columns:150px 1fr;
  gap:30px;
  align-items:center;
}

.record-icon{
  font-size:90px;
  text-align:center;
}

.about-record h2{
  font-size:30px;
  margin-bottom:12px;
}

.about-record p{
  color:#B8C2D6;
  line-height:1.7;
}

.proof-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:24px;
}

.proof-row div{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:18px;
}

.proof-row strong{
  display:block;
  color:#36D7FF;
  font-size:28px;
  margin-bottom:6px;
}

.proof-row span{
  color:#B8C2D6;
}

.story-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:28px;
}

.story-card{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  padding:26px;
}

.story-card h3{
  font-size:22px;
  margin-bottom:12px;
}

.story-card p{
  color:#B8C2D6;
  line-height:1.7;
}

@media(max-width:900px){
  .about-stats,
  .story-grid,
  .proof-row{
    grid-template-columns:1fr;
  }

  .about-record{
    grid-template-columns:1fr;
    text-align:center;
  }

  .about-page h1{
    font-size:36px;
  }
}/* TRUSTED ABOUT PAGE */

.about-page{
  padding:70px 24px 80px;
  max-width:1250px;
  margin:0 auto;
}

.about-page h1{
  font-size:52px;
  text-align:center;
  margin-bottom:14px;
}

.about-page > .eyebrow,
.about-page > .page-subtitle{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.about-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:40px;
}

.about-stats div{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  padding:26px;
  text-align:center;
}

.about-stats h2{
  color:#36D7FF;
  font-size:38px;
  margin-bottom:8px;
}

.about-stats p{
  color:white;
}

.trust-badges{
  margin:26px 0 50px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}

.trust-badges span{
  background:rgba(54,215,255,.10);
  border:1px solid rgba(54,215,255,.20);
  color:#36D7FF;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
}

/* FACEBOOK REVIEW PROOF */

.reviews-proof{
  margin-top:20px;
  margin-bottom:50px;
  text-align:center;
}

.reviews-proof h2{
  font-size:38px;
  margin-bottom:12px;
}

.reviews-proof p{
  max-width:800px;
  margin:0 auto 26px;
  color:#B8C2D6;
  line-height:1.7;
}

.facebook-proof{
  max-width:520px;
  margin:0 auto 30px;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(54,215,255,.22);
  box-shadow:0 0 28px rgba(54,215,255,.08);
  background:#111827;
}

.facebook-proof img{
  width:100%;
  display:block;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:22px;
}

.review-grid img{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:white;
  box-shadow:0 0 24px rgba(54,215,255,.06);
  transition:.25s ease;
}

.review-grid img:hover{
  transform:translateY(-5px);
}

.reviews-button-wrap{
  margin-top:30px;
}

/* TRACK RECORD */

.about-record{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(54,215,255,.25);
  border-left:5px solid #36D7FF;
  border-radius:24px;
  padding:34px;
  display:grid;
  grid-template-columns:150px 1fr;
  gap:30px;
  align-items:center;
}

.record-icon{
  font-size:90px;
  text-align:center;
}

.about-record h2{
  font-size:30px;
  margin-bottom:12px;
}

.about-record p{
  color:#B8C2D6;
  line-height:1.7;
}

.proof-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:24px;
}

.proof-row div{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:18px;
}

.proof-row strong{
  display:block;
  color:#36D7FF;
  font-size:28px;
  margin-bottom:6px;
}

.proof-row span{
  color:#B8C2D6;
}

.story-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:28px;
}

.story-card{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  padding:26px;
}

.story-card h3{
  font-size:22px;
  margin-bottom:12px;
}

.story-card p{
  color:#B8C2D6;
  line-height:1.7;
}

@media(max-width:900px){
  .about-stats,
  .review-grid,
  .story-grid,
  .proof-row{
    grid-template-columns:1fr;
  }

  .about-record{
    grid-template-columns:1fr;
    text-align:center;
  }

  .about-page h1{
    font-size:36px;
  }
}/* TRUSTED CONTACT PAGE */

.contact-page{
  padding:70px 24px 80px;
  max-width:1250px;
  margin:0 auto;
}

.contact-page h1{
  font-size:52px;
  text-align:center;
  margin-bottom:14px;
}

.contact-page > .eyebrow,
.contact-page > .page-subtitle{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.contact-action-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:42px;
}

.contact-action-card{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:32px;
  display:block;
  box-shadow:0 0 28px rgba(54,215,255,.06);
  transition:.25s ease;
}

.contact-action-card:hover{
  transform:translateY(-5px);
  border-color:rgba(54,215,255,.35);
}

.contact-icon{
  font-size:42px;
  margin-bottom:16px;
}

.contact-action-card h2{
  font-size:28px;
  margin-bottom:10px;
}

.contact-action-card p{
  color:#B8C2D6;
  line-height:1.65;
  margin-bottom:16px;
}

.contact-action-card span{
  display:inline-block;
  color:#36D7FF;
  font-weight:900;
}

.contact-trust-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:28px;
}

.contact-trust-strip div{
  background:rgba(54,215,255,.08);
  border:1px solid rgba(54,215,255,.18);
  border-radius:18px;
  padding:20px;
  text-align:center;
}

.contact-trust-strip strong{
  display:block;
  color:#36D7FF;
  font-size:30px;
  margin-bottom:6px;
}

.contact-trust-strip span{
  color:#B8C2D6;
}

.contact-process{
  margin-top:30px;
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:30px;
  text-align:center;
}

.contact-process h2{
  margin-bottom:20px;
}

.process-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.process-row div{
  background:rgba(180,60,255,.12);
  border:1px solid rgba(180,60,255,.22);
  color:white;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
}

.process-row span{
  color:#36D7FF;
  font-weight:900;
}

.contact-note-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:24px;
}

.contact-note{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-left:4px solid #36D7FF;
  border-radius:20px;
  padding:24px;
}

.contact-note h3{
  font-size:22px;
  margin-bottom:10px;
}

.contact-note p{
  color:#B8C2D6;
  line-height:1.65;
}

@media(max-width:850px){
  .contact-action-grid,
  .contact-trust-strip,
  .contact-note-grid{
    grid-template-columns:1fr;
  }

  .contact-page h1{
    font-size:36px;
  }
}/* CONTACT PAGE - JUNE DIGITALS GLOBAL */

.contact-page{
  padding:70px 24px 80px;
  max-width:1250px;
  margin:0 auto;
}

.contact-page h1{
  font-size:52px;
  text-align:center;
  margin-bottom:14px;
}

.contact-page > .eyebrow,
.contact-page > .page-subtitle{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.contact-action-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:42px;
}

.contact-action-card{
  min-height:280px;
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:32px;
  display:block;
  box-shadow:0 0 28px rgba(54,215,255,.06);
  transition:.25s ease;
}

.contact-action-card:hover{
  transform:translateY(-5px);
  border-color:rgba(54,215,255,.35);
}

.contact-icon{
  width:70px;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  overflow:hidden;
}

.contact-icon img{
  width:60px;
  height:60px;
  object-fit:contain;
  display:block;
}

.contact-action-card h2{
  font-size:28px;
  margin-bottom:10px;
}

.contact-action-card p{
  color:#B8C2D6;
  line-height:1.65;
  margin-bottom:16px;
}

.contact-action-card span{
  display:inline-block;
  color:#36D7FF;
  font-weight:900;
}

.contact-trust-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:28px;
}

.contact-trust-strip div{
  background:rgba(54,215,255,.08);
  border:1px solid rgba(54,215,255,.18);
  border-radius:18px;
  padding:20px;
  text-align:center;
}

.contact-trust-strip strong{
  display:block;
  color:#36D7FF;
  font-size:30px;
  margin-bottom:6px;
}

.contact-trust-strip span{
  color:#B8C2D6;
}

.contact-process{
  margin-top:30px;
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:30px;
  text-align:center;
}

.contact-process h2{
  margin-bottom:20px;
}

.process-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.process-row div{
  background:rgba(180,60,255,.12);
  border:1px solid rgba(180,60,255,.22);
  color:white;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
}

.process-row span{
  color:#36D7FF;
  font-weight:900;
}

.contact-note-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:24px;
}

.contact-note{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-left:4px solid #36D7FF;
  border-radius:20px;
  padding:24px;
}

.contact-note h3{
  font-size:22px;
  margin-bottom:10px;
}

.contact-note p{
  color:#B8C2D6;
  line-height:1.65;
}

@media(max-width:850px){
  .contact-action-grid,
  .contact-trust-strip,
  .contact-note-grid{
    grid-template-columns:1fr;
  }

  .contact-page h1{
    font-size:36px;
  }
}/* HOMEPAGE REDESIGN */

.home-hero{
  max-width:1450px;
  margin:0 auto;
  padding:80px 36px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.home-copy h1{
  font-size:58px;
  line-height:1.05;
  margin-bottom:20px;
}

.home-subtitle{
  color:#B8C2D6;
  font-size:18px;
  line-height:1.65;
  max-width:720px;
  margin-bottom:26px;
}

.home-trust-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:28px;
}

.home-trust-row div{
  background:rgba(54,215,255,.08);
  border:1px solid rgba(54,215,255,.18);
  border-radius:16px;
  padding:18px;
  text-align:center;
}

.home-trust-row strong{
  display:block;
  color:#36D7FF;
  font-size:30px;
  margin-bottom:6px;
}

.home-trust-row span{
  color:#B8C2D6;
  font-size:13px;
}

.home-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.home-note{
  color:#B8C2D6;
  font-size:14px;
  line-height:1.6;
  max-width:680px;
}

.home-visual-card{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(54,215,255,.22);
  border-radius:28px;
  padding:24px;
  box-shadow:0 0 40px rgba(54,215,255,.08);
}

.visual-label{
  color:#36D7FF;
  font-weight:900;
  margin-bottom:18px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.cover-collage{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.cover-collage img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:#050814;
}

.visual-bottom{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.visual-bottom span{
  background:rgba(180,60,255,.12);
  border:1px solid rgba(180,60,255,.22);
  padding:9px 12px;
  border-radius:999px;
  color:white;
  font-weight:900;
  font-size:12px;
}

.home-proof,
.home-games,
.home-process,
.home-reviews,
.home-cta{
  max-width:1250px;
  margin:0 auto;
  padding:55px 24px;
}

.home-proof{
  display:grid;
  grid-template-columns:380px 1fr;
  gap:30px;
  align-items:center;
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(54,215,255,.20);
  border-radius:28px;
  margin-top:20px;
}

.home-proof h2,
.home-process h2,
.home-reviews h2,
.home-cta h2{
  font-size:38px;
  margin-bottom:12px;
}

.home-proof p{
  color:#B8C2D6;
  line-height:1.7;
}

.proof-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.proof-grid div{
  background:rgba(54,215,255,.08);
  border:1px solid rgba(54,215,255,.18);
  border-radius:16px;
  padding:16px;
  color:white;
  font-weight:900;
}

.home-game-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
  margin-top:24px;
}

.home-game-card{
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(8,14,28,.96));
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  overflow:hidden;
}

.home-game-card img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  display:block;
  background:#050814;
}

.home-game-card span{
  display:block;
  padding:12px;
  font-weight:900;
  font-size:13px;
}

.center-btn{
  text-align:center;
  margin-top:28px;
}

.home-process{
  text-align:center;
}

.home-review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:24px;
}

.home-review-grid img{
  width:100%;
  border-radius:18px;
  background:white;
  border:1px solid rgba(255,255,255,.12);
}

.home-cta{
  text-align:center;
}

.home-cta p{
  color:#B8C2D6;
  margin:0 auto 24px;
  max-width:700px;
  line-height:1.65;
}

@media(max-width:1100px){
  .home-hero,
  .home-proof{
    grid-template-columns:1fr;
  }

  .home-game-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:800px){
  .home-copy h1{
    font-size:38px;
  }

  .home-trust-row,
  .proof-grid,
  .home-review-grid{
    grid-template-columns:1fr;
  }

  .home-game-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .home-hero{
    padding:48px 18px;
  }
}