:root{

  --green:#25d95a;

  --green2:#8cff9d;

  --orange:#ff7a18;

  --pink:#ff3f73;

  --blue:#18c8ff;

  --dark:#020814;

  --panel:#071423;

  --panel2:#101a2a;

  --text:#ffffff;

  --muted:#cbd7e6;

  --line:rgba(255,255,255,.14);

}

*{

  box-sizing:border-box;

  margin:0;

  padding:0;

}

html{

  scroll-behavior:smooth;

}

body{

  min-height:100vh;

  font-family:"Inter",sans-serif;

  color:white;

  background:radial-gradient(circle at 18% 25%,rgba(37,217,90,.28),transparent 33%),
    radial-gradient(circle at 78% 30%,rgba(255,122,24,.22),transparent 32%),
    radial-gradient(circle at 82% 88%,rgba(112,65,255,.30),transparent 36%),
    linear-gradient(180deg,#020814,#030916 62%,#020814);

  overflow-x:hidden;

}

body:before{

  content:"";

  position:fixed;

  inset:0;

  background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);

  background-size:56px 56px;

  opacity:.45;

  pointer-events:none;

  z-index:-2;

}

button,input{

  font-family:inherit;

}

button{

  cursor:pointer;

}

.app-header{

  height:82px;

  padding:0 42px;

  display:flex;

  align-items:center;

  gap:28px;

  position:sticky;

  top:0;

  z-index:9999;

  background:rgba(2,8,20,.82);

  border-bottom:1px solid rgba(255,255,255,.09);

  backdrop-filter:blur(18px);

}

.brand{

  display:flex;

  align-items:center;

  gap:12px;

  font-size:27px;

  font-weight:900;

  letter-spacing:-1px;

  white-space:nowrap;

}

.brand-icon{

  width:45px;

  height:45px;

  display:grid;

  place-items:center;

  border-radius:50%;

  background:radial-gradient(circle,#9effad,#25d95a 50%,#0d6d2f);

  box-shadow:0 0 30px rgba(37,217,90,.55);

  font-size:26px;

}

.brand-orange{

  color:var(--orange);

}

.nav{

  margin-left:auto;

  display:flex;

  gap:24px;

  align-items:center;

}

.nav button{

  border:0;

  background:transparent;

  color:#fff;

  font-size:14px;

  font-weight:900;

  opacity:.9;

  transition:.25s;

}

.nav button:hover,
.nav button.active{

  color:var(--green2);

  transform:translateY(-2px);

}

.global-search{

  width:310px;

  height:50px;

  border-radius:999px;

  background:rgba(8,20,39,.9);

  border:1px solid rgba(255,255,255,.16);

  display:flex;

  align-items:center;

  gap:10px;

  padding:0 17px;

  position:relative;

}

.global-search input{

  flex:1;

  border:0;

  outline:0;

  background:transparent;

  color:white;

  font-size:14px;

}

.global-search input::placeholder{

  color:#aebbd0;

}

.search-results{

  display:none;

  position:absolute;

  top:58px;

  left:0;

  right:0;

  border-radius:18px;

  overflow:hidden;

  background:#071423;

  border:1px solid rgba(255,255,255,.13);

  box-shadow:0 20px 55px rgba(0,0,0,.45);

  z-index:99999;

}

.search-results.active{

  display:block;

}

.search-result-item{

  padding:13px 16px;

  font-size:14px;

  font-weight:800;

  color:#fff;

  border-bottom:1px solid rgba(255,255,255,.08);

  cursor:pointer;

}

.search-result-item:hover{

  background:rgba(37,217,90,.18);

  color:var(--green2);

}

.page{

  display:none;

  min-height:calc(100vh - 82px);

}

.page.active{

  display:block;

  animation:pageIn .42s ease both;

}

@keyframes pageIn{from{
    opacity:0;
    transform:translateY(14px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }}

.home{

  padding:54px 54px 28px;

  min-height:calc(100vh - 82px);

  position:relative;

  overflow:hidden;

}

.home-grid{

  min-height:610px;

  display:grid;

  grid-template-columns:520px 1fr;

  gap:24px;

  align-items:center;

}

.hero-badge{

  display:inline-flex;

  align-items:center;

  gap:9px;

  padding:10px 15px;

  border-radius:999px;

  color:#baffc8;

  background:rgba(37,217,90,.13);

  border:1px solid rgba(37,217,90,.36);

  font-size:14px;

  font-weight:900;

  margin-bottom:23px;

  box-shadow:0 0 32px rgba(37,217,90,.16);

}

.hero h1{

  font-size:58px;

  line-height:1.06;

  letter-spacing:-3px;

  font-weight:900;

  text-shadow:0 18px 40px rgba(0,0,0,.65);

}

.orange{

  color:var(--orange);

}

.green{

  color:var(--green);

}

.hero p{

  margin-top:22px;

  max-width:500px;

  color:#e8f1ff;

  font-size:18px;

  line-height:1.65;

  font-weight:600;

}

.hero-trust{

  margin-top:16px;

  color:var(--green2);

  font-size:15px;

  font-weight:900;

}

.hero-actions{

  margin-top:34px;

  display:flex;

  gap:16px;

  flex-wrap:wrap;

}

.primary-btn,
.game-btn,
.back-btn,
.small-btn{

  border:0;

  color:white;

  font-weight:900;

  transition:.28s ease;

}

.primary-btn{

  min-width:226px;

  height:64px;

  border-radius:20px;

  background:linear-gradient(135deg,#25d95a,#0bb946);

  font-size:17px;

  box-shadow:0 24px 55px rgba(37,217,90,.32);

}

.game-btn{

  min-width:190px;

  height:64px;

  border-radius:20px;

  background:linear-gradient(135deg,#ff7a18,#ff3f73);

  font-size:17px;

  box-shadow:0 24px 55px rgba(255,94,45,.22);

}

.primary-btn:hover,
.game-btn:hover,
.back-btn:hover,
.small-btn:hover{

  transform:translateY(-4px) scale(1.02);

}

.hero-map-area{

  min-height:600px;

  position:relative;

}

.hero-map-glow{

  position:absolute;

  inset:0;

  background:radial-gradient(circle at 38% 45%,rgba(37,217,90,.22),transparent 34%),
    radial-gradient(circle at 76% 40%,rgba(255,122,24,.24),transparent 34%),
    radial-gradient(circle at 76% 78%,rgba(140,90,255,.28),transparent 34%);

  filter:blur(65px);

}

.hero-map{

  position:absolute;

  inset:0;

  width:100%;

  height:100%;

  object-fit:contain;

  filter:drop-shadow(0 42px 72px rgba(0,0,0,.86)) brightness(.94) saturate(1.12);

  animation:floatMap 5.5s ease-in-out infinite;

}

@keyframes floatMap{0%,100%{
    transform:translateY(0) scale(1);
  }
  50%{
    transform:translateY(-12px) scale(1.015);
  }}

.fruit-pin{

  position:absolute;

  z-index:3;

  width:56px;

  height:56px;

  border-radius:50%;

  display:grid;

  place-items:center;

  background:linear-gradient(135deg,#ff7a18,#25d95a);

  border:3px solid rgba(255,255,255,.90);

  font-size:28px;

  box-shadow:0 18px 35px rgba(0,0,0,.45),0 0 25px rgba(37,217,90,.25);

  animation:pulsePin 2.2s ease-in-out infinite;

}

.pin-a{

  left:25%;

  top:43%;

}

.pin-b{

  left:51%;

  top:47%;

  animation-delay:.3s;

}

.pin-c{

  left:69%;

  top:39%;

  animation-delay:.6s;

}

.pin-d{

  left:78%;

  top:62%;

  animation-delay:.9s;

}

@keyframes pulsePin{0%,100%{transform:scale(1);}
  50%{transform:scale(1.14);}}

.route{

  position:absolute;

  border-top:2px dashed rgba(255,197,86,.68);

  border-radius:50%;

  z-index:2;

  opacity:.78;

}

.route.r1{

  width:330px;

  height:120px;

  left:30%;

  top:45%;

  transform:rotate(-16deg);

}

.route.r2{

  width:430px;

  height:145px;

  left:46%;

  top:55%;

  transform:rotate(21deg);

}

.route.r3{

  width:360px;

  height:110px;

  left:53%;

  top:36%;

  transform:rotate(-9deg);

}

.stats-dock{

  width:min(980px,92vw);

  margin:-14px auto 0;

  display:grid;

  grid-template-columns:repeat(5,1fr);

  border-radius:24px;

  overflow:hidden;

  background:rgba(8,18,35,.88);

  border:1px solid rgba(255,255,255,.14);

  box-shadow:0 25px 70px rgba(0,0,0,.42);

  backdrop-filter:blur(16px);

}

.stat{

  min-height:88px;

  padding:18px;

  display:flex;

  align-items:center;

  justify-content:center;

  gap:14px;

  border-right:1px solid rgba(255,255,255,.10);

}

.stat:last-child{

  border-right:0;

}

.stat-icon{

  font-size:32px;

}

.stat strong{

  display:block;

  font-size:22px;

  line-height:1;

}

.stat span{

  display:block;

  margin-top:6px;

  color:#cbd8e8;

  font-size:12px;

  font-weight:800;

}

.world{

  padding:24px;

}

.page-top{

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:16px;

  margin-bottom:18px;

}

.back-btn{

  height:46px;

  padding:0 18px;

  border-radius:15px;

  background:linear-gradient(135deg,#25d95a,#0bb946);

  box-shadow:0 15px 34px rgba(37,217,90,.22);

}

.page-heading h2{

  font-size:30px;

  letter-spacing:-1px;

  font-weight:900;

}

.page-heading p{

  margin-top:6px;

  color:#cbd8e8;

  font-size:14px;

  font-weight:700;

}

.world-layout{

  display:grid;

  grid-template-columns:1fr 350px;

  gap:20px;

}

.world-map-card,
.continent-map-card,
.country-card,
.story-card{

  border-radius:28px;

  background:radial-gradient(circle at 22% 18%,rgba(37,217,90,.13),transparent 30%),
    radial-gradient(circle at 88% 30%,rgba(255,122,24,.13),transparent 32%),
    linear-gradient(135deg,rgba(9,20,35,.97),rgba(4,10,20,.98));

  border:1px solid rgba(255,255,255,.14);

  box-shadow:0 32px 85px rgba(0,0,0,.50);

  overflow:hidden;

}

.world-map-card{

  position:relative;

}

.world-map-card img{

  opacity:.96;

  filter:brightness(.92) contrast(1.08) saturate(1.08);

}

.world-note{

  position:absolute;

  left:24px;

  bottom:24px;

  width:min(430px,calc(100% - 48px));

  padding:18px;

  border-radius:20px;

  background:rgba(3,10,22,.72);

  border:1px solid rgba(255,255,255,.14);

  backdrop-filter:blur(12px);

}

.world-note h3{

  margin-bottom:7px;

}

.world-note p{

  color:#d5e0ef;

  font-size:13px;

  line-height:1.55;

  font-weight:600;

}

.side-panel{

  min-height:670px;

  padding:20px;

  border-radius:28px;

  background:linear-gradient(180deg,rgba(15,26,43,.96),rgba(5,11,20,.98));

  border:1px solid rgba(255,255,255,.14);

  box-shadow:0 32px 85px rgba(0,0,0,.45);

}

.panel-title{

  margin-bottom:14px;

}

.panel-title h3{

  font-size:22px;

  font-weight:900;

}

.panel-title p{

  margin-top:5px;

  color:#bfcadb;

  font-size:13px;

  font-weight:700;

}

.side-search{

  height:46px;

  border-radius:15px;

  border:1px solid rgba(255,255,255,.12);

  background:rgba(255,255,255,.06);

  display:flex;

  align-items:center;

  padding:0 14px;

  margin-bottom:15px;

}

.side-search input{

  width:100%;

  border:0;

  outline:0;

  color:white;

  background:transparent;

}

.continent-list,
.country-list{

  display:grid;

  gap:11px;

}

.continent-btn,
.country-btn{

  width:100%;

  min-height:70px;

  padding:13px;

  border-radius:19px;

  display:flex;

  align-items:center;

  gap:13px;

  text-align:left;

  color:white;

  border:1px solid rgba(255,255,255,.12);

  background:rgba(255,255,255,.055);

  transition:.28s;

}

.continent-btn:hover,
.country-btn:hover{

  transform:translateX(6px) translateY(-2px);

  border-color:rgba(37,217,90,.55);

  background:linear-gradient(135deg,rgba(37,217,90,.18),rgba(255,255,255,.06));

  box-shadow:0 18px 36px rgba(0,0,0,.32),0 0 20px rgba(37,217,90,.18);

}

.continent-emoji,
.country-flag{

  width:42px;

  height:42px;

  border-radius:15px;

  display:grid;

  place-items:center;

  background:rgba(255,255,255,.09);

  font-size:24px;

  flex:0 0 auto;

}

.continent-btn strong,
.country-btn strong{

  display:block;

  font-size:15px;

}

.continent-btn span,
.country-btn span{

  display:block;

  margin-top:4px;

  color:#cfd9e8;

  font-size:12px;

  font-weight:800;

}

.continent-map-card{

  position:relative;

}

.continent-map-wrap{

  border:1px solid rgba(255,255,255,.12);

}

.continent-map-wrap img{

  opacity:.96;

  filter:brightness(.95) contrast(1.05) saturate(1.08);

}

.climate-layer{

  position:absolute;

  inset:0;

  background:radial-gradient(circle at 48% 64%,rgba(37,217,90,.16),transparent 20%),
    radial-gradient(circle at 26% 52%,rgba(255,122,24,.16),transparent 20%),
    radial-gradient(circle at 62% 38%,rgba(24,200,255,.12),transparent 22%);

  pointer-events:none;

}

.map-marker{

  gap:6px;

}

.marker-fruit{

  width:36px;

  height:36px;

  border-radius:50%;

  display:grid;

  place-items:center;

  background:linear-gradient(135deg,#ff7a18,#25d95a);

  border:2px solid rgba(255,255,255,.85);

  box-shadow:0 12px 24px rgba(0,0,0,.45);

  animation:pulsePin 2s infinite;

}

.country-list-wrap{

  overflow:auto;

}

.country{

  padding:24px;

}

.country-layout{

  display:grid;

  grid-template-columns:320px 1fr;

  gap:20px;

}

.country-card{

  padding:24px;

  min-height:560px;

}

.country-card h1{

  font-size:42px;

  font-weight:900;

  margin:16px 0 10px;

}

.country-card p{

  color:#d7e2f1;

  line-height:1.65;

  font-weight:600;

}

.badge{

  display:inline-flex;

  margin-top:18px;

  padding:9px 13px;

  border-radius:999px;

  background:rgba(37,217,90,.14);

  color:var(--green2);

  font-weight:900;

}

.country-count{

  margin-top:16px;

  padding:14px;

  border-radius:18px;

  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.12);

  font-weight:900;

}

.fruit-grid-card{

  border-radius:28px;

  padding:24px;

  background:linear-gradient(180deg,rgba(15,26,43,.96),rgba(5,11,20,.98));

  border:1px solid rgba(255,255,255,.14);

  box-shadow:0 32px 85px rgba(0,0,0,.45);

}

.fruit-grid-card h2{

  font-size:30px;

  font-weight:900;

  margin-bottom:18px;

}

.fruit-grid{

  display:grid;

  grid-template-columns:repeat(auto-fill,minmax(170px,1fr));

  gap:16px;

}

.fruit-card{

  color:white;

  text-align:left;

  transition:.3s;

  position:relative;

}

.fruit-card:hover{

  transform:translateY(-8px);

  border-color:rgba(37,217,90,.62);

  box-shadow:0 22px 44px rgba(0,0,0,.35),0 0 25px rgba(37,217,90,.20);

}

.fruit-emoji{

  width:100%;

  height:110px;

  display:grid;

  place-items:center;

  font-size:58px;

  margin-bottom:12px;

}

.story{

  padding:24px;

}

.story-card{

  max-width:1180px;

  margin:0 auto;

  padding:22px;

}

.story-layout{

  display:grid;

  grid-template-columns:330px 1fr;

  gap:22px;

}

.story-left{

  display:grid;

  gap:14px;

  align-content:start;

}

.story-image-box{

  height:285px;

  border-radius:24px;

  display:grid;

  place-items:center;

  background:radial-gradient(circle,rgba(255,170,30,.26),rgba(255,255,255,.04) 62%),
    linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.02));

  border:1px solid rgba(255,255,255,.12);

  overflow:hidden;

}

.story-image-box img{

  width:100%;

  height:100%;

  object-fit:contain;

  padding:18px;

  background:#fff;

}

.big-emoji{

  font-size:145px;

}

.quick-box{

  padding:18px;

  border-radius:22px;

  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.12);

}

.quick-box h3{

  color:var(--green2);

  margin-bottom:14px;

}

.quick-item{

  display:flex;

  gap:10px;

  margin-bottom:12px;

  color:#dce6f4;

  line-height:1.35;

  font-size:13px;

}

.story-main-head{

  display:grid;

  grid-template-columns:1fr 170px;

  gap:16px;

  align-items:center;

  margin-bottom:14px;

}

.story-title h1{

  font-size:48px;

  font-weight:900;

  letter-spacing:-1.5px;

  background:linear-gradient(135deg,#fff,#8cff9d);

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;

}

.story-title p{

  margin-top:10px;

  padding:14px;

  border-radius:18px;

  color:#eaf3ff;

  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.10);

  line-height:1.55;

  font-weight:600;

}

.talk-btn{

  height:54px;

  border:0;

  border-radius:18px;

  background:linear-gradient(135deg,#25d95a,#0bb946);

  color:white;

  font-weight:900;

  box-shadow:0 18px 38px rgba(37,217,90,.30);

}

.talk-btn.talking{

  background:linear-gradient(135deg,#ff3f73,#d3164d);

}

.info-strip{

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:12px;

  margin-bottom:14px;

}

.info-card{

  padding:13px;

  border-radius:17px;

  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.10);

}

.info-card b{

  display:block;

  color:#ffbf72;

  font-size:13px;

  margin-bottom:6px;

}

.info-card span{

  font-size:13px;

  line-height:1.35;

}

.story-grid{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:13px;

}

.story-box{

  min-height:120px;

  padding:16px;

  border-radius:19px;

  background:rgba(255,255,255,.065);

  border:1px solid rgba(255,255,255,.12);

}

.story-box h3{

  color:var(--green2);

  margin-bottom:9px;

  font-size:18px;

}

.story-box p{

  color:#eef5ff;

  font-size:14px;

  line-height:1.6;

}

.route-flow{

  display:flex;

  flex-wrap:wrap;

  gap:7px;

  margin-top:11px;

}

.route-pill{

  padding:6px 9px;

  border-radius:999px;

  background:rgba(255,255,255,.09);

  font-size:11px;

  font-weight:900;

}

.empty-state{

  padding:24px;

  border-radius:20px;

  background:rgba(255,122,24,.10);

  border:1px solid rgba(255,122,24,.25);

  color:#fff0e5;

  line-height:1.6;

  font-weight:700;

}

.toast{

  position:fixed;

  right:24px;

  bottom:24px;

  width:min(360px,calc(100vw - 48px));

  padding:16px;

  border-radius:18px;

  background:rgba(8,18,35,.94);

  border:1px solid rgba(255,255,255,.14);

  box-shadow:0 24px 60px rgba(0,0,0,.45);

  display:none;

  z-index:999999;

  font-weight:800;

  line-height:1.5;

}

.toast.active{

  display:block;

}

@media (max-width:1100px){

  .home-grid,
  .world-layout,
  .continent-layout,
  .country-layout,
  .story-layout{

    grid-template-columns:1fr;

  }

  .hero-map-area{

    min-height:420px;

  }

  .stats-dock,
  .info-strip,
  .story-grid{

    grid-template-columns:1fr 1fr;

  }

  .side-panel{

    min-height:auto;

  }

}

@media (max-width:760px){

  .app-header{

    height:auto;

    padding:16px;

    flex-direction:column;

    align-items:flex-start;

  }

  .nav{

    margin-left:0;

    width:100%;

    justify-content:space-between;

    gap:8px;

  }

  .global-search{

    width:100%;

  }

  .home,
  .world,
  .continent,
  .country,
  .story{

    padding:16px;

  }

  .hero h1{

    font-size:39px;

  }

  .hero p{

    font-size:15px;

  }

  .hero-actions{

    flex-direction:column;

  }

  .primary-btn,
  .game-btn{

    width:100%;

  }

  .hero-map-area{

    min-height:300px;

  }

  .route{

    display:none;

  }

  .fruit-pin{

    width:42px;

    height:42px;

    font-size:22px;

  }

  .stats-dock,
  .info-strip,
  .story-grid,
  .story-main-head{

    grid-template-columns:1fr;

  }

  .world-map-card,
  .continent-map-card{

    min-height:auto;

  }

  .world-map-card img,
  .continent-map-wrap,
  .continent-map-wrap img{

    height:420px;

  }

}

.game-menu-grid{

  display:grid;

  grid-template-columns:repeat(2, minmax(280px,1fr));

  gap:22px;

}

.premium-game-card{

  min-height:260px;

  padding:28px;

  border-radius:28px;

  background:radial-gradient(circle at 20% 15%, rgba(37,217,90,.18), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(255,122,24,.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));

  border:1px solid rgba(255,255,255,.14);

  box-shadow:0 26px 70px rgba(0,0,0,.38);

  transition:.32s ease;

}

.premium-game-card:hover{

  transform:translateY(-8px) scale(1.02);

  border-color:rgba(37,217,90,.55);

  box-shadow:0 32px 80px rgba(0,0,0,.45),
    0 0 32px rgba(37,217,90,.18);

}

.premium-game-icon{

  width:70px;

  height:70px;

  border-radius:24px;

  display:grid;

  place-items:center;

  font-size:38px;

  margin-bottom:18px;

  background:rgba(255,255,255,.09);

  border:1px solid rgba(255,255,255,.12);

}

.premium-game-card h3{

  font-size:26px;

  margin-bottom:10px;

  color:#8cff9d;

}

.premium-game-card p{

  color:#dbe7f6;

  line-height:1.6;

  font-weight:600;

  margin-bottom:22px;

}

.game-stage{

  max-width:1050px;

  margin:0 auto;

  padding:28px;

  border-radius:32px;

  background:radial-gradient(circle at 10% 10%, rgba(37,217,90,.18), transparent 34%),
    radial-gradient(circle at 90% 25%, rgba(255,122,24,.16), transparent 34%),
    linear-gradient(145deg, rgba(8,18,35,.98), rgba(5,10,20,.98));

  border:1px solid rgba(255,255,255,.14);

  box-shadow:0 34px 90px rgba(0,0,0,.55);

}

.game-status-row{

  display:flex;

  justify-content:space-between;

  gap:14px;

  flex-wrap:wrap;

  margin-bottom:18px;

}

.game-pill{

  padding:12px 16px;

  border-radius:999px;

  background:rgba(255,255,255,.07);

  border:1px solid rgba(255,255,255,.12);

  color:#8cff9d;

  font-weight:900;

}

.origin-question-card{

  text-align:center;

  padding:28px;

  border-radius:28px;

  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.12);

  margin-bottom:20px;

}

.origin-fruit-big{

  font-size:92px;

  margin:16px 0;

  filter:drop-shadow(0 20px 30px rgba(0,0,0,.45));

}

.origin-options-grid{

  display:grid;

  grid-template-columns:repeat(2,1fr);

  gap:16px;

}

.option-btn{

  min-height:72px;

  padding:18px;

  border-radius:22px;

  border:1px solid rgba(255,255,255,.14);

  background:rgba(255,255,255,.07);

  color:white;

  font-size:18px;

  font-weight:900;

  transition:.25s;

}

.option-btn:hover{

  transform:translateY(-4px);

  border-color:rgba(37,217,90,.55);

  background:rgba(37,217,90,.16);

}

.option-btn.correct{

  background:linear-gradient(135deg,#25d95a,#0bb946);

}

.option-btn.wrong{

  background:linear-gradient(135deg,#ff3f73,#bd123f);

}

.catch-arena{

  position:relative;

  width:100%;

  height:470px;

  border-radius:28px;

  overflow:hidden;

  background:radial-gradient(circle at 50% 20%, rgba(24,200,255,.15), transparent 36%),
    linear-gradient(180deg,#04101d,#07192e);

  border:1px solid rgba(255,255,255,.14);

  box-shadow:inset 0 0 45px rgba(0,0,0,.60),
    0 28px 70px rgba(0,0,0,.35);

}

.catch-score-board{

  position:absolute;

  top:18px;

  left:20px;

  z-index:20;

  padding:12px 16px;

  border-radius:18px;

  background:rgba(0,0,0,.42);

  border:1px solid rgba(255,255,255,.12);

  color:#8cff9d;

  font-size:22px;

  font-weight:900;

}

.falling-fruit-premium{

  position:absolute;

  top:-70px;

  left:50%;

  font-size:62px;

  filter:drop-shadow(0 14px 18px rgba(0,0,0,.55));

  z-index:10;

}

.catch-basket-premium{

  position:absolute;

  bottom:14px;

  left:45%;

  font-size:78px;

  filter:drop-shadow(0 16px 25px rgba(0,0,0,.65));

  z-index:11;

}

.game-message{

  margin-top:16px;

  font-size:18px;

  font-weight:900;

  color:#8cff9d;

}

@media (max-width:768px){

  .game-menu-grid,
  .origin-options-grid{

    grid-template-columns:1fr;

  }

  .catch-arena{

    height:390px;

  }

}

.map-marker{

  z-index:8;

  width:22px;

  height:22px;

  display:flex;

  align-items:center;

  justify-content:center;

}

.map-marker:hover .country-dot,
.map-marker:focus .country-dot{

  transform:scale(1.45);

  background:linear-gradient(135deg,#ff7a18,#25d95a);

  box-shadow:0 0 0 7px rgba(255,122,24,.20),
    0 0 28px rgba(255,122,24,.80),
    0 10px 22px rgba(0,0,0,.65);

}

.marker-label{

  bottom:28px;

  pointer-events:none;

  backdrop-filter:blur(10px);

}

.map-marker:hover .marker-label,
.map-marker:focus .marker-label,
.map-marker:active .marker-label{

  opacity:1;

  transform:translateX(-50%) translateY(0);

}

.continent-map-wrap{

  position:relative !important;

  width:100% !important;

  background:#061323 !important;

  border-radius:24px !important;

}

.continent-map-wrap img{

  display:block !important;

  background:#061323 !important;

}

#continentMarkers{

  position:absolute !important;

  inset:0 !important;

  z-index:10 !important;

  pointer-events:none !important;

}

#continentMarkers .map-marker{

  pointer-events:auto !important;

}

.world-map-card,
.continent-map-card{

  background:rgba(7,16,34,0.88);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:28px;

  overflow:hidden;

  padding:20px;

}

.world-map-wrap,
.continent-map-wrap{

  position:relative;

  width:100%;

  overflow:hidden;

  border-radius:22px;

  background:#071327;

  display:flex;

  justify-content:center;

  align-items:center;

}

.world-map-wrap img,
.world-map-image{

  display:block;

  width:94%;

  height:auto;

  margin:0 auto;

  object-fit:contain;

  object-position:center;

}

.continent-map-wrap img,
.continent-map-image{

  display:block;

  width:100%;

  height:auto;

  margin:0 auto;

  object-fit:contain;

  object-position:center;

}

#continentMarkers,
#worldMarkers{

  position:absolute;

  inset:0;

  z-index:5;

  pointer-events:none;

}

.map-marker{

  position:absolute;

  transform:translate(-50%, -50%);

  background:transparent;

  border:none;

  padding:0;

  margin:0;

  pointer-events:auto;

  cursor:pointer;

}

.country-dot{

  width:14px;

  height:14px;

  border-radius:50%;

  display:block;

  background:#47ff8a;

  border:2px solid rgba(255,255,255,0.85);

  box-shadow:0 0 0 4px rgba(71,255,138,0.18), 0 0 14px rgba(71,255,138,0.55);

  transition:transform 0.2s ease, box-shadow 0.2s ease;

}

.map-marker:hover .country-dot{

  transform:scale(1.18);

  box-shadow:0 0 0 6px rgba(71,255,138,0.22), 0 0 18px rgba(71,255,138,0.7);

}

.marker-label{

  position:absolute;

  left:18px;

  top:50%;

  transform:translateY(-50%);

  white-space:nowrap;

  background:rgba(11,19,38,0.95);

  color:#fff;

  font-size:12px;

  font-weight:700;

  line-height:1;

  padding:8px 10px;

  border-radius:999px;

  border:1px solid rgba(255,255,255,0.08);

  opacity:0;

  visibility:hidden;

  transition:all 0.2s ease;

  box-shadow:0 8px 20px rgba(0,0,0,0.28);

}

.map-marker:hover .marker-label{

  opacity:1;

  visibility:visible;

}

.country-list-panel{

  max-height:620px;

  overflow-y:auto;

  padding-right:6px;

}

.country-btn{

  color:#fff;

  text-align:left;

  cursor:pointer;

  transition:transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;

}

.country-flag{

  display:flex;

  align-items:center;

  justify-content:center;

  flex-shrink:0;

}

@media (max-width: 1200px){

  .world-map-wrap img,
  .world-map-image{

    width:100%;

  }

}

#originGamePage .origin-fruit-big:empty{

  display:none !important;

}

#originGamePage .origin-question-card{

  padding:34px 28px !important;

}

#originGamePage #originFruit{

  display:none !important;

}

.world-note{

  display:none !important;

}

.world-map-card{

  min-height:auto !important;

  padding:16px !important;

}

.world-map-card img{

  width:100% !important;

  height:auto !important;

  object-fit:contain !important;

  object-position:center !important;

  display:block !important;

  border-radius:20px !important;

  background:#061323 !important;

}

.continent-layout{

  display:grid !important;

  grid-template-columns:minmax(0, 1fr) 340px !important;

  gap:20px !important;

  align-items:start !important;

}

.continent-map-card{

  height:calc(100vh - 190px) !important;

  min-height:560px !important;

  max-height:760px !important;

  padding:18px !important;

  overflow:hidden !important;

}

.continent-map-wrap{

  height:100% !important;

  min-height:0 !important;

  overflow:hidden !important;

}

.continent-map-wrap img{

  width:100% !important;

  height:100% !important;

  object-fit:contain !important;

  object-position:center !important;

}

.continent-layout .side-panel{

  height:calc(100vh - 190px) !important;

  min-height:560px !important;

  max-height:760px !important;

  padding:18px !important;

  display:flex !important;

  flex-direction:column !important;

  overflow:hidden !important;

}

.country-list-wrap{

  flex:1 !important;

  min-height:0 !important;

  max-height:none !important;

  overflow-y:auto !important;

  padding-right:8px !important;

}

.country-btn{

  margin-bottom:0 !important;

  grid-template-columns:44px 1fr !important;

}

.country-list-wrap::-webkit-scrollbar{

  width:8px !important;

}

.country-list-wrap::-webkit-scrollbar-track{

  background:rgba(255,255,255,.05) !important;

  border-radius:20px !important;

}

.country-list-wrap::-webkit-scrollbar-thumb{

  background:linear-gradient(180deg,#25d95a,#0bb946) !important;

  border-radius:20px !important;

}

.continent{

  padding:24px !important;

}

.premium-continent-card{

  border-radius:28px !important;

  background:radial-gradient(circle at 12% 12%, rgba(37,217,90,.16), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(255,122,24,.13), transparent 32%),
    linear-gradient(135deg, rgba(9,20,35,.98), rgba(4,10,20,.99)) !important;

  border:1px solid rgba(255,255,255,.14) !important;

  box-shadow:0 32px 85px rgba(0,0,0,.50) !important;

}

.premium-continent-card .back-btn{

  margin-bottom:22px !important;

}

.continent-card-title{

  margin-bottom:18px !important;

}

.continent-card-title h1{

  font-size:44px !important;

  line-height:1 !important;

  font-weight:900 !important;

  letter-spacing:-1.5px !important;

  margin-bottom:10px !important;

}

.continent-card-title p{

  color:#d7e2f1 !important;

  font-size:15px !important;

  line-height:1.6 !important;

  font-weight:600 !important;

}

.premium-continent-map{

  position:relative !important;

  border:1px solid rgba(255,255,255,.12) !important;

}

.premium-continent-map img{

  filter:brightness(.92) contrast(1.06) saturate(1.08) !important;

}

.premium-country-panel{

  padding:20px !important;

  border-radius:28px !important;

  background:linear-gradient(180deg,rgba(15,26,43,.97),rgba(5,11,20,.99)) !important;

  border:1px solid rgba(255,255,255,.14) !important;

  box-shadow:0 32px 85px rgba(0,0,0,.45) !important;

}

.premium-panel-title{

  display:flex !important;

  align-items:flex-start !important;

  justify-content:space-between !important;

  gap:14px !important;

  margin-bottom:16px !important;

}

.premium-panel-title h3{

  font-size:22px !important;

  font-weight:900 !important;

  margin:0 !important;

}

.premium-panel-title p{

  margin-top:5px !important;

  font-size:12px !important;

  color:#bfcadb !important;

  font-weight:700 !important;

}

.country-count-pill{

  color:#25d95a !important;

  font-size:12px !important;

  font-weight:900 !important;

  white-space:nowrap !important;

  margin-top:4px !important;

}

.premium-side-search{

  margin-bottom:12px !important;

  height:46px !important;

  border-radius:14px !important;

  background:rgba(255,255,255,.07) !important;

  border:1px solid rgba(255,255,255,.14) !important;

}

.view-all-btn{

  width:100% !important;

  height:46px !important;

  border:0 !important;

  border-radius:15px !important;

  margin-bottom:14px !important;

  background:linear-gradient(135deg,#ff7a18,#ff4c12) !important;

  color:white !important;

  font-weight:900 !important;

  box-shadow:0 16px 34px rgba(255,122,24,.22) !important;

}

.country-list{

  display:grid !important;

  gap:10px !important;

}

.country-btn{

  width:100% !important;

  margin:0 !important;

  background:rgba(255,255,255,.055) !important;

  border:1px solid rgba(255,255,255,.12) !important;

}

.country-btn:hover{

  transform:translateX(4px) !important;

  border-color:rgba(37,217,90,.55) !important;

  background:linear-gradient(135deg,rgba(37,217,90,.15),rgba(255,255,255,.06)) !important;

}

.country-btn .country-flag{

  width:38px !important;

  height:38px !important;

  border-radius:13px !important;

  font-size:13px !important;

  font-weight:900 !important;

  flex:0 0 38px !important;

}

.country-btn strong{

  line-height:1.15 !important;

}

.country-btn span{

  line-height:1.2 !important;

}

.premium-country-scroll::-webkit-scrollbar{

  width:8px !important;

}

.premium-country-scroll::-webkit-scrollbar-track{

  background:rgba(255,255,255,.05) !important;

  border-radius:20px !important;

}

.premium-country-scroll::-webkit-scrollbar-thumb{

  background:linear-gradient(180deg,#25d95a,#0bb946) !important;

  border-radius:20px !important;

}

@media (max-width:1100px){

  .premium-continent-layout{

    grid-template-columns:1fr !important;

  }

  .premium-country-scroll{

    max-height:520px !important;

  }

}

.premium-continent-layout{

  display:grid !important;

  grid-template-columns:minmax(0, 1fr) 330px !important;

  gap:22px !important;

  align-items:start !important;

}

.premium-continent-card{

  height:auto !important;

  min-height:auto !important;

  max-height:none !important;

  padding:24px !important;

  overflow:visible !important;

}

.premium-continent-map{

  width:100% !important;

  height:auto !important;

  min-height:0 !important;

  overflow:hidden !important;

  border-radius:24px !important;

  background:#071423 !important;

}

.premium-continent-map img{

  width:100% !important;

  height:auto !important;

  max-height:none !important;

  object-fit:contain !important;

  object-position:center !important;

  display:block !important;

  border-radius:22px !important;

}

.premium-country-panel{

  position:sticky !important;

  top:100px !important;

  height:calc(100vh - 130px) !important;

  min-height:560px !important;

  max-height:760px !important;

  display:flex !important;

  flex-direction:column !important;

  overflow:hidden !important;

}

.premium-country-scroll{

  flex:1 !important;

  min-height:0 !important;

  max-height:none !important;

  overflow-y:auto !important;

  padding-right:8px !important;

}

.country-btn{

  min-height:56px !important;

  padding:12px 14px !important;

  border-radius:16px !important;

  display:flex !important;

  align-items:center !important;

  gap:12px !important;

}

.country-flag{

  width:38px !important;

  height:38px !important;

  min-width:38px !important;

  border-radius:13px !important;

  font-size:13px !important;

  font-weight:900 !important;

  color:#dfffe9 !important;

  background:rgba(255,255,255,.08) !important;

}

.country-btn strong{

  font-size:14px !important;

}

.country-btn span{

  font-size:11px !important;

}

#continentMarkers{

  display:none !important;

}

@media (max-width: 900px){

  html,
  body{

    width:100% !important;

    overflow-x:hidden !important;

  }

  .app-header{

    height:auto !important;

    padding:14px 16px !important;

    flex-wrap:wrap !important;

    gap:14px !important;

  }

  .brand{

    width:100% !important;

    font-size:24px !important;

  }

  .brand-icon{

    width:42px !important;

    height:42px !important;

    font-size:24px !important;

  }

  .nav{

    width:100% !important;

    margin-left:0 !important;

    display:grid !important;

    grid-template-columns:repeat(3, 1fr) !important;

    gap:8px !important;

  }

  .nav button{

    width:100% !important;

    padding:10px 8px !important;

    border-radius:14px !important;

    background:rgba(255,255,255,.06) !important;

    font-size:13px !important;

    text-align:center !important;

  }

  .global-search{

    width:100% !important;

    height:48px !important;

  }

  .continent{

    padding:14px !important;

  }

  .continent-layout,
  .premium-continent-layout{

    display:grid !important;

    grid-template-columns:1fr !important;

    gap:16px !important;

    width:100% !important;

  }

  .premium-continent-card{

    width:100% !important;

    height:auto !important;

    min-height:0 !important;

    max-height:none !important;

    padding:18px !important;

    border-radius:24px !important;

    overflow:hidden !important;

  }

  .premium-continent-card .back-btn{

    height:42px !important;

    padding:0 14px !important;

    font-size:13px !important;

    margin-bottom:16px !important;

  }

  .continent-card-title{

    margin-bottom:16px !important;

  }

  .continent-card-title h1{

    font-size:36px !important;

    line-height:1.05 !important;

  }

  .continent-card-title p{

    font-size:14px !important;

    line-height:1.55 !important;

  }

  .premium-continent-map{

    width:100% !important;

    height:auto !important;

    min-height:0 !important;

    max-height:none !important;

    border-radius:20px !important;

    overflow:hidden !important;

  }

  .premium-continent-map img{

    width:100% !important;

    height:auto !important;

    max-height:none !important;

    object-fit:contain !important;

    object-position:center !important;

    display:block !important;

    border-radius:18px !important;

  }

  .premium-country-panel{

    position:relative !important;

    top:auto !important;

    width:100% !important;

    height:auto !important;

    min-height:0 !important;

    max-height:none !important;

    padding:16px !important;

    border-radius:24px !important;

    overflow:hidden !important;

  }

  .premium-panel-title{

    display:flex !important;

    align-items:flex-start !important;

    justify-content:space-between !important;

    gap:10px !important;

    margin-bottom:14px !important;

  }

  .premium-panel-title h3{

    font-size:21px !important;

  }

  .country-count-pill{

    font-size:11px !important;

  }

  .premium-side-search{

    width:100% !important;

    height:46px !important;

    margin-bottom:12px !important;

  }

  .premium-country-scroll{

    width:100% !important;

    max-height:430px !important;

    min-height:280px !important;

    overflow-y:auto !important;

    padding-right:8px !important;

  }

  .country-list{

    display:grid !important;

    gap:10px !important;

  }

  .country-btn{

    width:100% !important;

    min-height:58px !important;

    padding:12px !important;

    border-radius:16px !important;

  }

  .country-flag{

    width:38px !important;

    height:38px !important;

    min-width:38px !important;

    border-radius:13px !important;

    font-size:13px !important;

  }

  .country-btn strong{

    font-size:14px !important;

  }

  .country-btn span{

    font-size:11px !important;

  }

  #continentMarkers{

    display:none !important;

  }

}

#storyPage .story{

  padding:28px !important;

}

#storyPage .story-card{

  max-width:1180px !important;

  margin:0 auto !important;

  padding:26px !important;

  border-radius:32px !important;

  background:radial-gradient(circle at 12% 18%, rgba(37,217,90,.18), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(255,122,24,.16), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.98), rgba(5,10,20,.99)) !important;

  border:1px solid rgba(255,255,255,.14) !important;

  box-shadow:0 35px 95px rgba(0,0,0,.55) !important;

  overflow:hidden !important;

}

#storyPage .story-layout{

  display:grid !important;

  grid-template-columns:330px minmax(0, 1fr) !important;

  gap:24px !important;

  align-items:start !important;

}

#storyPage .story-image-box{

  position:relative !important;

}

#storyPage .story-image-box::before{

  content:"";

  position:absolute;

  width:210px;

  height:210px;

  border-radius:50%;

  background:radial-gradient(circle, rgba(255,122,24,.36), rgba(37,217,90,.14) 48%, transparent 70%);

  filter:blur(10px);

  opacity:.75;

  animation:fruitGlow 3s ease-in-out infinite;

}

#storyPage .story-image-box::after{

  content:"";

  position:absolute;

  inset:-45%;

  background:linear-gradient(115deg, transparent 38%, rgba(255,255,255,.13) 50%, transparent 62%);

  transform:translateX(-70%) rotate(8deg);

  animation:imageShine 5s ease-in-out infinite;

  pointer-events:none;

}

#storyPage .story-image-box img{

  position:relative !important;

  z-index:2 !important;

}

#storyPage .big-emoji{

  position:relative !important;

  z-index:2 !important;

  font-size:130px !important;

  filter:drop-shadow(0 24px 35px rgba(0,0,0,.45)) !important;

  animation:fruitFloat 4s ease-in-out infinite;

}

#storyPage .quick-box{

  border-radius:26px !important;

  background:radial-gradient(circle at 10% 10%, rgba(37,217,90,.13), transparent 34%),
    rgba(255,255,255,.055) !important;

  border:1px solid rgba(255,255,255,.14) !important;

  box-shadow:0 22px 45px rgba(0,0,0,.28) !important;

}

#storyPage .info-card,
#storyPage .story-box{

  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease !important;

}

#storyPage .info-card:hover,
#storyPage .story-box:hover,
#storyPage .quick-box:hover{

  transform:translateY(-4px) !important;

  border-color:rgba(37,217,90,.45) !important;

  box-shadow:0 18px 38px rgba(0,0,0,.28), 0 0 20px rgba(37,217,90,.12) !important;

}

#storyPage .talk-btn{

  background:linear-gradient(135deg,#25d95a,#0bb946) !important;

  box-shadow:0 18px 38px rgba(37,217,90,.35) !important;

  transition:.25s ease !important;

}

#storyPage .talk-btn:hover{

  transform:translateY(-3px) scale(1.03) !important;

}

@keyframes fruitFloat{0%,100%{
    transform:translateY(0) scale(1);
  }
  50%{
    transform:translateY(-10px) scale(1.025);
  }}

@keyframes fruitGlow{0%,100%{
    transform:scale(1);
    opacity:.65;
  }
  50%{
    transform:scale(1.12);
    opacity:.95;
  }}

@keyframes imageShine{0%,70%,100%{
    transform:translateX(-70%) rotate(8deg);
  }
  85%{
    transform:translateX(70%) rotate(8deg);
  }}

@media (max-width:900px){

  #storyPage .story{

    padding:16px !important;

  }

  #storyPage .story-card{

    padding:18px !important;

    border-radius:26px !important;

  }

  #storyPage .story-layout{

    grid-template-columns:1fr !important;

  }

  #storyPage .story-image-box img{

    max-width:235px !important;

    max-height:215px !important;

  }

  #storyPage .story-title h1{

    font-size:38px !important;

  }

  #storyPage .story-main-head,
  #storyPage .info-strip,
  #storyPage .story-grid{

    grid-template-columns:1fr !important;

  }

  #storyPage .talk-btn{

    width:100% !important;

  }

}

.fruit-card{

  min-height:230px !important;

  padding:14px !important;

  border-radius:24px !important;

  background:radial-gradient(circle at 50% 20%, rgba(37,217,90,.12), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.028)) !important;

  border:1px solid rgba(255,255,255,.14) !important;

  box-shadow:0 20px 50px rgba(0,0,0,.30) !important;

  overflow:hidden !important;

}

.fruit-card img{

  margin-bottom:14px !important;

  transition:.28s ease !important;

}

.fruit-card h3{

  font-size:17px !important;

  font-weight:900 !important;

  margin-bottom:8px !important;

}

.fruit-card p{

  color:#d7e3f3 !important;

  font-size:12px !important;

  line-height:1.5 !important;

  font-weight:600 !important;

}

@media (max-width:768px){

  .fruit-grid{

    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;

    gap:14px !important;

  }

  .fruit-card{

    min-height:220px !important;

    padding:12px !important;

  }

  .fruit-card img{

    height:115px !important;

  }

}

@media (max-width:480px){

  .fruit-grid{

    grid-template-columns:1fr !important;

  }

}

.fruit-card img{

  width:100% !important;

  height:125px !important;

  object-fit:contain !important;

  object-position:center !important;

  background:#f7f9f6 !important;

  border:0 !important;

  outline:0 !important;

  box-shadow:none !important;

  padding:14px !important;

  margin:0 0 14px 0 !important;

  border-radius:16px !important;

  mix-blend-mode:normal !important;

  filter:none !important;

  transform:none !important;

}

.fruit-card:hover img{

  transform:none !important;

}

#storyPage .story-image-box{

  height:285px !important;

  border-radius:24px !important;

  background:#f7f9f6 !important;

  border:0 !important;

  box-shadow:none !important;

  overflow:hidden !important;

  display:flex !important;

  align-items:center !important;

  justify-content:center !important;

}

#storyPage .story-image-box::before,
#storyPage .story-image-box::after{

  display:none !important;

  content:none !important;

}

#storyPage .story-image-box img{

  width:100% !important;

  height:100% !important;

  max-width:none !important;

  max-height:none !important;

  object-fit:contain !important;

  object-position:center !important;

  background:#f7f9f6 !important;

  border:0 !important;

  outline:0 !important;

  box-shadow:none !important;

  padding:18px !important;

  margin:0 !important;

  border-radius:0 !important;

  animation:none !important;

  transform:none !important;

  mix-blend-mode:normal !important;

  filter:none !important;

}

@media (max-width:900px){

  #storyPage .story-image-box{

    height:260px !important;

  }

  .fruit-card img{

    height:115px !important;

  }

}

.timeline-premium-page{

  max-width:1200px !important;

  margin:0 auto !important;

}

.timeline-premium-card{

  position:relative !important;

  max-width:980px !important;

  margin:0 auto !important;

  padding:34px !important;

  border-radius:34px !important;

  background:radial-gradient(circle at 14% 12%, rgba(37,217,90,.18), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(255,122,24,.16), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.98), rgba(5,10,20,.99)) !important;

  border:1px solid rgba(255,255,255,.14) !important;

  box-shadow:0 35px 95px rgba(0,0,0,.55) !important;

  overflow:hidden !important;

}

.timeline-line{

  position:absolute !important;

  left:58px !important;

  top:42px !important;

  bottom:42px !important;

  width:3px !important;

  border-radius:999px !important;

  background:linear-gradient(180deg,#25d95a,#ff7a18,#18c8ff) !important;

  box-shadow:0 0 24px rgba(37,217,90,.45) !important;

}

.timeline-item{

  position:relative !important;

  display:grid !important;

  grid-template-columns:64px 1fr !important;

  gap:18px !important;

  margin-bottom:22px !important;

  animation:timelineFadeUp .45s ease both !important;

}

.timeline-item:last-child{

  margin-bottom:0 !important;

}

.timeline-dot{

  width:50px !important;

  height:50px !important;

  border-radius:18px !important;

  display:grid !important;

  place-items:center !important;

  font-size:26px !important;

  background:linear-gradient(135deg,rgba(37,217,90,.22),rgba(255,122,24,.18)) !important;

  border:1px solid rgba(255,255,255,.18) !important;

  box-shadow:0 18px 36px rgba(0,0,0,.35),0 0 22px rgba(37,217,90,.20) !important;

  z-index:2 !important;

}

.timeline-content{

  padding:20px !important;

  border-radius:24px !important;

  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035)) !important;

  border:1px solid rgba(255,255,255,.13) !important;

  box-shadow:0 20px 50px rgba(0,0,0,.28) !important;

  transition:.28s ease !important;

}

.timeline-content:hover{

  transform:translateY(-5px) !important;

  border-color:rgba(37,217,90,.50) !important;

  box-shadow:0 24px 60px rgba(0,0,0,.34),0 0 25px rgba(37,217,90,.15) !important;

}

.timeline-year{

  display:inline-flex !important;

  padding:7px 12px !important;

  border-radius:999px !important;

  background:rgba(37,217,90,.14) !important;

  color:#8cff9d !important;

  font-size:12px !important;

  font-weight:900 !important;

  margin-bottom:10px !important;

}

.timeline-content h3{

  font-size:22px !important;

  font-weight:900 !important;

  color:#fff !important;

  margin-bottom:8px !important;

}

.timeline-content p{

  color:#dce8f7 !important;

  font-size:15px !important;

  line-height:1.65 !important;

  font-weight:600 !important;

}

@keyframes timelineFadeUp{from{
    opacity:0;
    transform:translateY(14px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }}

@media (max-width:768px){

  .timeline-premium-card{

    padding:20px !important;

  }

  .timeline-line{

    left:35px !important;

  }

  .timeline-item{

    grid-template-columns:48px 1fr !important;

    gap:12px !important;

  }

  .timeline-dot{

    width:42px !important;

    height:42px !important;

    border-radius:15px !important;

    font-size:22px !important;

  }

  .timeline-content{

    padding:16px !important;

  }

  .timeline-content h3{

    font-size:19px !important;

  }

}

.nav a{

  color:#fff;

  text-decoration:none;

  font-size:14px;

  font-weight:900;

  opacity:.9;

  transition:.25s;

}

.nav a:hover{

  color:var(--green2);

  transform:translateY(-2px);

}

.home-seo-section{

  max-width:1180px;

  margin:10px auto 60px;

  padding:0 24px 40px;

}

.home-seo-intro{

  padding:30px;

  border-radius:30px;

  background:radial-gradient(circle at 10% 12%, rgba(37,217,90,.15), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(255,122,24,.13), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.96), rgba(5,10,20,.98));

  border:1px solid rgba(255,255,255,.14);

  box-shadow:0 28px 80px rgba(0,0,0,.38);

}

.home-seo-intro h2,
.home-long-content h2{

  font-size:34px;

  font-weight:900;

  color:#fff;

  margin-bottom:14px;

  letter-spacing:-1px;

}

.home-seo-intro p,
.home-long-content p,
.home-feature-card p{

  color:#dce8f7;

  font-size:15px;

  line-height:1.8;

  font-weight:600;

}

.home-seo-intro p + p,
.home-long-content p + p{

  margin-top:14px;

}

.home-feature-grid{

  display:grid;

  grid-template-columns:repeat(3, minmax(0,1fr));

  gap:18px;

  margin-top:22px;

}

.home-feature-card{

  padding:22px;

  border-radius:24px;

  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));

  border:1px solid rgba(255,255,255,.14);

  box-shadow:0 20px 50px rgba(0,0,0,.28);

  transition:.28s ease;

}

.home-feature-card:hover{

  transform:translateY(-6px);

  border-color:rgba(37,217,90,.55);

  box-shadow:0 24px 60px rgba(0,0,0,.34),0 0 25px rgba(37,217,90,.15);

}

.feature-icon{

  width:58px;

  height:58px;

  display:grid;

  place-items:center;

  border-radius:18px;

  background:rgba(255,255,255,.08);

  border:1px solid rgba(255,255,255,.13);

  font-size:30px;

  margin-bottom:14px;

}

.home-feature-card h3{

  font-size:21px;

  color:var(--green2);

  margin-bottom:10px;

  font-weight:900;

}

.home-long-content{

  margin-top:22px;

  padding:30px;

  border-radius:30px;

  background:radial-gradient(circle at 12% 18%, rgba(37,217,90,.10), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.96), rgba(5,10,20,.98));

  border:1px solid rgba(255,255,255,.14);

  box-shadow:0 28px 80px rgba(0,0,0,.36);

}

@media (max-width:1000px){

  .home-feature-grid{

    grid-template-columns:repeat(2, minmax(0,1fr));

  }

}

@media (max-width:700px){

  .home-feature-grid{

    grid-template-columns:1fr;

  }

  .home-seo-intro h2,
  .home-long-content h2{

    font-size:26px;

  }

  .home-seo-section{

    padding:0 16px 32px;

  }

}

.section-label{

  display:inline-flex;

  padding:8px 13px;

  border-radius:999px;

  background:rgba(37,217,90,.13);

  color:var(--green2);

  border:1px solid rgba(37,217,90,.34);

  font-size:13px;

  font-weight:900;

  margin-bottom:14px;

}

.tool-flow-box{

  margin-top:22px;

  padding:28px;

  border-radius:30px;

  background:radial-gradient(circle at 10% 12%, rgba(37,217,90,.13), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.96), rgba(5,10,20,.98));

  border:1px solid rgba(255,255,255,.14);

  box-shadow:0 28px 80px rgba(0,0,0,.36);

}

.tool-flow-box h2{

  font-size:32px;

  font-weight:900;

  margin-bottom:18px;

}

.tool-flow-grid{

  display:grid;

  grid-template-columns:repeat(3, minmax(0,1fr));

  gap:16px;

}

.tool-flow-step{

  padding:18px;

  border-radius:22px;

  background:rgba(255,255,255,.055);

  border:1px solid rgba(255,255,255,.13);

}

.tool-flow-step span{

  width:38px;

  height:38px;

  display:grid;

  place-items:center;

  border-radius:50%;

  background:linear-gradient(135deg,#25d95a,#0bb946);

  color:#fff;

  font-weight:900;

  margin-bottom:12px;

}

.tool-flow-step h3{

  color:var(--green2);

  font-size:18px;

  margin-bottom:8px;

}

.tool-flow-step p{

  color:#dce8f7;

  line-height:1.65;

  font-size:14px;

  font-weight:600;

}

.home-info-layout{

  display:grid;

  grid-template-columns:repeat(2, minmax(0,1fr));

  gap:18px;

  margin-top:22px;

}

.home-info-card{

  padding:26px;

  border-radius:28px;

  background:radial-gradient(circle at 10% 10%, rgba(37,217,90,.10), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.96), rgba(5,10,20,.98));

  border:1px solid rgba(255,255,255,.14);

  box-shadow:0 22px 60px rgba(0,0,0,.32);

}

.home-info-card h2{

  font-size:26px;

  color:#fff;

  font-weight:900;

  margin-bottom:12px;

}

.home-info-card p{

  color:#dce8f7;

  font-size:15px;

  line-height:1.75;

  font-weight:600;

}

.home-info-card p + p{

  margin-top:12px;

}

.feature-list{

  display:grid;

  gap:10px;

  margin-top:10px;

  padding-left:0;

  list-style:none;

}

.feature-list li{

  padding:11px 13px;

  border-radius:15px;

  background:rgba(255,255,255,.055);

  border:1px solid rgba(255,255,255,.10);

  color:#dce8f7;

  font-weight:700;

}

.feature-list li::before{

  content:"✅ ";

  color:var(--green2);

}

@media (max-width:1000px){

  .tool-flow-grid,
  .home-info-layout{

    grid-template-columns:1fr;

  }

}

.continent-stats-row{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
  margin:18px 0;
}

.continent-stat-card{
  padding:16px;
  border-radius:20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.13);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.continent-stat-card strong{
  display:block;
  color:var(--green2);
  font-size:24px;
  font-weight:900;
  line-height:1;
}

.continent-stat-card span{
  display:block;
  margin-top:7px;
  color:#d7e2f1;
  font-size:12px;
  font-weight:800;
}

.continent-seo-section{
  max-width:1180px;
  margin:24px auto 60px;
  padding:0 20px;
}

.continent-seo-card{
  padding:28px;
  border-radius:30px;
  background:
    radial-gradient(circle at 10% 12%, rgba(37,217,90,.13), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(255,122,24,.12), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.96), rgba(5,10,20,.98));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 80px rgba(0,0,0,.36);
}

.continent-seo-card h2{
  font-size:32px;
  font-weight:900;
  color:#fff;
  margin-bottom:12px;
}

.continent-seo-card p{
  color:#dce8f7;
  font-size:15px;
  line-height:1.8;
  font-weight:600;
}

.continent-seo-card p + p{
  margin-top:12px;
}

.continent-info-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}

.continent-info-card{
  padding:22px;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 20px 50px rgba(0,0,0,.28);
}

.continent-info-card h3{
  font-size:18px;
  color:var(--green2);
  margin-bottom:10px;
  font-weight:900;
}

.continent-info-card p{
  color:#dce8f7;
  font-size:14px;
  line-height:1.7;
  font-weight:600;
}

@media(max-width:1100px){
  .continent-stats-row,
  .continent-info-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media(max-width:700px){
  .continent-stats-row,
  .continent-info-grid{
    grid-template-columns:1fr;
  }

  .continent-seo-card h2{
    font-size:26px;
  }
}

.world-seo-content{
  max-width:1180px;
  margin:34px auto 70px;
  padding:0 20px;
}

.world-content-hero{
  padding:30px;
  border-radius:32px;
  background:
    radial-gradient(circle at 10% 12%, rgba(37,217,90,.14), transparent 34%),
    radial-gradient(circle at 90% 22%, rgba(255,122,24,.13), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.97), rgba(5,10,20,.99));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 80px rgba(0,0,0,.38);
}

.world-content-hero h2,
.world-long-guide h2{
  font-size:34px;
  font-weight:900;
  color:#fff;
  margin-bottom:14px;
  letter-spacing:-1px;
}

.world-content-hero p,
.world-content-card p,
.world-long-guide p{
  color:#dce8f7;
  font-size:15px;
  line-height:1.8;
  font-weight:600;
}

.world-content-hero p + p,
.world-long-guide p + p{
  margin-top:14px;
}

.world-content-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
  margin-top:20px;
}

.world-content-card{
  padding:22px;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 20px 50px rgba(0,0,0,.28);
}

.world-content-card h3{
  font-size:18px;
  color:var(--green2);
  margin-bottom:10px;
  font-weight:900;
}

.world-long-guide{
  margin-top:22px;
  padding:32px;
  border-radius:32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(37,217,90,.10), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(255,122,24,.08), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.97), rgba(5,10,20,.99));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 80px rgba(0,0,0,.36);
}

.world-long-guide h3{
  font-size:24px;
  color:var(--green2);
  margin:26px 0 10px;
  font-weight:900;
}

@media(max-width:1100px){
  .world-content-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media(max-width:700px){
  .world-content-grid{
    grid-template-columns:1fr;
  }

  .world-content-hero h2,
  .world-long-guide h2{
    font-size:26px;
  }

  .world-long-guide{
    padding:22px;
  }
}

.world-navigation-box,
.world-faq-section{
  margin-top:22px;
  padding:30px;
  border-radius:32px;
  background:
    radial-gradient(circle at 12% 16%, rgba(37,217,90,.11), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.97), rgba(5,10,20,.99));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 80px rgba(0,0,0,.34);
}

.world-navigation-box h2,
.world-faq-section h2{
  font-size:30px;
  font-weight:900;
  margin-bottom:12px;
}

.world-navigation-box p{
  color:#dce8f7;
  line-height:1.8;
  font-weight:600;
  margin-bottom:18px;
}

.world-link-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.world-link-grid a{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.13);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  transition:.25s ease;
}

.world-link-grid a:hover{
  transform:translateY(-4px);
  border-color:rgba(37,217,90,.55);
  color:var(--green2);
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}

.faq-card{
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.13);
}

.faq-card h3{
  color:var(--green2);
  font-size:18px;
  margin-bottom:9px;
}

.faq-card p{
  color:#dce8f7;
  font-size:14px;
  line-height:1.7;
  font-weight:600;
}

@media(max-width:900px){
  .world-link-grid,
  .faq-grid{
    grid-template-columns:1fr;
  }
}

.country-hero-panel{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(320px,.8fr);
  gap:20px;
  margin-bottom:22px;
}

.country-hero-content,
.country-fruit-section,
.country-seo-card{
  padding:28px;
  border-radius:30px;
  background:
    radial-gradient(circle at 10% 12%, rgba(37,217,90,.13), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(255,122,24,.12), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.96), rgba(5,10,20,.98));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 80px rgba(0,0,0,.36);
}

.country-hero-content h2,
.country-section-heading h2,
.country-seo-card h2{
  font-size:34px;
  font-weight:900;
  color:#fff;
  margin-bottom:12px;
  letter-spacing:-1px;
}

.country-hero-content p,
.country-section-heading p,
.country-seo-card p,
.country-info-card p{
  color:#dce8f7;
  font-size:15px;
  line-height:1.75;
  font-weight:600;
}

.country-seo-card p + p{
  margin-top:12px;
}

.country-stats-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.country-stat-box{
  padding:22px;
  min-height:130px;
  border-radius:24px;
  background:rgba(255,255,255,.065);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 20px 50px rgba(0,0,0,.28);
}

.country-stat-box strong{
  display:block;
  color:var(--green2);
  font-size:26px;
  font-weight:900;
  line-height:1.15;
}

.country-stat-box span{
  display:block;
  margin-top:8px;
  color:#d7e2f1;
  font-size:13px;
  font-weight:800;
}

.country-fruit-section{
  margin-bottom:22px;
}

.country-section-heading{
  margin-bottom:18px;
}

.fruit-card-meta{
  display:grid;
  gap:6px;
  margin-top:12px;
}

.fruit-card-meta span{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  padding:6px 9px;
  border-radius:999px;
  background:rgba(37,217,90,.12);
  border:1px solid rgba(37,217,90,.24);
  color:#baffc8;
  font-size:11px;
  font-weight:800;
}

.country-seo-section{
  max-width:1180px;
  margin:0 auto 60px;
}

.country-info-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}

.country-info-card{
  padding:22px;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 20px 50px rgba(0,0,0,.28);
}

.country-info-card h3{
  font-size:18px;
  color:var(--green2);
  margin-bottom:10px;
  font-weight:900;
}

@media(max-width:1000px){
  .country-hero-panel,
  .country-info-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .country-hero-content h2,
  .country-section-heading h2,
  .country-seo-card h2{
    font-size:26px;
  }

  .country-stats-grid{
    grid-template-columns:1fr;
  }
}

.breadcrumb{
  max-width:1180px;
  margin:0 auto 18px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  color:#dce8f7;
  font-size:13px;
  font-weight:800;
}

.breadcrumb a{
  color:#8cff9d;
  text-decoration:none;
}

.breadcrumb a:hover{
  color:#fff;
}

.fruit-hero-panel{
  max-width:1180px;
  margin:0 auto 22px;
  display:grid;
  grid-template-columns:minmax(0,1.3fr) 360px;
  gap:22px;
  align-items:stretch;
}

.fruit-hero-text,
.fruit-hero-image,
.fruit-facts-card,
.fruit-summary-card,
.fruit-article-section,
.fruit-faq-section,
.related-fruits-section{
  border-radius:30px;
  background:
    radial-gradient(circle at 10% 12%, rgba(37,217,90,.13), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(255,122,24,.12), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.96), rgba(5,10,20,.98));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 80px rgba(0,0,0,.36);
}

.fruit-hero-text{
  padding:32px;
}

.fruit-hero-text h1{
  font-size:46px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-1.5px;
  color:#fff;
  margin-bottom:16px;
}

.fruit-hero-text p{
  color:#dce8f7;
  font-size:16px;
  line-height:1.75;
  font-weight:600;
}

.fruit-hero-actions{
  margin-top:22px;
}

.fruit-hero-image{
  padding:22px;
  display:grid;
  place-items:center;
  background:#f7f9f6;
}

.fruit-hero-image img{
  width:100%;
  height:300px;
  object-fit:contain;
}

.fruit-overview-grid{
  max-width:1180px;
  margin:0 auto 22px;
  display:grid;
  grid-template-columns:330px 1fr;
  gap:22px;
}

.fruit-facts-card{
  padding:24px;
}

.fruit-facts-card h2{
  font-size:24px;
  font-weight:900;
  color:#8cff9d;
  margin-bottom:16px;
}

.fruit-summary-cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.fruit-summary-card{
  padding:22px;
}

.fruit-summary-card strong{
  display:block;
  color:#ffbf72;
  font-size:13px;
  font-weight:900;
  margin-bottom:8px;
}

.fruit-summary-card span{
  color:#eaf3ff;
  font-size:14px;
  line-height:1.55;
  font-weight:700;
}

.fruit-article-section{
  max-width:1180px;
  margin:0 auto 22px;
  padding:28px;
}

.fruit-article-intro{
  margin-bottom:20px;
}

.fruit-article-intro h2,
.fruit-faq-section h2,
.related-fruits-section h2{
  font-size:32px;
  font-weight:900;
  color:#fff;
  margin-bottom:12px;
}

.fruit-article-intro p{
  color:#dce8f7;
  font-size:15px;
  line-height:1.8;
  font-weight:600;
}

.fruit-article-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}

.fruit-article-card{
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.13);
}

.fruit-article-card h3{
  font-size:20px;
  color:#8cff9d;
  font-weight:900;
  margin-bottom:10px;
}

.fruit-article-card p{
  color:#eaf3ff;
  font-size:14px;
  line-height:1.75;
  font-weight:600;
}

.fruit-faq-section,
.related-fruits-section{
  max-width:1180px;
  margin:0 auto 22px;
  padding:28px;
}

@media(max-width:1000px){
  .fruit-hero-panel,
  .fruit-overview-grid,
  .fruit-article-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .fruit-hero-text h1{
    font-size:34px;
  }

  .fruit-summary-cards{
    grid-template-columns:1fr;
  }

  .fruit-hero-image img{
    height:240px;
  }
}

.timeline-page,
.games-page{
  padding:24px;
  max-width:1240px;
  margin:0 auto;
}

.timeline-hero,
.games-hero,
.timeline-info-card,
.games-info-card{
  padding:30px;
  border-radius:32px;
  background:
    radial-gradient(circle at 10% 12%, rgba(37,217,90,.14), transparent 34%),
    radial-gradient(circle at 90% 22%, rgba(255,122,24,.12), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.97), rgba(5,10,20,.99));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 80px rgba(0,0,0,.38);
  margin-bottom:24px;
}

.timeline-hero h1,
.games-hero h1,
.timeline-info-card h2,
.games-info-card h2{
  font-size:38px;
  font-weight:900;
  color:#fff;
  margin-bottom:14px;
  letter-spacing:-1px;
}

.timeline-hero p,
.games-hero p,
.timeline-info-card p,
.games-info-card p{
  color:#dce8f7;
  font-size:15px;
  line-height:1.8;
  font-weight:600;
}

.timeline-info-card p + p,
.games-info-card p + p{
  margin-top:12px;
}

.timeline-info-grid,
.games-info-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}

.timeline-info-grid article,
.games-info-grid article{
  padding:22px;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 20px 50px rgba(0,0,0,.28);
}

.timeline-info-grid h3,
.games-info-grid h3{
  color:var(--green2);
  font-size:18px;
  margin-bottom:10px;
}

.timeline-info-grid p,
.games-info-grid p{
  color:#dce8f7;
  font-size:14px;
  line-height:1.7;
  font-weight:600;
}

.timeline-info-section,
.games-info-section{
  margin-top:24px;
}

@media(max-width:900px){
  .timeline-info-grid,
  .games-info-grid{
    grid-template-columns:1fr;
  }

  .timeline-hero h1,
  .games-hero h1{
    font-size:30px;
  }
}

.game-detail-header{
  padding:28px;
  border-radius:28px;
  background:
    radial-gradient(circle at 10% 12%, rgba(37,217,90,.13), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.96), rgba(5,10,20,.98));
  border:1px solid rgba(255,255,255,.14);
  margin-bottom:18px;
}

.game-detail-header h2{
  font-size:32px;
  font-weight:900;
  color:#fff;
  margin-bottom:12px;
}

.game-detail-header p{
  color:#dce8f7;
  font-size:15px;
  line-height:1.8;
  font-weight:600;
}

.game-detail-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-bottom:20px;
}

.game-detail-grid article{
  padding:22px;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 20px 50px rgba(0,0,0,.28);
}

.game-detail-grid h3{
  color:var(--green2);
  font-size:18px;
  margin-bottom:10px;
  font-weight:900;
}

.game-detail-grid p{
  color:#dce8f7;
  font-size:14px;
  line-height:1.7;
  font-weight:600;
}

.catch-game-demo{
  padding:28px;
  border-radius:28px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.14);
  text-align:center;
}

.catch-game-demo h3{
  color:#8cff9d;
  font-size:24px;
  font-weight:900;
  margin-bottom:16px;
}

.catch-fruit-row{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin:18px 0;
}

.catch-fruit-row span{
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.16);
  font-size:36px;
}

.catch-basket{
  max-width:420px;
  margin:18px auto;
  padding:18px;
  border-radius:22px;
  background:rgba(37,217,90,.11);
  border:1px solid rgba(37,217,90,.28);
  font-size:34px;
}

.catch-basket strong{
  display:block;
  margin-top:8px;
  color:#fff;
  font-size:15px;
}

.catch-game-demo p{
  color:#dce8f7;
  font-size:14px;
  line-height:1.7;
  font-weight:600;
}

@media(max-width:900px){
  .game-detail-grid{
    grid-template-columns:1fr;
  }
}

.premium-games-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  margin-bottom:28px;
}

.pro-game-card{
  position:relative;
  overflow:hidden;
}

.game-feature-list{
  display:grid;
  gap:8px;
  list-style:none;
  padding:0;
  margin:16px 0 22px;
}

.game-feature-list li{
  color:#dce8f7;
  font-weight:800;
  font-size:13px;
}

.game-feature-list li::before{
  content:"✅ ";
}

.game-overlay{
  position:fixed;
  inset:0;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(12px);
}

.pro-game-modal{
  position:relative;
  width:min(520px,96vw);
  max-height:92vh;
  overflow:auto;
  padding:26px;
  border-radius:28px;
  background:
    radial-gradient(circle at 12% 14%, rgba(37,217,90,.18), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(255,122,24,.14), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.98), rgba(5,10,20,.99));
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 30px 100px rgba(0,0,0,.65);
}

.game-close-btn{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#ff4d79;
  color:#fff;
  font-size:28px;
  font-weight:900;
  cursor:pointer;
}

.game-modal-head{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:20px;
}

.game-modal-head h2{
  font-size:26px;
  color:#fff;
  font-weight:900;
}

.game-modal-head p,
.game-start-screen p,
.catch-game-info p{
  color:#dce8f7;
  font-size:14px;
  line-height:1.7;
  font-weight:600;
}

.game-start-screen,
.origin-question-card,
.catch-game-info{
  padding:24px;
  border-radius:22px;
  background:rgba(255,255,255,.065);
  border:1px solid rgba(255,255,255,.14);
  margin-bottom:18px;
  text-align:center;
}

.game-start-screen h3,
.origin-question-card h3{
  color:#fff;
  font-size:24px;
  font-weight:900;
  margin-bottom:10px;
}

.origin-fruit-big{
  font-size:58px;
  margin-top:12px;
}

.game-status-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}

.game-pill{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(37,217,90,.12);
  border:1px solid rgba(37,217,90,.26);
  color:#8cff9d;
  font-weight:900;
}

.origin-options-grid{
  display:grid;
  gap:12px;
  margin-bottom:16px;
}

.option-btn{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.09);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.option-btn:hover{
  border-color:rgba(37,217,90,.55);
}

.option-btn.correct{
  background:rgba(37,217,90,.25);
  border-color:#25d95a;
}

.option-btn.wrong{
  background:rgba(255,77,121,.25);
  border-color:#ff4d79;
}

.game-message{
  min-height:22px;
  color:#8cff9d;
  font-weight:900;
  text-align:center;
}

.catch-play-area{
  position:relative;
  height:340px;
  border-radius:22px;
  overflow:hidden;
  background:linear-gradient(180deg,rgba(5,18,34,.98),rgba(4,12,24,.98));
  border:1px solid rgba(255,255,255,.14);
  margin:18px 0;
}

.catch-score{
  position:absolute;
  top:16px;
  left:16px;
  z-index:2;
  color:#8cff9d;
  font-size:18px;
  font-weight:900;
}

.falling-fruit{
  position:absolute;
  top:40px;
  left:120px;
  font-size:38px;
}

.catch-basket-player{
  position:absolute;
  bottom:18px;
  left:120px;
  font-size:48px;
}

.catch-control-row{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

@media(max-width:900px){
  .premium-games-grid{
    grid-template-columns:1fr;
  }
}

.catch-play-area{
  touch-action:none;
}

.catch-score-row{
  position:absolute;
  top:14px;
  left:14px;
  right:14px;
  z-index:3;
  display:flex;
  justify-content:space-between;
  gap:8px;
  flex-wrap:wrap;
}

.catch-score-row div{
  padding:7px 10px;
  border-radius:999px;
  background:rgba(37,217,90,.13);
  border:1px solid rgba(37,217,90,.25);
  color:#8cff9d;
  font-size:13px;
  font-weight:900;
}

.catch-message{
  text-align:center;
  color:#dce8f7;
  font-size:14px;
  line-height:1.6;
  font-weight:700;
  margin:10px 0 14px;
}

.catch-mobile-controls{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin:12px 0;
}

.catch-mobile-btn{
  padding:14px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:16px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.catch-mobile-btn:active{
  transform:scale(.97);
  background:rgba(37,217,90,.18);
}

@media(max-width:700px){
  .pro-game-modal{
    width:96vw;
    padding:20px;
  }

  .catch-play-area{
    height:300px;
  }

  .catch-score-row{
    font-size:12px;
  }
}

/* FINAL FIX - force all Asia page sections into same center width */
.continent > * {
  width: 100% !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Stop bottom SEO content from full screen stretching */
.continent-seo-section,
.continent-info-section,
.continent-extra-section,
.continent-content-section {
  width: 100% !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Make big text boxes same width */
.continent-seo-card,
.continent-info-card {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Fix lower 3-column text area */
.continent-info-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin-top: 18px !important;
}

/* Turn each lower text block into proper card */
.continent-info-grid > div,
.continent-info-grid > article,
.continent-info-grid > section {
  padding: 22px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035)) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.28) !important;
  min-width: 0 !important;
}

/* Keep first top 4 SEO cards as 4 columns */
.continent-seo-section .continent-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .continent-info-grid,
  .continent-seo-section .continent-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .continent > * {
    max-width: 100% !important;
  }

  .continent-info-grid,
  .continent-seo-section .continent-info-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Professional fruit page upgrade: kids-friendly cards, audio reader and long-form SEO content */
.fruit-story-page{
  padding:24px;
  background:
    radial-gradient(circle at 8% 4%, rgba(140,255,157,.11), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(255,191,114,.12), transparent 28%);
}

.pro-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.fruit-reader-btn,
.fruit-reader-small-btn{
  border:0;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.fruit-reader-btn:hover,
.fruit-reader-small-btn:hover{
  transform:translateY(-2px);
}

.fruit-reader-small-btn{
  min-height:48px;
  padding:0 18px;
  border-radius:16px;
  color:#102018;
  font-weight:900;
  background:linear-gradient(135deg,#fff7c2,#ffd166);
  box-shadow:0 16px 32px rgba(255,209,102,.22);
}

.fruit-reader-small-btn:disabled{
  opacity:.48;
  cursor:not-allowed;
  transform:none;
}

.reader-help-text{
  margin-top:12px!important;
  font-size:14px!important;
  color:#fff7c2!important;
}

.fruit-reading-toolbar{
  max-width:1180px;
  margin:0 auto 22px;
  padding:18px 22px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  border-radius:24px;
  background:linear-gradient(135deg,rgba(37,217,90,.18),rgba(255,122,24,.14));
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}

.fruit-reading-toolbar strong{
  display:block;
  color:#fff;
  font-size:18px;
  font-weight:900;
}

.fruit-reading-toolbar span{
  display:block;
  color:#dce8f7;
  font-size:14px;
  margin-top:4px;
  font-weight:700;
}

.reader-status{
  white-space:nowrap;
  color:#102018;
  background:#8cff9d;
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
}

.fruit-readable-content{
  max-width:100%;
}

.fruit-hero-panel{
  align-items:center;
}

.fruit-hero-text{
  min-height:360px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.fruit-hero-image{
  overflow:hidden;
  position:relative;
}

.fruit-hero-image:after{
  content:"Fruit Learning";
  position:absolute;
  bottom:18px;
  left:18px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(5,10,20,.72);
  color:#fff;
  font-size:12px;
  font-weight:900;
}

.pro-reading-block{
  position:relative;
  overflow:hidden;
}

.pro-reading-block:before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:5px;
  background:linear-gradient(180deg,#8cff9d,#ffbf72);
}

.pro-reading-block p{
  font-size:15px;
  line-height:1.85;
}

.kids-learning-box{
  margin-top:18px;
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.08);
  border:1px dashed rgba(140,255,157,.45);
}

.kids-learning-box h4{
  color:#ffbf72;
  font-size:16px;
  font-weight:900;
  margin-bottom:10px;
}

.kids-learning-box ul{
  margin:0;
  padding-left:20px;
}

.kids-learning-box li{
  color:#eef7ff;
  line-height:1.7;
  font-weight:700;
  margin-bottom:6px;
}

.fruit-faq-section p,
.faq-card p{
  color:#eaf3ff;
  line-height:1.75;
  font-weight:650;
}

.fruit-summary-card,
.fruit-facts-card,
.fruit-article-card{
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.fruit-summary-card:hover,
.fruit-facts-card:hover,
.fruit-article-card:hover{
  transform:translateY(-3px);
  border-color:rgba(140,255,157,.36);
  box-shadow:0 30px 72px rgba(0,0,0,.34);
}

@media(max-width:760px){
  .fruit-story-page{padding:14px;}
  .fruit-reading-toolbar{flex-direction:column;align-items:flex-start;}
  .reader-status{white-space:normal;}
  .fruit-reader-btn,.fruit-reader-small-btn{width:100%;justify-content:center;}
  .pro-hero-actions{display:grid;grid-template-columns:1fr;width:100%;}
}

/* Kids friendly UI polish */
:root{
  --kid-yellow:#ffd166;
  --kid-sky:#7dd3fc;
  --kid-pink:#ff7aa2;
  --kid-soft:#f7fff9;
}

body{
  background:
    radial-gradient(circle at 15% 20%, rgba(125,211,252,.22), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(255,209,102,.20), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(255,122,162,.18), transparent 35%),
    linear-gradient(180deg,#061526,#071b2f 55%,#071423);
}

.hero-badge,
.section-label{
  background:rgba(255,209,102,.16);
  color:#fff3b0;
  border-color:rgba(255,209,102,.45);
}

.primary-btn{
  background:linear-gradient(135deg,#25d95a,#7dd3fc);
  border-radius:24px;
}

.game-btn{
  background:linear-gradient(135deg,#ff7aa2,#ffd166);
  border-radius:24px;
}

.fruit-card,
.country-seo-card,
.continent-info-card,
.home-feature-card,
.fruit-article-card,
.faq-card{
  border-radius:28px !important;
}

.fruit-card:hover{
  transform:translateY(-6px) scale(1.02);
}

.fruit-card h3{
  color:#fff;
}

.fruit-card p{
  font-size:13px !important;
}

.kids-learning-box{
  background:linear-gradient(135deg,rgba(255,209,102,.14),rgba(125,211,252,.12));
  border:1px dashed rgba(255,209,102,.55);
}

.kids-learning-box h4::before{
  content:"🌟 ";
}

.fruit-article-card h3::before{
  content:"🍎 ";
}

.faq-card h3::before{
  content:"❓ ";
}

/* Games page layout fix */
.games-page{
  padding-top:110px !important;
}

.games-hero,
.games-info-card,
.premium-games-grid,
.games-info-grid{
  max-width:1120px;
  margin-left:auto;
  margin-right:auto;
}

.games-info-section{
  margin-bottom:28px;
}

.games-info-card{
  margin-top:28px;
}

.games-info-grid{
  margin-top:18px;
  margin-bottom:28px;
}

@media(max-width:900px){
  .games-page{
    padding-top:150px !important;
  }
}

/* Timeline page layout fix */
.timeline-page{
  padding-top:110px !important;
}

.timeline-hero,
.timeline-info-card,
.timeline-premium-card,
.timeline-info-grid{
  max-width:1120px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.timeline-info-section{
  margin-top:32px !important;
  margin-bottom:32px !important;
}

.timeline-info-card{
  margin-top:28px !important;
}

@media(max-width:900px){
  .timeline-page{
    padding-top:150px !important;
  }
}

/* Continent page clean kids-friendly layout */
.continent{
  padding-top:110px !important;
}

.continent-info-section,
.continent-seo-section{
  max-width:1120px !important;
  margin:28px auto !important;
  padding:0 18px !important;
}

.continent-info-card,
.continent-seo-card{
  margin-bottom:22px !important;
  padding:28px !important;
  border-radius:30px !important;
}

.continent-info-card p,
.continent-seo-card p{
  font-size:15px !important;
  line-height:1.75 !important;
}

.continent-info-card h2,
.continent-seo-card h2{
  font-size:30px !important;
}

.continent-info-grid{
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
}

@media(max-width:900px){
  .continent{
    padding-top:150px !important;
  }

  .continent-info-grid{
    grid-template-columns:1fr !important;
  }
}

/* Country page clean layout fix */
.country{
  padding-top:110px !important;
}

.country-hero-panel,
.country-fruit-section,
.country-long-content{
  max-width:1120px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.country-long-content{
  display:grid !important;
  gap:22px !important;
}

.country-seo-card{
  width:100% !important;
  margin:0 auto !important;
  padding:28px !important;
  border-radius:30px !important;
}

.country-seo-card h2{
  font-size:30px !important;
  line-height:1.2 !important;
}

.country-seo-card p{
  font-size:15px !important;
  line-height:1.75 !important;
  max-width:100% !important;
}

.country-seo-card strong{
  color:#ffd166 !important;
}

@media(max-width:900px){
  .country{
    padding-top:150px !important;
  }

  .country-hero-panel,
  .country-fruit-section,
  .country-long-content{
    max-width:100% !important;
  }

  .country-seo-card{
    padding:22px !important;
  }

  .country-seo-card h2{
    font-size:25px !important;
  }
}

@media (max-width: 768px){

  .page-top{
    margin-top:20px !important;
    margin-bottom:24px !important;
  }

  .page-top .primary-btn{
    width:100%;
    justify-content:center;
    margin-bottom:16px;
  }

  .page-top h1{
    font-size:42px !important;
    line-height:1.1;
  }

  .world-layout{
    gap:24px !important;
  }

  .world-map-card{
    padding:14px !important;
  }

  .world-map-card img{
    border-radius:18px;
  }
}

/* Country page final layout alignment */
.country{
  padding:40px 24px 60px !important;
}

.country-hero-panel{
  max-width:1120px !important;
  margin:0 auto 22px !important;
  display:grid !important;
  grid-template-columns:1.4fr .9fr !important;
  align-items:stretch !important;
}

.country .back-btn{
  max-width:180px !important;
  margin:0 0 22px calc((100% - 1120px) / 2) !important;
}

.country-fruit-section{
  max-width:1120px !important;
  margin:0 auto 22px !important;
}

.country-page-title,
.page-heading{
  max-width:1120px !important;
  margin:0 auto 18px !important;
}

@media(max-width:1200px){
  .country .back-btn{
    margin-left:0 !important;
  }
}

@media(max-width:900px){
  .country{
    padding:24px 16px 50px !important;
  }

  .country-hero-panel{
    grid-template-columns:1fr !important;
  }

  .country .back-btn{
    width:100% !important;
    max-width:none !important;
    justify-content:center !important;
  }
}

/* Country page title size */
.country-page-title h1,
.page-heading h1{
  font-size:42px !important;
  line-height:1.15 !important;
}

@media(max-width:700px){
  .country-page-title h1,
  .page-heading h1{
    font-size:34px !important;
  }
}

/* Quiz answer message spacing fix */
.game-message{
  display:block !important;
  min-height:32px !important;
  margin:18px 0 16px !important;
  text-align:center !important;
  font-size:16px !important;
  line-height:1.4 !important;
}

#originNextBtn{
  margin-top:4px !important;
  width:100% !important;
}

/* Hide fruit emoji in quiz questions */
#originFruitEmoji{
  display:none !important;
}

/* Random Fruit button */
.random-fruit-btn{
    min-width: 240px;
    text-align: center;
    justify-content: center;
}

/* Fix home button layout */
.hero-actions{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:14px !important;
  align-items:center !important;
}

.hero-actions a,
.hero-actions button{
  min-width:180px !important;
  max-width:220px !important;
  height:58px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  white-space:nowrap !important;
  text-decoration:none !important;
  padding:0 18px !important;
}

.random-fruit-btn{
  min-width:180px !important;
}

/* Final heading + FAQ color polish */
.home-seo-intro h2,
.home-long-content h2,
.world-content-hero h2,
.world-long-guide h2,
.world-navigation-box h2,
.world-faq-section h2,
.continent-seo-card h2,
.continent-info-card h2,
.country-hero-content h2,
.country-section-heading h2,
.country-seo-card h2,
.fruit-article-intro h2,
.fruit-faq-section h2,
.related-fruits-section h2,
.timeline-hero h1,
.timeline-info-card h2,
.games-hero h1,
.games-info-card h2{
  background:linear-gradient(135deg,#ffffff,#ffd166,#8cff9d);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* FAQ question color */
.faq-card h3,
.fruit-faq-section h3,
.country-seo-card strong,
.continent-info-card strong{
  color:#ffd166 !important;
}

/* FAQ card special look */
.faq-card{
  background:linear-gradient(135deg,rgba(255,209,102,.12),rgba(125,211,252,.08)) !important;
  border:1px solid rgba(255,209,102,.28) !important;
}

/* Question text inside FAQ */
.faq-card h3::before{
  content:"Q. ";
  color:#8cff9d;
}

/* Professional home hero button panel */
.hero-actions{
  max-width:430px !important;
  padding:16px !important;
  margin-top:34px !important;
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:14px !important;
  border-radius:28px !important;
  background:linear-gradient(135deg,rgba(255,255,255,.10),rgba(255,255,255,.035)) !important;
  border:1px solid rgba(255,255,255,.16) !important;
  box-shadow:0 25px 70px rgba(0,0,0,.35) !important;
  backdrop-filter:blur(14px) !important;
}

.hero-actions a,
.hero-actions button{
  width:100% !important;
  min-width:0 !important;
  max-width:none !important;
  height:62px !important;
  border-radius:20px !important;
  font-size:16px !important;
  font-weight:900 !important;
  white-space:normal !important;
  text-align:center !important;
  line-height:1.15 !important;
  text-decoration:none !important;
}

.hero-actions .primary-btn{
  background:linear-gradient(135deg,#22e36b,#61dfff) !important;
  box-shadow:0 16px 35px rgba(37,217,90,.28) !important;
}

.hero-actions .random-fruit-btn{
  background:linear-gradient(135deg,#ff7aa2,#ffd166) !important;
  box-shadow:0 16px 35px rgba(255,122,162,.22) !important;
}

.hero-actions .game-btn{
  grid-column:1 / -1 !important;
  background:linear-gradient(135deg,#9b7cff,#ff7aa2) !important;
  box-shadow:0 16px 35px rgba(155,124,255,.22) !important;
}

@media(max-width:700px){
  .hero-actions{
    grid-template-columns:1fr !important;
    max-width:100% !important;
  }

  .hero-actions .game-btn{
    grid-column:auto !important;
  }
}

/* FINAL FORCE: home action buttons equal width */
.home .hero-actions{
  width:430px !important;
  max-width:430px !important;
  display:grid !important;
  grid-template-columns:1fr !important;
}

.home .hero-actions a,
.home .hero-actions button,
.home .hero-actions .primary-btn,
.home .hero-actions .game-btn,
.home .hero-actions .random-fruit-btn{
  width:100% !important;
  max-width:100% !important;
  min-width:100% !important;
  height:64px !important;
}
/* Header center search box */
.header-search{
  margin-left:auto;
  margin-right:26px;
  width:360px;
  height:46px;
  display:flex;
  align-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  overflow:hidden;
}

.header-search input{
  flex:1;
  height:100%;
  padding:0 16px;
  border:0;
  outline:0;
  background:transparent;
  color:#fff;
  font-weight:700;
}

.header-search input::placeholder{
  color:#b9c7d8;
}

.header-search button{
  height:100%;
  padding:0 18px;
  border:0;
  background:linear-gradient(135deg,#25d95a,#7dd3fc);
  color:#fff;
  font-weight:900;
}

@media(max-width:900px){
  .header-search{
    order:3;
    width:100%;
    margin:0;
  }
}

/* Final FAQ design for fruit pages */
.fruit-faq-section{
  background:
    radial-gradient(circle at 10% 12%, rgba(255,209,102,.14), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(125,211,252,.12), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.97), rgba(5,10,20,.99)) !important;
  border:1px solid rgba(255,209,102,.30) !important;
}

.fruit-faq-section h2{
  background:linear-gradient(135deg,#ffffff,#ffd166,#8cff9d) !important;
  -webkit-background-clip:text !important;
  -webkit-text-fill-color:transparent !important;
}

.fruit-faq-section p,
.fruit-faq-section div{
  color:#eaf3ff !important;
  line-height:1.8 !important;
}

.fruit-faq-section strong,
.fruit-faq-section b{
  color:#ffd166 !important;
}

/* If FAQ is plain text lines starting Q/A */
.fruit-faq-section{
  font-size:15px !important;
  font-weight:700 !important;
}

/* FORCE ALL FAQ STYLE SAME */
.fruit-faq-section,
.world-faq-section,
.country-seo-card:has(strong){
  max-width:1120px !important;
  margin:32px auto !important;
  padding:32px !important;
  border-radius:34px !important;
  background:linear-gradient(135deg, rgba(8,18,35,.98), rgba(5,10,20,.99)) !important;
  border:1px solid rgba(255,209,102,.32) !important;
  box-shadow:0 30px 85px rgba(0,0,0,.42) !important;
}

.fruit-faq-section h2,
.world-faq-section h2,
.country-seo-card:has(strong) h2{
  font-size:34px !important;
  color:#ffd166 !important;
  -webkit-text-fill-color:#ffd166 !important;
}

.fruit-faq-section p,
.country-seo-card:has(strong) p{
  padding:20px !important;
  margin:16px 0 !important;
  border-radius:24px !important;
  background:linear-gradient(135deg,rgba(255,209,102,.10),rgba(125,211,252,.07)) !important;
  border:1px solid rgba(255,209,102,.30) !important;
  color:#eaf3ff !important;
  line-height:1.8 !important;
}

.fruit-faq-section strong,
.country-seo-card:has(strong) strong{
  color:#ffd166 !important;
  font-size:17px !important;
}

/* Continent FAQ professional card design */
.continent-faq-card{
  background:
    radial-gradient(circle at 10% 12%, rgba(37,217,90,.14), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(255,209,102,.12), transparent 34%),
    linear-gradient(135deg, rgba(8,18,35,.98), rgba(5,10,20,.99)) !important;
  border:1px solid rgba(255,209,102,.32) !important;
}

.continent-faq-card h2{
  color:#ffd166 !important;
  -webkit-text-fill-color:#ffd166 !important;
}

.continent-faq-card p{
  padding:18px 20px !important;
  margin:14px 0 !important;
  border-radius:22px !important;
  background:linear-gradient(135deg,rgba(255,209,102,.10),rgba(125,211,252,.07)) !important;
  border:1px solid rgba(255,209,102,.30) !important;
}

.continent-faq-card strong{
  color:#ffd166 !important;
  font-size:17px !important;
}

.continent-panel-image {
  margin-top: 22px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.continent-panel-image img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-bottom: 12px;
}

.continent-panel-image h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #ffffff;
}

.continent-panel-image p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5e1;
}

/* Final continent title fruit image fix */

.premium-continent-card .back-btn {
  margin-bottom: 18px !important;
}

.continent-card-title.continent-title-with-fruit {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin: 12px 0 16px !important;
  padding: 0 !important;
  min-height: 90px !important;
}

.continent-card-title.continent-title-with-fruit h1 {
  margin: 0 !important;
  font-size: 44px !important;
  line-height: 1.05 !important;
}

.continent-fruit-png {
  width: 105px !important;
  max-width: 105px !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 18px 0 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35)) !important;
}

.continent-stats-row {
  margin: 12px 0 18px !important;
}

@media (max-width: 768px) {
  .continent-card-title.continent-title-with-fruit {
    min-height: auto !important;
    flex-direction: column !important;
    text-align: center !important;
    margin: 16px 0 !important;
  }

  .continent-fruit-png {
    width: 95px !important;
    max-width: 95px !important;
    margin: 0 auto !important;
  }
}

/* FINAL FIX - make continent fruit image a soft background decoration */

.premium-continent-card {
  position: relative !important;
  overflow: hidden !important;
}

.continent-card-title.continent-title-with-fruit {
  display: block !important;
  margin: 42px 0 28px !important;
  padding: 0 !important;
  min-height: auto !important;
  position: relative !important;
  z-index: 2 !important;
}

.continent-card-title.continent-title-with-fruit h1 {
  margin: 0 !important;
  font-size: 46px !important;
  line-height: 1.05 !important;
  position: relative !important;
  z-index: 3 !important;
}

.continent-fruit-png {
  position: absolute !important;
  right: 34px !important;
  top: 78px !important;
  width: 260px !important;
  max-width: 260px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 0.22 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,.35)) !important;
}

.continent-stats-row {
  position: relative !important;
  z-index: 3 !important;
  margin: 0 0 18px !important;
}

.premium-continent-map {
  position: relative !important;
  z-index: 3 !important;
}

@media (max-width: 768px) {
  .continent-fruit-png {
    display: none !important;
  }

  .continent-card-title.continent-title-with-fruit {
    margin: 28px 0 22px !important;
    text-align: left !important;
  }

  .continent-card-title.continent-title-with-fruit h1 {
    font-size: 36px !important;
  }
}

/* FINAL CLEAN FIX - continent fruit image proper alignment */

.premium-continent-card {
  position: relative !important;
  overflow: hidden !important;
}

.premium-continent-card .back-btn {
  margin-bottom: 26px !important;
}

.continent-card-title.continent-title-with-fruit {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  position: relative !important;
  z-index: 5 !important;
}

.continent-card-title.continent-title-with-fruit h1 {
  margin: 0 !important;
  font-size: 46px !important;
  line-height: 1.05 !important;
}

.continent-fruit-png {
  position: static !important;
  display: block !important;
  width: 125px !important;
  max-width: 125px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.35)) !important;
  pointer-events: none !important;
}

.continent-stats-row {
  margin: 0 0 18px 0 !important;
  position: relative !important;
  z-index: 5 !important;
}

.premium-continent-map {
  position: relative !important;
  z-index: 5 !important;
}

@media (max-width: 768px) {
  .continent-card-title.continent-title-with-fruit {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .continent-card-title.continent-title-with-fruit h1 {
    font-size: 36px !important;
  }

  .continent-fruit-png {
    width: 110px !important;
    max-width: 110px !important;
  }
}

/* FINAL NICE FIX - continent fruit image as small badge */

.premium-continent-card {
  position: relative !important;
  overflow: hidden !important;
}

.premium-continent-card .back-btn {
  margin-bottom: 18px !important;
}

.continent-card-title.continent-title-with-fruit {
  display: grid !important;
  grid-template-columns: 1fr 115px !important;
  align-items: center !important;
  gap: 16px !important;
  margin: 18px 0 18px 0 !important;
  padding: 0 !important;
  min-height: auto !important;
  position: relative !important;
  z-index: 5 !important;
}

.continent-card-title.continent-title-with-fruit h1 {
  margin: 0 !important;
  font-size: 44px !important;
  line-height: 1.05 !important;
}

.continent-fruit-png {
  position: static !important;
  display: block !important;
  width: 95px !important;
  max-width: 95px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  justify-self: end !important;
  margin: 0 !important;
  padding: 6px !important;
  border-radius: 20px !important;
  background: radial-gradient(circle, rgba(37,217,90,.18), rgba(255,122,24,.08) 55%, transparent 75%) !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.35)) !important;
  pointer-events: none !important;
}

.continent-stats-row {
  margin: 8px 0 18px 0 !important;
  position: relative !important;
  z-index: 5 !important;
}

.premium-continent-map {
  position: relative !important;
  z-index: 5 !important;
}

@media (max-width: 768px) {
  .continent-card-title.continent-title-with-fruit {
    grid-template-columns: 1fr !important;
    text-align: left !important;
    gap: 12px !important;
  }

  .continent-fruit-png {
    width: 85px !important;
    max-width: 85px !important;
    justify-self: start !important;
  }

  .continent-card-title.continent-title-with-fruit h1 {
    font-size: 36px !important;
  }
}

/* FINAL FIX - fruit image clear and properly sized */

.continent-card-title.continent-title-with-fruit {
  display: grid !important;
  grid-template-columns: 1fr 170px !important;
  align-items: center !important;
  gap: 20px !important;
  margin: 22px 0 26px 0 !important;
  padding: 0 !important;
  min-height: 150px !important;
  position: relative !important;
  z-index: 5 !important;
}

.continent-card-title.continent-title-with-fruit h1 {
  margin: 0 !important;
  font-size: 46px !important;
  line-height: 1.05 !important;
}

.continent-fruit-png {
  position: static !important;
  display: block !important;
  width: 165px !important;
  max-width: 165px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  justify-self: end !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.45)) !important;
}

.continent-stats-row {
  margin: 0 0 18px 0 !important;
  position: relative !important;
  z-index: 5 !important;
}

@media (max-width: 768px) {
  .continent-card-title.continent-title-with-fruit {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .continent-fruit-png {
    width: 130px !important;
    max-width: 130px !important;
    justify-self: start !important;
  }

  .continent-card-title.continent-title-with-fruit h1 {
    font-size: 36px !important;
  }
}

/* FINAL PROFESSIONAL CONTINENT FRUIT IMAGE DESIGN */

.premium-continent-card {
  position: relative !important;
  overflow: hidden !important;
  padding: 26px !important;
}

.premium-continent-card .back-btn {
  margin-bottom: 30px !important;
}

.continent-card-title.continent-title-with-fruit {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 150px !important;
  align-items: center !important;
  gap: 18px !important;
  margin: 0 0 22px 0 !important;
  padding: 0 !important;
  min-height: 115px !important;
  position: relative !important;
  z-index: 5 !important;
}

.continent-card-title.continent-title-with-fruit h1 {
  margin: 0 !important;
  font-size: 46px !important;
  line-height: 1.05 !important;
  letter-spacing: -1.5px !important;
}

.continent-fruit-png {
  position: static !important;
  display: block !important;
  justify-self: end !important;
  width: 135px !important;
  max-width: 135px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.40)) !important;
  pointer-events: none !important;
}

.continent-stats-row {
  margin: 0 0 18px 0 !important;
  position: relative !important;
  z-index: 5 !important;
}

.premium-continent-map {
  position: relative !important;
  z-index: 5 !important;
}

@media (max-width: 768px) {
  .continent-card-title.continent-title-with-fruit {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 12px !important;
    margin-bottom: 18px !important;
  }

  .continent-card-title.continent-title-with-fruit h1 {
    font-size: 36px !important;
  }

  .continent-fruit-png {
    width: 115px !important;
    max-width: 115px !important;
    justify-self: start !important;
  }
}

/* FINAL PROFESSIONAL CONTINENT HERO LAYOUT */

.premium-continent-card {
  padding: 26px !important;
  overflow: hidden !important;
}

.premium-continent-card .back-btn {
  margin-bottom: 24px !important;
}

.continent-card-title.continent-title-with-fruit {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 175px !important;
  align-items: center !important;
  gap: 24px !important;
  margin: 0 0 22px 0 !important;
  padding: 0 !important;
  min-height: 150px !important;
}

.continent-title-text h1 {
  margin: 0 !important;
  font-size: 46px !important;
  line-height: 1.05 !important;
  letter-spacing: -1.5px !important;
}

.continent-title-text p {
  max-width: 520px !important;
  margin: 12px 0 0 0 !important;
  color: #cbd7e6 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  font-weight: 700 !important;
}

.continent-fruit-box {
  width: 175px !important;
  height: 145px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 50% 45%, rgba(37, 217, 90, 0.20), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 45px rgba(0,0,0,0.22) !important;
}

.continent-fruit-png {
  position: static !important;
  display: block !important;
  width: 130px !important;
  max-width: 130px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.42)) !important;
}

.continent-stats-row {
  margin: 0 0 18px 0 !important;
}

@media (max-width: 768px) {
  .continent-card-title.continent-title-with-fruit {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    min-height: auto !important;
  }

  .continent-title-text h1 {
    font-size: 36px !important;
  }

  .continent-fruit-box {
    width: 150px !important;
    height: 120px !important;
  }

  .continent-fruit-png {
    width: 110px !important;
    max-width: 110px !important;
  }
}

/* FINAL - move fruit image to right side of back button */

.premium-continent-card {
  position: relative !important;
  overflow: hidden !important;
  padding: 26px !important;
}

.premium-continent-card .back-btn {
  margin-bottom: 34px !important;
  position: relative !important;
  z-index: 5 !important;
}

.continent-card-title.continent-title-with-fruit {
  display: block !important;
  margin: 0 0 22px 0 !important;
  padding: 0 !important;
  min-height: auto !important;
}

.continent-title-text h1 {
  margin: 0 !important;
  font-size: 46px !important;
  line-height: 1.05 !important;
}

.continent-title-text p {
  max-width: 560px !important;
  margin: 12px 0 0 0 !important;
  color: #cbd7e6 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  font-weight: 700 !important;
}

.continent-fruit-box {
  position: absolute !important;
  top: 24px !important;
  right: 26px !important;
  width: 210px !important;
  height: 120px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at center, rgba(37,217,90,0.20), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25) !important;
  z-index: 4 !important;
}

.continent-fruit-png {
  width: 165px !important;
  max-width: 165px !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.40)) !important;
}

.continent-stats-row {
  margin: 0 0 18px 0 !important;
}

@media (max-width: 768px) {
  .continent-fruit-box {
    position: static !important;
    width: 160px !important;
    height: 110px !important;
    margin: 16px 0 0 0 !important;
  }

  .continent-fruit-png {
    width: 120px !important;
    max-width: 120px !important;
  }

  .continent-title-text h1 {
    font-size: 36px !important;
  }
}

/* REAL FINAL FIX - continent fruit image proper layout, no overlap */

.premium-continent-card {
  position: relative !important;
  overflow: hidden !important;
  padding: 26px !important;
}

.premium-continent-card .back-btn {
  margin-bottom: 26px !important;
}

/* title + fruit image row */
.continent-card-title.continent-title-with-fruit {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 190px !important;
  align-items: center !important;
  gap: 24px !important;
  margin: 0 0 24px 0 !important;
  padding: 0 !important;
  min-height: 145px !important;
  position: relative !important;
  z-index: 10 !important;
}

/* title text */
.continent-title-text h1 {
  margin: 0 !important;
  font-size: 46px !important;
  line-height: 1.05 !important;
  letter-spacing: -1.5px !important;
}

.continent-title-text p {
  max-width: 560px !important;
  margin: 12px 0 0 0 !important;
  color: #cbd7e6 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  font-weight: 700 !important;
}

/* IMPORTANT: remove absolute overlap */
.continent-fruit-box {
  position: static !important;
  top: auto !important;
  right: auto !important;
  width: 185px !important;
  height: 135px !important;
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at center, rgba(37,217,90,0.18), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25) !important;
  z-index: 10 !important;
}

/* fruit image */
.continent-fruit-png {
  position: static !important;
  display: block !important;
  width: 150px !important;
  max-width: 150px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.40)) !important;
  pointer-events: none !important;
}

/* stats should stay below */
.continent-stats-row {
  position: relative !important;
  z-index: 8 !important;
  margin: 0 0 18px 0 !important;
}

.premium-continent-map {
  position: relative !important;
  z-index: 8 !important;
}

/* mobile */
@media (max-width: 768px) {
  .continent-card-title.continent-title-with-fruit {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 16px !important;
  }

  .continent-title-text h1 {
    font-size: 36px !important;
  }

  .continent-fruit-box {
    width: 160px !important;
    height: 120px !important;
    justify-self: start !important;
  }

  .continent-fruit-png {
    width: 125px !important;
    max-width: 125px !important;
  }
}

/* SUPER FINAL - big fruit image in right empty space */

.premium-continent-card {
  position: relative !important;
  overflow: hidden !important;
  padding: 26px !important;
}

/* back button spacing */
.premium-continent-card .back-btn {
  margin-bottom: 26px !important;
}

/* title + big fruit image layout */
.premium-continent-card .continent-card-title.continent-title-with-fruit {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 280px !important;
  align-items: center !important;
  gap: 28px !important;
  margin: 0 0 26px 0 !important;
  padding: 0 !important;
  min-height: 190px !important;
  position: relative !important;
  z-index: 20 !important;
}

/* left title text */
.premium-continent-card .continent-title-text h1 {
  margin: 0 !important;
  font-size: 46px !important;
  line-height: 1.05 !important;
  letter-spacing: -1.5px !important;
}

.premium-continent-card .continent-title-text p {
  max-width: 560px !important;
  margin: 12px 0 0 0 !important;
  color: #cbd7e6 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  font-weight: 700 !important;
}

/* big fruit box on right */
.premium-continent-card .continent-fruit-box {
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;

  width: 260px !important;
  height: 175px !important;
  justify-self: end !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 30px !important;
  background:
    radial-gradient(circle at center, rgba(37,217,90,0.22), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 22px 55px rgba(0,0,0,0.32) !important;
  z-index: 20 !important;
}

/* bigger fruit image */
.premium-continent-card .continent-fruit-png {
  position: static !important;
  display: block !important;
  width: 220px !important;
  max-width: 220px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,0.45)) !important;
  pointer-events: none !important;
}

/* stats stay below fruit area */
.premium-continent-card .continent-stats-row {
  position: relative !important;
  z-index: 15 !important;
  margin: 0 0 18px 0 !important;
}

/* map stays below stats */
.premium-continent-card .premium-continent-map {
  position: relative !important;
  z-index: 15 !important;
}

/* mobile */
@media (max-width: 768px) {
  .premium-continent-card .continent-card-title.continent-title-with-fruit {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 18px !important;
  }

  .premium-continent-card .continent-fruit-box {
    width: 190px !important;
    height: 135px !important;
    justify-self: start !important;
  }

  .premium-continent-card .continent-fruit-png {
    width: 155px !important;
    max-width: 155px !important;
  }

  .premium-continent-card .continent-title-text h1 {
    font-size: 36px !important;
  }
}

/* FINAL CONTINENT FRUIT HERO LAYOUT */

.premium-continent-card {
  position: relative !important;
  overflow: hidden !important;
  padding: 26px !important;
}

.premium-continent-card .back-btn {
  margin-bottom: 26px !important;
}

.premium-continent-card .continent-card-title.continent-title-with-fruit {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 280px !important;
  align-items: center !important;
  gap: 28px !important;
  margin: 0 0 26px 0 !important;
  padding: 0 !important;
  min-height: 190px !important;
}

.premium-continent-card .continent-title-text h1 {
  margin: 0 !important;
  font-size: 46px !important;
  line-height: 1.05 !important;
  letter-spacing: -1.5px !important;
}

.premium-continent-card .continent-title-text p {
  max-width: 560px !important;
  margin: 12px 0 0 0 !important;
  color: #cbd7e6 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  font-weight: 700 !important;
}

.premium-continent-card .continent-fruit-box {
  position: static !important;
  width: 260px !important;
  height: 175px !important;
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at center, rgba(37,217,90,0.22), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 22px 55px rgba(0,0,0,0.32) !important;
}

.premium-continent-card .continent-fruit-png {
  position: static !important;
  display: block !important;
  width: 220px !important;
  max-width: 220px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,0.45)) !important;
}

.premium-continent-card .continent-stats-row {
  margin: 0 0 18px 0 !important;
}

@media (max-width: 768px) {
  .premium-continent-card .continent-card-title.continent-title-with-fruit {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 18px !important;
  }

  .premium-continent-card .continent-fruit-box {
    width: 190px !important;
    height: 135px !important;
    justify-self: start !important;
  }

  .premium-continent-card .continent-fruit-png {
    width: 155px !important;
    max-width: 155px !important;
  }

  .premium-continent-card .continent-title-text h1 {
    font-size: 36px !important;
  }
}

/* FINAL COUNTRY PAGE FRUIT IMAGE HERO */

.country-hero-content.country-hero-with-fruit {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 220px !important;
  align-items: center !important;
  gap: 26px !important;
}

.country-hero-text {
  min-width: 0 !important;
}

.country-hero-fruit-box {
  width: 250px !important;
  height: 170px !important;
  padding: 10px !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at center, rgba(45, 255, 120, 0.18), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.country-hero-fruit-box img {
  width: 260px !important;
  max-width: 210px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.35)) !important;
}

@media (max-width: 900px) {
  .country-hero-content.country-hero-with-fruit {
    grid-template-columns: 1fr !important;
  }

  .country-hero-fruit-box {
    width: 190px !important;
    height: 135px !important;
  }

  .country-hero-fruit-box img {
    width: 155px !important;
    max-width: 155px !important;
  }
}

/* FINAL COUNTRY HERO IMAGE BIG PROFESSIONAL LAYOUT */

.country-hero-panel {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .9fr) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.country-hero-content.country-hero-with-fruit {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 300px !important;
  align-items: center !important;
  gap: 28px !important;
  min-height: 260px !important;
  padding: 30px !important;
}

.country-hero-text h2 {
  font-size: 34px !important;
  line-height: 1.15 !important;
  margin-bottom: 14px !important;
}

.country-hero-text p {
  font-size: 15px !important;
  line-height: 1.75 !important;
  max-width: 520px !important;
}

.country-hero-fruit-box {
  width: 285px !important;
  height: 220px !important;
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at center, rgba(37,217,90,0.24), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 24px 60px rgba(0,0,0,0.36) !important;
}

.country-hero-fruit-box img {
  width: 240px !important;
  max-width: 240px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.48)) !important;
}

.country-stats-grid {
  gap: 16px !important;
}

.country-stat-box {
  min-height: 132px !important;
  border-radius: 24px !important;
}

@media (max-width: 900px) {
  .country-hero-panel {
    grid-template-columns: 1fr !important;
  }

  .country-hero-content.country-hero-with-fruit {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .country-hero-fruit-box {
    width: 220px !important;
    height: 165px !important;
    justify-self: start !important;
  }

  .country-hero-fruit-box img {
    width: 180px !important;
    max-width: 180px !important;
  }
}

/* REAL FINAL COUNTRY FRUIT IMAGE BIG FIX */

.country-hero-content.country-hero-with-fruit {
  grid-template-columns: minmax(0, 1fr) 330px !important;
  gap: 30px !important;
  align-items: center !important;
}

.country-hero-fruit-box {
  width: 310px !important;
  height: 230px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background:
    radial-gradient(circle at center, rgba(37,217,90,0.24), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 24px 60px rgba(0,0,0,0.36) !important;
}

.country-hero-fruit-box img {
  width: 330px !important;
  max-width: none !important;
  height: auto !important;
  object-fit: contain !important;
  transform: scale(1.30) !important;
  transform-origin: center center !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.48)) !important;
}

@media (max-width: 900px) {
  .country-hero-content.country-hero-with-fruit {
    grid-template-columns: 1fr !important;
  }

  .country-hero-fruit-box {
    width: 240px !important;
    height: 175px !important;
  }

  .country-hero-fruit-box img {
    width: 250px !important;
    max-width: none !important;
    transform: scale(1.25) !important;
  }
}

/* Move country hero fruit image little left, box unchanged */

.country-hero-fruit-box {
  overflow: hidden !important;
}

.country-hero-fruit-box img {
  transform: translateX(-14px) scale(1.35) !important;
  transform-origin: center center !important;
}

/* FINAL TIMELINE HERO FRUIT IMAGE */

.timeline-hero.timeline-hero-with-fruit {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 300px !important;
  align-items: center !important;
  gap: 30px !important;
  padding: 34px !important;
}

.timeline-hero-text h1 {
  font-size: 42px !important;
  line-height: 1.1 !important;
  margin-bottom: 14px !important;
}

.timeline-hero-text p {
  max-width: 650px !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.timeline-hero-fruit-box {
  width: 280px !important;
  height: 210px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at center, rgba(37,217,90,0.24), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 24px 60px rgba(0,0,0,0.36) !important;
  overflow: hidden !important;
}

.timeline-hero-fruit-box img {
  width: 285px !important;
  max-width: none !important;
  height: auto !important;
  object-fit: contain !important;
  transform: translateX(-8px) scale(1.20) !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.48)) !important;
}

@media (max-width: 900px) {
  .timeline-hero.timeline-hero-with-fruit {
    grid-template-columns: 1fr !important;
  }

  .timeline-hero-fruit-box {
    width: 230px !important;
    height: 170px !important;
  }

  .timeline-hero-fruit-box img {
    width: 230px !important;
    transform: translateX(-6px) scale(1.15) !important;
  }
}

/* FINAL GAMES HERO FRUIT IMAGE */

.games-hero.games-hero-with-fruit {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 300px !important;
  align-items: center !important;
  gap: 30px !important;
  padding: 34px !important;
}

.games-hero-text h1 {
  font-size: 42px !important;
  line-height: 1.1 !important;
  margin-bottom: 14px !important;
}

.games-hero-text p {
  max-width: 650px !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.games-hero-fruit-box {
  width: 280px !important;
  height: 210px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at center, rgba(37,217,90,0.24), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 24px 60px rgba(0,0,0,0.36) !important;
  overflow: hidden !important;
}

.games-hero-fruit-box img {
  width: 285px !important;
  max-width: none !important;
  height: auto !important;
  object-fit: contain !important;
  transform: translateX(-8px) scale(1.20) !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.48)) !important;
}

@media (max-width: 900px) {
  .games-hero.games-hero-with-fruit {
    grid-template-columns: 1fr !important;
  }

  .games-hero-fruit-box {
    width: 230px !important;
    height: 170px !important;
  }

  .games-hero-fruit-box img {
    width: 230px !important;
    transform: translateX(-6px) scale(1.15) !important;
  }
}

/* FINAL GAME CARD IMAGE LAYOUT */

.pro-game-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 520px !important;
  padding: 28px !important;
}

.game-card-image-box {
  width: 100% !important;
  height: 190px !important;
  margin-bottom: 22px !important;
  border-radius: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at center, rgba(37,217,90,0.24), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 20px 45px rgba(0,0,0,0.28) !important;
}

.game-card-image-box img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 10px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.42)) !important;
}

.pro-game-card h3 {
  margin-top: 0 !important;
}

.pro-game-card .primary-btn,
.pro-game-card .game-btn {
  margin-top: auto !important;
}

@media (max-width: 900px) {
  .pro-game-card {
    min-height: auto !important;
  }

  .game-card-image-box {
    height: 170px !important;
  }
}

/* FINAL COLORFUL GAME POPUP DESIGN */

.pro-game-modal {
  max-width: 760px !important;
  width: 92% !important;
  border-radius: 34px !important;
  padding: 26px !important;
  background:
    radial-gradient(circle at top left, rgba(32, 255, 132, 0.22), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 129, 70, 0.24), transparent 34%),
    radial-gradient(circle at bottom left, rgba(69, 208, 255, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(7, 28, 38, 0.98), rgba(8, 13, 29, 0.98), rgba(38, 19, 31, 0.98)) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.58) !important;
  overflow: hidden !important;
}

.colorful-game-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 210px !important;
  align-items: center !important;
  gap: 22px !important;
  margin-bottom: 24px !important;
}

.game-modal-title-box {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.game-modal-title-box h2 {
  font-size: 31px !important;
  line-height: 1.08 !important;
  margin: 0 0 6px 0 !important;
  color: #ffffff !important;
}

.game-modal-title-box p {
  margin: 0 !important;
  color: #dbeafe !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.modal-game-image {
  width: 205px !important;
  height: 150px !important;
  border-radius: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at center, rgba(94, 255, 154, 0.24), transparent 64%),
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035)) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 18px 45px rgba(0,0,0,0.35) !important;
}

.modal-game-image img {
  width: 210px !important;
  max-width: none !important;
  height: auto !important;
  object-fit: contain !important;
  transform: scale(1.12) !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.45)) !important;
}

.game-start-screen {
  border-radius: 30px !important;
  padding: 36px 30px !important;
  background:
    radial-gradient(circle at bottom left, rgba(37, 217, 90, 0.22), transparent 42%),
    radial-gradient(circle at top right, rgba(255, 204, 92, 0.13), transparent 40%),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

.game-start-screen h3 {
  font-size: 31px !important;
  line-height: 1.16 !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
}

.game-start-screen p {
  color: #e2e8f0 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  max-width: 520px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.game-start-screen .primary-btn {
  min-width: 210px !important;
  font-size: 16px !important;
  border-radius: 22px !important;
  box-shadow: 0 18px 32px rgba(37, 217, 90, 0.25) !important;
}

.game-close-btn {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #ff4d7d, #ff7a59) !important;
  box-shadow: 0 14px 28px rgba(255, 77, 125, 0.32) !important;
  z-index: 20 !important;
}

.origin-question-card {
  background:
    radial-gradient(circle at top left, rgba(37, 217, 90, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  border-radius: 26px !important;
}

.origin-fruit-big {
  font-size: 64px !important;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.35)) !important;
}

.origin-options-grid .option-btn {
  border-radius: 18px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
}

.origin-options-grid .option-btn:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(37, 217, 90, 0.45) !important;
}

.catch-game-info {
  border-radius: 24px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
}

.catch-play-area {
  border-radius: 28px !important;
  background:
    radial-gradient(circle at top, rgba(37, 217, 90, 0.14), transparent 45%),
    linear-gradient(180deg, rgba(10, 26, 44, 0.95), rgba(8, 12, 24, 0.98)) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
}

@media (max-width: 760px) {
  .colorful-game-head {
    grid-template-columns: 1fr !important;
  }

  .modal-game-image {
    width: 200px !important;
    height: 140px !important;
  }

  .modal-game-image img {
    width: 200px !important;
  }

  .game-modal-title-box h2 {
    font-size: 25px !important;
  }
}

/* FRUITSINFO FOOTER LINKS - FRUIT ORIGIN TOOL */

.fruit-origin-main-footer {
  margin-top: 70px;
  padding: 46px 18px 34px;
  background:
    radial-gradient(circle at top left, rgba(35, 255, 132, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 128, 54, 0.14), transparent 32%),
    linear-gradient(135deg, #06101d, #081827, #11131f);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: #dbeafe;
}

.fruit-origin-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.fruit-origin-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.fruit-origin-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 26px;
  font-weight: 950;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.fruit-origin-footer-logo:hover {
  color: #7cff9b;
}

.fruit-origin-footer-top p {
  max-width: 680px;
  margin: 0;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
}

.fruit-origin-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0 28px;
}

.fruit-origin-footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #eaf7ff;
  font-size: 14px;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: 0.22s ease;
}

.fruit-origin-footer-links a:hover {
  color: #07131f;
  background: linear-gradient(135deg, #35e979, #67d9ff);
  border-color: rgba(53, 233, 121, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(53, 233, 121, 0.18);
}

.fruit-origin-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.fruit-origin-footer-bottom p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 700;
}

.fruit-origin-footer-bottom a {
  color: #7cff9b;
  text-decoration: none;
  font-weight: 900;
}

.fruit-origin-footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 780px) {
  .fruit-origin-footer-top,
  .fruit-origin-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .fruit-origin-footer-logo {
    font-size: 22px;
  }

  .fruit-origin-footer-links {
    gap: 8px;
  }

  .fruit-origin-footer-links a {
    font-size: 13px;
    padding: 8px 12px;
  }
}