/* EduKuba – hlavní CSS */
:root {
  --ink:    #1A1523;
  --muted:  #6B7280;
  --bg:     #F5F0EB;
  --card:   #FFFFFF;
  --border: #E5E0D8;
  --c1:     #FF6B35;
  --c2:     #4361EE;
  --c3:     #06D6A0;
  --c4:     #FFD60A;
  --r:      18px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--ink); min-height: 100vh; }

/* Paper texture */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .5;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,240,235,.93); backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border);
  padding: 0 clamp(16px,4vw,48px); height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: 'Baloo 2', cursive; font-size: 1.6rem; font-weight: 800; color: var(--ink); text-decoration: none; display: flex; align-items: center; justify-content: center; }
.gradient-text {
  background: linear-gradient(135deg, var(--c1) 0%, #FF4081 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
}
.nav-logo .dot { color: var(--c1); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 7px 12px; border-radius: 10px; font-weight: 700; font-size: 1rem; color: var(--muted); text-decoration: none; transition: background .15s,color .15s; }
.nav-link:hover { background: var(--border); color: var(--ink); }
.nav-link.active {
background: linear-gradient(135deg, var(--c1) 0%, #FF4081 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
 
 }
.btn-nav { padding: 8px 18px; background: var(--ink); color: white; border-radius: 12px; font-weight: 800; font-size: .84rem; text-decoration: none; font-family: 'Baloo 2', cursive; transition: opacity .15s; border: none; cursor: pointer; }
.btn-nav:hover { opacity: .85; }
.nav-token-badge { display: flex; align-items: center; gap: 6px; background: #F0FDF4; border: 1.5px solid #86EFAC; border-radius: 20px; padding: 4px 12px; font-size: 1rem; font-weight: 700; color: #166534; }
.nav-token-badge .dot-green { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; flex-shrink: 0; }
.nav-admin-badge { display: flex; align-items: center; gap: 6px; background: #FFF5F0; border: 1.5px solid #FEB2B2; border-radius: 20px; padding: 4px 12px; font-size: 1rem; font-weight: 700; color: #C53030; }

/* ── HERO ── */
.hero { position: relative; z-index: 1; padding: clamp(48px, 0vw, 96px) clamp(16px, 4vw, 48px); max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; }
.hero h1 { font-family: 'Baloo 2', cursive; font-size: clamp(2.4rem,5vw,4.25rem); font-weight: 800; line-height: 1.1; letter-spacing: -1px; }
.hero h1 em { font-style: normal; background: linear-gradient(135deg,var(--c1) 0%,#FF4081 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { color: var(--ink); font-size: 1.2rem; margin-top: 14px; line-height: 1.6; }
.hero-stats { display: flex; gap: 24px; margin-top: 24px; }
.hstat-num { font-family: 'Baloo 2', cursive; font-size: 3rem; font-weight: 900; color: var(--c1); line-height: 1;}
.hstat-num span { background: linear-gradient(135deg, var(--c1) 0%, #FF4081 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;};
.hstat-lbl { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.hero-badge { background: var(--c4); color: var(--ink); border-radius: 50%; width: 140px; height: 140px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'Baloo 2', cursive; font-weight: 800; font-size: .95rem; text-align: center; line-height: 1.3; flex-shrink: 0; transform: rotate(8deg); border: 3px solid rgba(0,0,0,.08); animation: badgePulse 3s ease-in-out infinite; }
.hero-badge span { font-size: 1.6rem; display: block; }
@keyframes badgePulse { 0%,100%{transform:rotate(8deg) scale(1)}50%{transform:rotate(8deg) scale(1.04)} }

/* ── FILTER BAR ── */
.filter-bar { position: relative; z-index: 1; max-width: 1200px; margin: 28px auto 0; padding: 0 clamp(16px,4vw,48px); display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.search-wrap { position: relative; flex: 1; min-width: 200px; max-width: 320px; }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: .95rem; color: var(--muted); pointer-events: none; }
.search-input { width: 100%; padding: 10px 14px 10px 40px; border: 2px solid var(--border); border-radius: 14px; font-family: 'Nunito', sans-serif; font-size: .92rem; background: var(--card); color: var(--ink); outline: none; transition: border-color .2s; }
.search-input:focus { border-color: var(--c1); }
.filter-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 4px; padding: 7px 13px; border-radius: 30px; font-size: .9rem; font-weight: 700; border: 2px solid var(--border); background: var(--card); cursor: pointer; text-decoration: none; color: var(--ink); transition: all .15s; white-space: nowrap; }
.chip:hover { border-color: var(--c1); color: var(--c1); }
.chip.active { background: var(--ink); color: white; border-color: var(--ink); }
.grade-select { padding: 7px 13px; border-radius: 14px; border: 2px solid var(--border); background: var(--card); font-family: 'Nunito', sans-serif; font-size: .86rem; color: var(--ink); outline: none; cursor: pointer; font-weight: 700; }

/* ── SECTION ── */
.section { position: relative; z-index: 1; max-width: 1200px; margin: 24px auto 0; padding: 0 clamp(16px,4vw,48px); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.section-title { font-family: 'Baloo 2', cursive; font-size: 1.45rem; font-weight: 800; }
.section-count { color: var(--muted); font-size: .82rem; margin-left: 8px; }

/* ── GAME GRID & CARD ── */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr)); gap: 18px; }
.game-card { background: var(--card); border-radius: var(--r); border: 2px solid var(--border); overflow: hidden; transition: transform .2s,box-shadow .2s,border-color .2s; display: flex; flex-direction: column; position: relative; }
.game-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); border-color: transparent; }
.game-card-top { height: 110px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; font-size: 3.8rem; }
.game-card-top::before { content: ''; position: absolute; inset: 0; background: var(--card-color,#FF6B35); opacity: .1; }
.game-card-top::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 28px; background: var(--card); border-radius: 50% 50% 0 0/100% 100% 0 0; }
.game-icon-big { position: relative; z-index: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,.12)); }
.featured-badge { position: absolute; top: 9px; right: 9px; z-index: 2; background: var(--c4); color: var(--ink); font-size: .62rem; font-weight: 800; padding: 2px 7px; border-radius: 20px; text-transform: uppercase; letter-spacing: .4px; }
.game-card-body { padding: 12px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.game-subject-tag { display: inline-flex; align-items: center; gap: 3px; font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-bottom: 7px; width: fit-content; }
.game-title { font-family: 'Baloo 2', cursive; font-size: 1.2rem; font-weight: 700; line-height: 1.3; margin-bottom: 5px; }
.game-desc { color: var(--ink); font-size: .9rem; line-height: 1.5; flex: 1; }
.game-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border); }
.game-grade { font-size: .82rem; color: var(--muted); font-weight: 700; }
.game-plays { font-size: .82rem; color: var(--muted); }
.stars-display { display: flex; align-items: center; gap: 2px; font-size: .8rem; color: var(--c4); }
.stars-count { font-size: .78rem; color: var(--muted); margin-left: 3px; }
.btn-play { padding: 8px 16px; background: var(--ink); color: white; border-radius: 11px; font-family: 'Baloo 2', cursive; font-size: 1rem; font-weight: 700; text-decoration: none; transition: opacity .15s; display: inline-block; }
.btn-play:hover { opacity: .85; }

/* ── PAGER ── */
.pager { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 24px 0 8px; flex-wrap: wrap; }
.pager-btn { padding: 8px 16px; border-radius: 9px; font-size: .82rem; font-weight: 700; text-decoration: none; border: 2px solid var(--border); color: var(--muted); background: var(--card); font-family: 'Nunito', sans-serif; transition: all .15s; }
.pager-btn:hover:not(.disabled) { border-color: var(--c1); color: var(--c1); }
.pager-btn.disabled { opacity: .35; cursor: default; pointer-events: none; }
.pager-pages { display: flex; gap: 4px; align-items: center; }
.pager-num { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 9px; font-size: .84rem; font-weight: 700; text-decoration: none; border: 2px solid var(--border); color: var(--muted); background: var(--card); transition: all .15s; }
.pager-num:hover { border-color: var(--c1); color: var(--c1); }
.pager-num.active { 
   background: linear-gradient(135deg, var(--c1) 0%, #FF4081 100%); 
color: white; }
.pager-ellipsis { color: var(--muted); padding: 0 2px; font-size: .9rem; }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(26,21,35,.6); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.show { display: flex; }
.modal { background: var(--card); border-radius: 26px; padding: 40px 44px; max-width: 420px; width: 100%; box-shadow: 0 40px 80px rgba(0,0,0,.25); animation: modalPop .3s cubic-bezier(.175,.885,.32,1.275); }
@keyframes modalPop { from{transform:scale(.8);opacity:0} to{transform:scale(1);opacity:1} }
.modal h2 { font-family: 'Baloo 2', cursive; font-size: 1.65rem; font-weight: 800; margin-bottom: 6px; }
.modal p { color: var(--muted); font-size: .88rem; margin-bottom: 22px; line-height: 1.5; }
.modal-close { float: right; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--muted); margin-top: -8px; margin-right: -8px; }
.m-label { display: block; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 7px; }
.m-input { width: 100%; padding: 13px 16px; border: 2.5px solid var(--border); border-radius: 13px; font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-align: center; outline: none; color: var(--ink); transition: border-color .2s; }
.m-input:focus { border-color: var(--c1); }
.m-err { background: #FFF5F5; border: 2px solid #FEB2B2; border-radius: 10px; padding: 9px 13px; color: #C53030; font-size: .84rem; margin-top: 10px; display: none; }
.m-err.show { display: block; }
.btn-submit { display: block; width: 100%; margin-top: 12px; padding: 14px; background: var(--c1); color: white; border: none; border-radius: 14px; font-family: 'Baloo 2', cursive; font-size: 1.12rem; font-weight: 700; cursor: pointer; box-shadow: 0 5px 0 #c94f20; transition: transform .15s,box-shadow .15s; background: linear-gradient(135deg, var(--c1) 0%, #FF4081 100%) }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 7px 0 #c94f20; }
.btn-submit:active { transform: translateY(2px); box-shadow: 0 3px 0 #c94f20; }
.btn-secondary { display: block; width: 100%; margin-top: 8px; padding: 12px; background: var(--bg); color: var(--muted); border: 2px solid var(--border); border-radius: 14px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .9rem; cursor: pointer; text-align: center; text-decoration: none; }
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

/* ── FOOTER ── */
footer { position: relative; z-index: 1; margin-top: 72px; border-top: 2px solid var(--border); background: var(--card); padding: 36px clamp(16px,4vw,48px); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .logo { font-family: 'Baloo 2', cursive; font-size: 1.35rem; font-weight: 800; }
.footer-brand p { color: var(--muted); font-size: 1rem; margin-top: 8px; max-width: 220px; line-height: 1.5; }
.footer-col h4 { font-weight: 800; font-size: 1.3rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 1rem; margin-bottom: 6px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { max-width: 1200px; margin: 20px auto 0; padding-top: 18px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 1rem; color: var(--muted); }
.footer-logo { font-family: 'Baloo 2', cursive; font-weight: 800; color: var(--ink); text-decoration: none; display: flex; align-items: center; justify-content: left; }
.footer-logo span { font-size: 1.7rem; }
a.footer-link {
color:inherit;text-decoration:none;opacity:.7
}

/* ── ALERTS ── */
.alert { padding: 11px 15px; border-radius: 11px; font-weight: 700; font-size: .86rem; margin-bottom: 18px; }
.alert-ok  { background: #F0FDF4; border: 2px solid #86EFAC; color: #166534; }
.alert-err { background: #FFF5F5; border: 2px solid #FEB2B2; color: #C53030; }

/* ── EMPTY STATE ── */
.empty { text-align: center; padding: 56px 20px; color: var(--muted); }
.empty-icon { font-size: 3.5rem; display: block; margin-bottom: 14px; opacity: .35; }

/* ── GAME PAGE ── */
.gmain { max-width: 1000px; margin: 0 auto; padding: clamp(20px,4vw,40px) clamp(16px,4vw,24px); position: relative; z-index: 1; }
.game-hero { background: var(--card); border-radius: var(--r); border: 2px solid var(--border); overflow: hidden; display: grid; grid-template-columns: 260px 1fr; margin-bottom: 20px; }
.gh-visual { display: flex; align-items: center; justify-content: center; min-height: 210px; font-size: 5.5rem; background: linear-gradient(135deg,color-mix(in srgb,var(--gc,#FF6B35) 15%,white),color-mix(in srgb,var(--gc,#FF6B35) 6%,white)); }
.gh-info { padding: 26px 30px; display: flex; flex-direction: column; justify-content: center; }
.gh-sub-tag { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 20px; font-size: .9rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 12px; width: fit-content; border: 2px solid; background: color-mix(in srgb,var(--gc,#FF6B35) 10%,white); border-color: color-mix(in srgb,var(--gc,#FF6B35) 30%,transparent); color: var(--gc,#FF6B35); }
.gh-info h1 { font-family: 'Baloo 2', cursive; font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 8px; }
.gh-info p { color: var(--ink); line-height: 1.6; margin-bottom: 14px; font-size: 1rem; }
.pub-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 14px; }
.pub-star { font-size: 1.2rem; color: #DDD; }
.pub-star.on { color: var(--c4); }
.pub-rating-text { font-size: 1rem; color: var(--muted); margin-left: 4px; }
.gh-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.gchip { padding: 3px 9px; border-radius: 20px; font-size: .9rem; font-weight: 700; background: var(--bg); border: 1px solid var(--border); color: var(--muted); }
.play-card { background: var(--card); border-radius: var(--r); border: 2px solid var(--border); padding: 26px; margin-bottom: 16px; }
.play-card h2 { font-family: 'Baloo 2', cursive; font-size: 1.25rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.tok-status { display: flex; align-items: center; gap: 8px; padding: 10px 13px; border-radius: 11px; font-size: .84rem; font-weight: 700; margin-bottom: 14px; flex-wrap: wrap; }
.tok-ok { background: #F0FDF4; border: 2px solid #86EFAC; color: #166534; }
.tok-expiry { margin-left: auto; font-weight: 400; font-size: .74rem; }
.name-inp { width: 100%; padding: 12px 15px; border: 2.5px solid var(--border); border-radius: 12px; font-family: 'Nunito', sans-serif; font-size: .95rem; color: var(--ink); outline: none; transition: border-color .2s; }
.name-inp:focus { border-color: var(--c1); }
.class-inp { width: 100%; padding: 12px 15px; border: 2.5px solid var(--border); border-radius: 12px; font-family: 'Nunito', sans-serif; font-size: .95rem; color: var(--ink); outline: none; background: var(--bg); transition: border-color .2s; margin-top: 8px; }
.class-inp:focus { border-color: var(--c1); }
.class-inp:disabled { opacity: .55; cursor: not-allowed; background: var(--bg); }
.class-locked-note { font-size: .74rem; color: #7C3AED; font-weight: 700; margin-top: 4px; display: none; }
.btn-start-big { width: 100%; margin-top: 10px; padding: 14px; background: var(--c1); color: white; border: none; border-radius: 12px; font-family: 'Baloo 2', cursive; font-size: 1.1rem; font-weight: 800; cursor: pointer; box-shadow: 0 5px 0 #c94f20; transition: transform .15s,box-shadow .15s; }
.btn-start-big:hover { transform: translateY(-2px); box-shadow: 0 7px 0 #c94f20; }
.play-err { background: #FFF5F5; border: 2px solid #FEB2B2; border-radius: 9px; padding: 9px 13px; color: #C53030; font-size: .83rem; margin-top: 8px; display: none; }
.play-err.show { display: block; }
.lock-box { background: linear-gradient(135deg,#FFF9EC,#FFF5F0); border: 2px solid #FDE68A; border-radius: 13px; padding: 28px; text-align: center; }
.lock-icon { font-size: 2.5rem; display: block; margin-bottom: 9px; }
.lock-box h2 { font-family: 'Baloo 2', cursive; font-size: 1.3rem; margin-bottom: 7px; }
.lock-box p { color: var(--muted); font-size: .85rem; line-height: 1.5; margin-bottom: 16px; }
.more-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(175px,1fr)); gap: 10px; }
.more-card { background: var(--card); border: 2px solid var(--border); border-radius: 12px; padding: 13px; text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 8px; transition: all .15s; }
.more-card:hover { border-color: var(--c1); transform: translateY(-2px); }
.more-icon { font-size: 1.6rem; }
.more-title { font-weight: 700; font-size: .82rem; }
.btn-preview { width: 100%; margin-top: 8px; padding: 13px; background: #7C3AED; color: white; border: none; border-radius: 12px; font-family: 'Baloo 2', cursive; font-size: 1rem; font-weight: 800; cursor: pointer; box-shadow: 0 5px 0 #5B21B6; transition: transform .15s,box-shadow .15s; }
.btn-preview:hover { transform: translateY(-2px); box-shadow: 0 7px 0 #5B21B6; }
.btn-preview:disabled { background: #9CA3AF; box-shadow: none; cursor: not-allowed; transform: none; }
.preview-badge { display: inline-block; background: #EDE9FE; border: 2px solid #C4B5FD; border-radius: 20px; padding: 4px 12px; font-size: .72rem; font-weight: 800; color: #5B21B6; margin-top: 8px; text-align: center; width: 100%; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── CONTACT PAGE ── */
.contact-wrap { max-width: 1200px; margin: 48px auto; padding: 0 clamp(16px,4vw,24px); }
.contact-hero { text-align: center; margin-bottom: 36px; }
.contact-hero h1 { font-family: 'Baloo 2', cursive; font-size: 2.2rem; font-weight: 800; }
.contact-hero p { color: var(--muted); margin-top: 8px; line-height: 1.6; }
.cform { background: var(--card); border: 2px solid var(--border); border-radius: 24px; padding: clamp(24px,4vw,44px); }
.cform label { display: block; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .7px; color: var(--muted); margin-bottom: 7px; }
.cform input,.cform textarea,.cform select { width: 100%; padding: 13px 16px; border: 2.5px solid var(--border); border-radius: 13px; font-family: 'Nunito', sans-serif; font-size: .96rem; color: var(--ink); outline: none; transition: border-color .2s; margin-bottom: 18px; background: var(--bg); }
.cform input:focus,.cform textarea:focus { border-color: var(--c1); background: white; }
.cform textarea { resize: vertical; min-height: 140px; }
.cform .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 32px; }
.info-card { background: var(--card); border: 2px solid var(--border); border-radius: 16px; padding: 18px; text-align: center; }
.info-icon { font-size: 1.8rem; margin-bottom: 8px; }
.info-title { font-weight: 800; font-size: .88rem; margin-bottom: 4px; }
.info-text { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* ── PAGE (about/authors/pricing) ── */
.phero { background: var(--card); border-bottom: 2px solid var(--border); padding: clamp(32px,6vw,72px) clamp(16px,4vw,48px); text-align: center; }
.phero h1 { font-family: 'Baloo 2', cursive; font-size: clamp(2rem,4vw,3rem); font-weight: 800; }
.psub-nav { display: flex; gap: 8px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.psub-nav a { padding: 7px 15px; border: 2px solid var(--border); border-radius: 30px; font-size: .82rem; font-weight: 700; color: var(--muted); text-decoration: none; background: var(--card); }
.psub-nav a:hover,.psub-nav a.active {

 border-color: var(--c1); 
 color: var(--c1); 

}
.pwrap { max-width: 1200px; margin: 44px auto; padding: 0 clamp(16px,4vw,24px); }
.pcard { background: var(--card); border: 2px solid var(--border); border-radius: 20px; padding: clamp(22px,4vw,44px); font-size: .97rem; line-height: 1.8; color: #374151; }
.pcard h2 { font-family: 'Baloo 2', cursive; font-size: 1.45rem; color: var(--ink); margin: 24px 0 10px; }
.pcard h2:first-child { margin-top: 0; }
.pcard p { margin-bottom: 12px; }
.pcard ul { margin: 10px 0 12px 22px; }
.pcard li { margin-bottom: 5px; }

/* stránka s cenami */
.pr-wrap { font-family: 'Nunito', sans-serif; max-width: 1200px; margin: 0 auto; padding: 24px 0 48px; }
.pr-section { margin-bottom: 44px; }
.pr-section-title { display: flex; align-items: center; gap: 9px; font-family: 'Baloo 2', cursive; font-size: 1.75rem; font-weight: 800; margin-bottom: 16px; }
.pr-pill { font-size: .85rem; font-weight: 800; padding: 3px 10px; border-radius: 20px; background: #fff0eb; color: #FF6B35; border: 1.5px solid #ffd0b8; }
.pr-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px,1fr)); gap: 13px; }
.pr-card { background: #fff; border: 2px solid #ede8f8; border-radius: 18px; padding: 22px 18px 20px; display: flex; flex-direction: column; gap: 5px; position: relative; transition: transform .2s, border-color .2s, box-shadow .2s; }
.pr-card:hover { transform: translateY(-4px); border-color: #FF6B35; box-shadow: 0 8px 28px rgba(255,107,53,.12); }
.pr-card.pr-free { border-color: #bbf7d0; background: #f0fdf4; }
.pr-card.pr-free:hover { border-color: #16a34a; box-shadow: 0 8px 28px rgba(22,163,74,.1); }
.pr-card.pr-popular { border-color: #FF6B35; }
.pr-pop-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: linear-gradient(120deg,#FF6B35,#FF3CAC); color: white; font-size: .63rem; font-weight: 800; padding: 3px 12px; border-radius: 20px; white-space: nowrap; box-shadow: 0 3px 10px rgba(255,107,53,.3); }
.pr-name { font-family: 'Baloo 2', cursive; font-size: 1.5rem; font-weight: 800; color: #1a1a2e; }
.pr-detail { font-size: 1rem; color: #8b7aa8; line-height: 1.45; flex: 1; }
.pr-price { font-family: 'Baloo 2', cursive; font-size: 1.55rem; font-weight: 800; color: #FF6B35; line-height: 1; margin-top: 8px; }
.pr-price.pr-green { color: #16a34a; }
.pr-price small { font-size: .76rem; font-family: 'Nunito', sans-serif; font-weight: 700; color: #8b7aa8; }
.pr-nodph { font-size: .7rem; color: #b0a0c8; margin-top: 2px; }
.pr-badge { display: inline-block; font-size: .64rem; font-weight: 800; padding: 3px 9px; border-radius: 20px; background: #fff0eb; color: #FF6B35; border: 1.5px solid #ffd0b8; margin-top: 4px; align-self: flex-start; }
.pr-badge.pr-gbadge { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.pr-btn { display: block; margin-top: 12px; padding: 9px 0; background: #1a1a2e; color: #fff !important; text-align: center; border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800; text-decoration: none !important; transition: background .15s; }
.pr-btn:hover { background: #2d2d4a; }
.pr-btn.pr-btn-free { background: #f0fdf4; color: #16a34a !important; border: 2px solid #bbf7d0; }
.pr-btn.pr-btn-free:hover { background: #dcfce7; }
.pr-note { margin-top: 12px; font-size: 1rem; color: #000; background: #fff; border: 1.5px solid #ede8f8; border-radius: 12px; padding: 12px 16px; line-height: 1.6; }
.pr-note strong { color: #1a1a2e; }
@media(max-width:500px){ .pr-cards { grid-template-columns: 1fr 1fr; } }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media(max-width:620px) {
  .game-hero { grid-template-columns: 1fr; }
}
/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: 2px solid var(--border);
  border-radius: 10px; cursor: pointer; padding: 0;
  transition: border-color .2s;
}
.nav-hamburger:hover { border-color: var(--c1); }
.nav-hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
/* animace X */
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media(max-width:600px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(245,240,235,.97); backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--border);
    padding: 12px 16px 16px;
    z-index: 99;
  }
  .nav-links.nav-open { display: flex; }

  .nav-link { padding: 10px 14px; font-size: 1rem; border-radius: 10px; }
  .nav-token-badge { justify-content: center; }
  .nav-admin-badge { justify-content: center; }
  .btn-nav { text-align: center; padding: 11px; }

  .footer-inner { grid-template-columns: 1fr; }
  .cform .row2 { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
}