@font-face {
font-family: inter;
src: url(https://www.sudokuki.org/assets/fonts/inter.ttf);
}
@font-face {
font-family: marker;
src: url(https://www.sudokuki.org/assets/fonts/per.ttf);
}
@font-face {
font-family: anton;
src: url(https://www.sudokuki.org/assets/fonts/anton.ttf);
}
* {
box-sizing: border-box;
font-family: Inter, system-ui;
margin: 0;
padding: 0;
}
.ad-overlay {
min-width: 200px;
min-height: 250px;               
position: fixed;
z-index: 9999;
background: #fff;
display: flex;
flex-direction:column;
align-items: center;
justify-content: center;
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
margin:10px;
}
.ad-overlay.hidden { display: none; }
.close-btn {
width:100%;
height:40px;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
background:#c60000;
font-family:"inter";
font-weight:600;
}
.close-btn.enabled {
opacity: 1;
cursor: pointer;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #27A3F5; /* dark base */
background-image:
linear-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px);
background-size: 40px 40px;
}
.top-ad{
width:100%;
min-height:50px;
display:flex;
align-items:center;
justify-content:center;
}
.bottom-ad{
width:300px;
min-height:50px;
bottom:0;
z-index:1;
margin-top:15px;
}
.mobile {
display: none;
}
.ribbon-pop {
display: none;
}
.adsense{
width:100%;
min-height:90px;
}
/* ===== POP UP AD ===== */
.ad-gate-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.65);
display: flex;
align-items: center;
justify-content: center;
flex-direction:column;
z-index: 99999;
}
.ad-gate-overlay.hidden {
display: none;
}
.ad-gate-card {
background: #fff;
padding: 16px;
border-radius: 12px;
width: 300px;
max-height:360px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
flex-direction:column;
}
.ad-slot-300x250 {
width: 300px;
height: 250px;
margin: 0 auto 14px;
}
.ad-gate-btn {
width: 100%;
height: 44px;
background: #c60000;
color: #fff;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
margin-top:20px;
}
/* ===== HEADER ===== */
header {
top: 0;
left: 0;
right: 0;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
position: fixed;
padding: 0 16px;
background: #c60000;
z-index: 10;
border-bottom: 4px solid #000;
}
.header {
width: 1100px;
height: 70px;
display: flex;
align-items: center;
justify-content: space-between;
}
.header-left {
width: 150px;
height: 100%;
display: flex;
align-items: center;
margin-left: 10px;
position: relative;
}
.menu-btn {
font-size: 22px;
background: none;
border: none;
cursor: pointer;
}
/* ===== DROP DOWN MENU ===== */
.hamburger {
position: relative;
width: 22px;
height: 15px;
background: none;
border: none;
cursor: pointer;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
gap: 3px;
}
/* Default lines */
.hamburger .line {
height: 3px;
width: 24px;
background: #fff;
border-radius: 6px;
transform-origin: center;
transition: transform 0.35s ease, opacity 0.25s ease;
}
/* Top line is shorter */
.hamburger .line-top {
width: 13px;
}
/* Red dot overlaps ~50% of top line */
.badge-dot {
position: absolute;
top: -3px;
left: 15px; /* aligns half-over top line */
width: 8px;
height: 8px;
background: #fff;
border-radius: 50%;
z-index: 2;
}
/* Animate to X */
.hamburger.active .line:nth-child(1) {
width: 24px;
position: absolute;
top: 50%;
transform: translateY(-50%) rotate(45deg);
}
.hamburger.active .line:nth-child(2) {
opacity: 0;
}
.hamburger.active .line:nth-child(3) {
position: absolute;
top: 50%;
transform: translateY(-50%) rotate(-45deg);
}
.hamburger.active .badge-dot {
opacity: 0;
}
/* Overlay */
.menu-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.3);
opacity: 0;
visibility: hidden;
transition: 0.2s;
z-index: 99;
}
/* Menu panel */
.menu-panel {
position: absolute;
top: 58px;
left: 10px;
top: 60px; /* JS will set this */
left: 0;
width: calc(100% - 20px);
width: 250px;
height: 300px;
display: none;
background: #fff;
border-radius: 10px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
transform: translateY(-10px);
visibility: hidden;
transition: 0.25s ease;
}
/* Arrow notch */
.menu-notch {
position: absolute;
top: -5px;
left: 10px;
width: 20px;
height: 20px;
background: #fff;
transform: rotate(45deg);
}
/* Lists */
.menu-list {
width: 100%;
height: 100%;
list-style: none;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 15px;
}
.men-nor {
display: block;
font-size: 16px;
font-weight: 400;
color: #000;
text-decoration: none;
}
.menu-list li a:hover {
opacity:0.9;
}
/* Divider */
.menu-divider {
height: 1px;
background: #ddd;
margin: 0 20px;
}
/* Active */
.menu-open .menu-panel {
visibility: visible;
transform: translateY(0);
}
.drop-down-menu-btn {
width: 120px;
height: 35px;
color: #fff;
text-decoration: none;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
display: flex;
font-size: 14px;
align-items: center;
justify-content: center;
border-radius: 5px;
}
.astro {
background: linear-gradient(135deg, #2b2e73, #6b4bd8);
}
.iq {
background: linear-gradient(180deg, #f26f06 0%, #f97316 100%);
}
.sudo {
background: linear-gradient(180deg, #c60000 0%, #c01000 100%);
}
.menu-list li a:hover {
opacity: 0.9;
}
.logo {
font-size: 22px;
font-weight: 800;
font-family: "inter";
text-decoration: none;
color: #fff;
margin-left: 10px;
}
.header-right {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.badge {
padding: 15px 10px;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
color: #fff;
white-space: nowrap;
text-decoration: none;
color: #fff;
}
#newGame_top {
padding: 15px 10px;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
color: #fff;
white-space: nowrap;
background: #000;
}
#prevGame_top {
padding: 15px 10px;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
color: #fff;
white-space: nowrap;
background: #9E9E9E;
}
#ranGame_top {
padding: 15px 10px;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
color: #fff;
white-space: nowrap;
background: #1E88E5;
}
.badge.green {
background: linear-gradient(180deg, #03612b 0%, #1f7a2f 100%);
}
.badge.orange {
background: linear-gradient(180deg, #f26f06 0%, #f97316 100%);
}
.badge.blue {
background: linear-gradient(180deg, #3563ad 0%, #2f5fd6 100%);
}
.text-link {
text-decoration: none;
color: #6b7280;
font-weight: 600;
margin-left: 6px;
font-family: "inter";
}
.category-block {
margin-bottom: 40px;
}
.category-title {
font-size: 20px;
margin-bottom: 20px;
border-left: 7px solid #c60000;
padding-left: 10px;
text-transform: capitalize;
font-family:"inter";
font-weight:500;
color:#000;
}
.game-list{
width:100%;
margin-top:25px;
}
.games-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
gap: 15px;
}
.game-card {
background: #1a1a1a;
border-radius: 10px;
overflow: hidden;
text-align: center;
transition: transform 0.2s;
background: #2174D9
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.game-card:hover {
transform: scale(1.05);
}
.game-card img {
width: 100%;
height: 140px;
object-fit: cover;
}
.game-title {
height: 48px;                 /* FIXED height for all cards */
display: flex;
align-items: center;          /* vertical center */
justify-content: center;      /* horizontal center */
padding: 0 8px;
font-size: 14px;
font-family: "inter";
font-weight: 500;
color: #fff;
text-align: center;
line-height: 1.2;
/* Clamp to 2 lines */
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.game-card a {
color: inherit;
text-decoration: none;
}
.ad-container{
width:100%;
display:flex;
margin-bottom:15px;
align-items:center;
justify-content:center;
}
/* ===== CONTENT SECTION ===== */
.app {
width: 100vw;
min-height:100vh;
display: flex;
flex-direction: column;
align-items: center;
}
.main {
width: 1460px;
display: flex;
gap:15px;
align-items: start;
margin-top:80px;
}
main{width:970px;display:flex;flex-direction:column;align-items:center;}
/* ===== SUDOKU GAME ===== */
.game {
width: 100%;
position: relative;
display: flex;
justify-content: space-between;
min-height: 400px;
}
.menu-board {
height: 100%;
width: 55%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
.board.paused .cell {
color: transparent;
}
/* Hide notes too (optional) */
.board.paused .notes {
visibility: hidden;
}
.game-header {
width: 100%;
max-width: 820px;
display: flex;
align-items: center;
justify-content: space-between;
height: 30px;
margin-bottom: 20px;
}
/* Left */
.game-header-left select {
padding: 6px 10px;
font-size: 0.95rem;
border-radius: 6px;
border: 1px solid #cfd6e4;
background: white;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
/* Center */
.game-header-center {
font-size: 0.95rem;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 6px 10px;
height: 30px;
background-color: #c60000;
color: #fff;
}
/* Right */
.game-header-right {
gap: 6px;
display: flex;
align-items: center;
justify-content: center;
padding: 6px 10px;
height: 30px;
background-color: #c60000;
}
.pause-toggle {
background: none;
border: none;
font-size: 20px;
cursor: pointer;
color: #fff;
}
.stats {
display: flex;
align-items: center;
gap: 18px;
font-size: 0.95rem;
}
.time-wrap {
display: flex;
align-items: center;
gap: 6px;
}
#time {
color: #fff;
}
/* ===== BOARD ===== */
.board {
grid-column: 1 / 2;
width: 100%;
max-width: min(95vw, 800px);
max-height: 70vh;
aspect-ratio: 1;
display: grid;
grid-template-columns: repeat(9, 1fr);
grid-template-rows: repeat(9, 1fr);
border: 4px solid #2d3b55;
background: white;
}
.challenge-banner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #c60000;
width: 80%;
color: #fff;
font-family: "inter";
padding: 14px 22px;
border-radius: 5px;
text-align: center;
font-size: 15px;
font-weight: 600;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
z-index: 50;
opacity: 0;
pointer-events: none;
transition: opacity 0.45s ease, transform 0.45s ease;
}
.challenge-banner.show {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
.challenge-banner.hide {
opacity: 0;
transform: translate(-50%, -50%) scale(0.97);
}
.menu-board {
position: relative; /* important for centering */
}
.cell {
border: 1px solid #cfd6e4;
display: flex;
align-items: center;
justify-content: center;
font-size: clamp(1rem, 4vw, 1.4rem);
user-select: none;
cursor: pointer;
position: relative;
}
.cell {
transition: color 0.15s ease;
}
.board.paused {
opacity: 0.6;
}
.board.paused {
pointer-events: none;
}
.cell.fixed {
background: #e8f1ff;
font-weight: 700;
}
.cell.selected {
background: #dbe6ff;
}
.cell:nth-child(3n) {
border-right: 2px solid #2d3b55;
}
.cell:nth-child(9n) {
border-right: none;
}
.cell:nth-child(n + 19):nth-child(-n + 27),
.cell:nth-child(n + 46):nth-child(-n + 54) {
border-bottom: 2px solid #2d3b55;
}
.notes {
position: absolute;
inset: 3px;
display: grid;
grid-template-columns: repeat(3, 1fr);
font-size: 0.55rem;
opacity: 0.75;
}
/* ===== PANEL ===== */
.panel {
width: 40%;
grid-column: 2 / 3;
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 16px;
}
.select-wrap {
position: relative;
width: 160px;
}
.difficulty-custom {
position: relative;
width: 120px;
font-size: 1.1rem;
user-select: none;
z-index: 9;
}
.difficulty-selected {
width: 120px;
height: 30px;
background: #c60000;
color: #fff;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
padding-left: 10px;
padding-right: 10px;
}
.difficulty-selected .arrow {
width: 8px;
height: 8px;
border-right: 2px solid #fff;
border-bottom: 2px solid #fff;
transform: rotate(45deg);
transition: transform 0.2s ease;
}
.difficulty-custom.open .arrow {
transform: rotate(-135deg);
}
.difficulty-options {
position: absolute;
width: 120px;
min-height: 90px;
top: calc(100% + 6px);
left: 0;
right: 0;
background: #c60000;
overflow: hidden;
display: none;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.difficulty-custom.open .difficulty-options {
display: block;
}
.difficulty-options div {
width: 120px;
height: 30px;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
border-bottom: 1px solid white;
}
.difficulty-options div:hover {
background: #505050;
}
.tools {
display: flex;
gap: 10px;
}
.tool {
aspect-ratio: 1 / 1;
/* ðŸ”‘ makes it a square */
display: flex;
/* center number */
align-items: center;
justify-content: center;
flex: 1;
background: #e9edf7;
padding: 12px;
text-align: center;
border-radius: 12px;
cursor: pointer;
}
.numpad {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
}
.num {
background: #eef1f7;
aspect-ratio: 1 / 1;
/* ðŸ”‘ makes it a square */
display: flex;
/* center number */
align-items: center;
justify-content: center;
padding: 18px;
text-align: center;
font-size: 1.4rem;
border-radius: 12px;
cursor: pointer;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.gameButtons{
width:100%;
height:50px;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
}
#next {
width:31%;
height:40px;
display: flex;
align-items: center;
justify-content: center;
border: none;
background: #c60000;
color: white;
font-size: 0.8rem;
cursor: pointer;
}
#random {
width:31%;
height:40px;
display: flex;
align-items: center;
justify-content: center;
border: none;
background: #000;
color: white;
font-size: 0.8rem;
cursor: pointer;
}
#previous{
width:31%;
height:40px;
display: flex;
align-items: center;
justify-content: center;
border: none;
background: #fff;
color: #000;
font-size: 0.8rem;
cursor: pointer; 
}
#secondChanceBtn,
#gameOverNewGame {
width: 160px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border: none;
background: #c60000;
color: white;
font-size: 1rem;
cursor: pointer;
}
#newGame {
width: 100%;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border: none;
background: #c60000;
color: white;
font-size: 1rem;
cursor: pointer;
}
/* ===== GAME OVER OVERLAY ===== */
.gameover-overlay {
width: 100%;
height: 100%;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
.gameover-modal {
width: 350px;
height: 250px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background: white;
border-radius: 14px;
padding: 28px 22px;
text-align: center;
width: 90%;
max-width: 320px;
}
.gameover-modal p {
margin-top: 20px;
margin-bottom: 20px;
}
#overlay {
width: 100%;
height: 100%;
position: absolute;
background-color: rgba(0, 0, 0, 0.7);
display: none;
align-items: center;
justify-content: center;
}
.win-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.6);
align-items: center;
justify-content: center;
z-index: 9999;
}
.win-overlay:not([hidden]) {
display: flex;
}
.win-card {
background: #fff;
padding: 28px 24px;
border-radius: 16px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
text-align: center;
max-width: 320px;
width: 90%;
animation: popIn 0.5s ease-out;
}
.win-card h2 {
margin: 12px 0 6px;
font-size: 1.4rem;
}
.win-card p {
font-size: 0.95rem;
color: #555;
}
.win-card button {
margin-top: 16px;
padding: 10px 18px;
background: #c60000;
color: #fff;
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
}
.trophy {
font-size: 3rem;
animation: bounce 1.2s infinite;
}
.hint-tool {
position: relative;
}
.hint-badge {
position: absolute;
top: -6px;
right: -6px;
width: 22px;
height: 22px;
background: #c60000;
color: #fff;
border-radius: 50%;
font-size: 0.8rem;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
}
.hint-disabled {
opacity: 0.4;
pointer-events: none;
}
@keyframes popIn {
from {
transform: scale(0.7);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}
@keyframes bounce {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
.floating-games-bar {
position: fixed;
bottom: 110px;
right: 20px;
/* fixed distance from right */
display: flex;
align-items: center;
justify-content: flex-end;
gap: 10px;
}
.floating-games-bar a {
text-decoration: none;
color: #000;
}
/* Base button style */
.float-btn {
background: #222;
color: #fff;
border: none;
padding: 10px 14px;
border-radius: 999px;
font-size: 12px;
font-weight: 600;
cursor: pointer;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
white-space: nowrap;
}
/* Highlight primary action */
.float-btn.primary {
background: #c60000;
}
.float-btn {
opacity: 0.85;
}
.float-btn.primary {
opacity: 1;
}
.top-stories {
max-width: 950px;
margin: 60px auto;
padding: 0 16px;
}
.top-stories h2 {
font-size: 22px;
margin-bottom: 16px;
border-bottom: 3px solid #c60000;
display: inline-block;
padding-bottom: 6px;
}
.hidden {
display: none;
}
.social-share-left {
position: fixed;
top: 40vh;
left: 0;
}
.social-share-bottom {
position: fixed;
bottom: 0;
width: 100%;
display: flex;
visibility: hidden;
}
.share-box {
width: 60px;
height: 60px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
justify-content: center;
}
.share-box-grow {
flex-grow: 1;
height: 50px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
justify-content: center;
z-index: 500;
}
.facebook {
background-color: #316ff6;
}
.twitter {
background-color: #000;
}
.linkedin {
background-color: #0077b5;
}
.whatsapp {
background-color: #25d366;
}
.reddit {
background-color: #ff4500;
}
.pintrest {
background-color: #e60023;
}
.blog-post {
width: 99%;
display: flex;
justify-content: center;
border: 2px solid black;
margin-top: 30px;
margin-left: 2px;
background-color:#fff;
}
.blog-post-item {
width: 95%;
display: flex;
flex-direction: column;
margin-bottom: 20px;
}
.blog_title {
font-family: "inter";
font-size: 35px;
color: #212121;
font-weight: 900;
margin-top: 20px;
}
.blog-post-item h1 {
font-family: "inter";
font-size: 20px;
color: #000;
font-weight: 600;
margin-top: 20px;
}
.blog-post-item p {
font-family: "inter";
font-size: 14px;
color: #212121;
font-weight: 400;
margin-top: 20px;
text-align: justify;
}
.blog-post-item h2 {
font-family: "inter";
font-size: 18px;
color: #000;
font-weight: 600;
margin-top: 20px;
}
.blog-post-item h3 {
font-family: "inter";
font-size: 16px;
color: #000;
font-weight: 600;
margin-top: 20px;
}
.blog-post-item li {
font-family: "inter";
font-size: 14px;
color: #212121;
font-weight: 400;
margin-top: 15px;
text-align: justify;
margin-left: 30px;
}
.legal-links {
width: 100%;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
}
.legal {
width: 300px;
height: 40px;
display: flex;
align-items: center;
justify-content: space-between;
}
.legal a {
text-decoration: none;
color: #212121;
font-family: "inter";
font-weight: 400;
font-size: 18px;
margin-right: 10px;
}
.more-games{
width:100%;
height:60px;
border-top:7px solid #c60000;
border-bottom:7px solid #c60000;
display:flex;
align-items:center;
color:#000;
font-family:"inter";
font-size:25px;
font-weight:800;
margin-top:20px;
margin-bottom:20px;
}
.quiz-shell {
width:100%;
background: #fff;
padding: 40px;
background: #eef1f7;
}
.quiz-header {
max-height: 80px;
}
.top-row {
display: flex;
justify-content: space-between;
align-items: center;
}
.timer {
font-size: 18px;
font-weight: 700;
}
.progress {
height: 8px;
background: #fff;
border-radius: 6px;
margin: 14px 0;
overflow: hidden;
}
.bar {
height: 100%;
width: 0%;
background: #c60000;
}
.qno {
font-size: 18px;
font-weight: 800;
font-family: "inter";
}
.question-wrap {
min-height: 120px;
margin: 30px 0;
}
.question-wrap h2 {
font-size: 26px;
line-height: 1.35;
font-family: "inter";
}
.options-wrap {
max-height: 320px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.option {
height: 64px;
border: 2px solid #e5e7eb;
border-radius: 16px;
background: #fff;
font-family: "inter";
font-weight: 600;
padding: 0 20px;
display: flex;
align-items: center;
font-size: 18px;
cursor: pointer;
transition: 0.2s;
margin-bottom: 5px;
}
.option.active {
border-color: #ea5a3c;
background: #fff3ee;
box-shadow: 0 0 0 1px rgba(234, 90, 60, 0.15);
}
.quiz-footer {
margin-top: 30px;
display: flex;
justify-content: space-between;
}
.prev-btn {
background: #2b2b2b;
color: #fff;
border: none;
padding: 14px 34px;
font-size: 18px;
border-radius: 999px;
cursor: pointer;
}
.prev-btn:disabled {
opacity: 0.4;
cursor: not-allowed;
}
.next-btn {
background: #c60000;
color: #fff;
border: none;
padding: 14px 34px;
font-size: 18px;
border-radius: 999px;
cursor: pointer;
}
.overlay-actions {
display: flex;
gap: 12px;
margin-top: 16px;
justify-content: center;
}
#overlayCloseBtn {
background: #e5e7eb;
color: #111;
border: none;
padding: 10px 18px;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
}
.blog-post {
width: 99%;
display: flex;
justify-content: center;
border: 2px solid black;
margin-top: 30px;
margin-left: 2px;
}
.blog-post-item {
width: 95%;
display: flex;
flex-direction: column;
margin-bottom: 20px;
}
.blog_title {
font-family: "inter";
font-size: 35px;
color: #212121;
font-weight: 900;
margin-top: 20px;
}
.blog-post-item p {
font-family: "inter";
font-size: 14px;
color: #212121;
font-weight: 400;
margin-top: 20px;
text-align: justify;
}
.blog-post-item h2 {
font-family: "inter";
font-size: 18px;
color: #000;
font-weight: 600;
margin-top: 20px;
}
.blog-post-item h3 {
font-family: "inter";
font-size: 16px;
color: #000;
font-weight: 600;
margin-top: 20px;
}
.blog-post-item li {
font-family: "inter";
font-size: 14px;
color: #212121;
font-weight: 400;
margin-top: 15px;
text-align: justify;
margin-left: 30px;
}
#div-gpt-ad-1773231932351-0,#div-gpt-ad-1773232622707-0,#div-gpt-ad-1773292062301-0,#div-gpt-ad-1773292174446-0,#div-gpt-ad-1773292627507-0,#div-gpt-ad-1773292750541-0{display:none;}
@media only screen and (max-width: 1480px) {
.main {
width: 1285px;
}
#div-gpt-ad-1773213282988-0{display:none;}
}
@media only screen and (max-width: 1320px) {
.main {
width: 98vw;
}
#div-gpt-ad-1773231932351-0,#div-gpt-ad-1773232622707-0,#div-gpt-ad-1773213282988-0{display:block;}
#div-gpt-ad-1773212705116-0,#div-gpt-ad-1773212830165-0{display:none;}
.game {
flex-grow:1;
flex-direction: column;
align-items: center;
justify-content: center;
}
.menu-board,
.panel {
width: 70%;
}
#gameButtons,
.game-header{width:100%;}
.panel {
margin-top: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.tool {
width: 50px;
height: 50px;
padding: 10px;
flex: 0;
aspect-ratio: auto;
/* disables square lock */
}
.numpad,
.tools {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.num {
display: flex;
align-items: center;
background: #fff;
font-family: "inter";
font-weight: 800;
justify-content: center;
text-align: center;
font-size: 1.4rem;
cursor: pointer;
box-shadow: none;
padding: 5px;
border-radius:3px;
}
.header-left{
margin-left:0px;
}
.difficulty-custom {
width: 90px;
}
.difficulty-selected {
width: 90px;
}
.difficulty-options,
.difficulty-options div {
width: 90px;
}
.game-header-center {
font-size: 0.65rem;
}
#time,
.difficulty-custom {
font-size: 0.85rem;
}
}
@media only screen and (max-width: 1250px) {
#div-gpt-ad-1773213282988-0{display:none;}
}

@media only screen and (max-width: 1105px) {
.main{
width:100%;
padding: 5px;
flex-direction:column;
}
header,.header {
width: 100vw;
}
}
@media only screen and (max-width: 1090px) {
#div-gpt-ad-1773213575422-0{display:none;}
main,.main{width:100%};
}
}

@media (max-width: 866px) {
.menu-board,
.panel,
{
width: 75%;
}
#gameButtons,.game-header{width:100%};
}
@media (max-width: 750px) {
#div-gpt-ad-1773231932351-0,#div-gpt-ad-1773232622707-0{display:none;}
#div-gpt-ad-1773292062301-0,#div-gpt-ad-1773292174446-0{display:block;}
.menu-board,
.panel,
#gameButtons,
.game-header,
.blog-post,
.numpad,
.tools,
.game-header,
.blog-post {
width: 468px;
}
.social-share-left {
display: none;
}
.social-share-bottom {
visibility: visible;
}
.mobile {
display: block;
}
.badge{
display:none;
}
#newGame_top {
padding: 7px 5px;
}
.logo {
margin-left: 15px;
font-size: 18px;
}
.prev-btn,
.next-btn {
padding: 10px 10px;
}
#question {
font-size: 22px;
}
.quiz-shell {
margin-left: 5px;
margin-right: 5px;
}
.quiz-shell {
padding: 5px;
}
.option {
height: 40px;
padding: 0 10px;
font-size: 16px;
}
#time,
.difficulty-custom {
font-size: 0.65rem;
}
.games-grid {
grid-template-columns: repeat(3, 1fr);
gap: 10px; 
}
}
@media (max-width: 500px) {
#div-gpt-ad-1773292627507-0,#div-gpt-ad-1773292750541-0{display:block;}
#div-gpt-ad-1773292062301-0,#div-gpt-ad-1773292174446-0{display:none;}
.ad-gate-card {
width: 100vw;
}
header,
.header {
height: 40px;
width:100vw;
}
.main{margin-top:20px;}
#next,#random,#previous{
font-size:0.7rem;  
}
.menu-board,
.panel,
#gameButtons,
.game-header,
.blog-post,
.numpad,
.tools,
.game-header,
.blog-post {
width: 97%;
}
#question {
font-size: 17px;
}
.next-btn,.prev-btn{
font-size: 15px;
}
.question-wrap{
min-height:70px;
}
}