* {
	 box-sizing: border-box;
}
 @font-face {
	 font-family: heavy;
	 src: url(https://www.sudokuki.org/assets/fonts/heavy.otf);
	 font-display: swap;
}
 @font-face {
	 font-family: black;
	 src: url(https://www.sudokuki.org/assets/fonts/black.otf);
	 font-display: swap;
}
 @font-face {
	 font-family: bold;
	 src: url(https://www.sudokuki.org/assets/fonts/bold.otf);
	 font-display: swap;
}
 @font-face {
	 font-family: semibold;
	 src: url(https://www.sudokuki.org/assets/fonts/semibold.otf);
	 font-display: swap;
}
 @font-face {
	 font-family: medium;
	 src: url(https://www.sudokuki.org/assets/fonts/medium.otf);
	 font-display: swap;
}
 @font-face {
	 font-family: regular;
	 src: url(https://www.sudokuki.org/assets/fonts/regular.otf);
	 font-display: swap;
}
 :root {
	 --ink: #14171c;
	 --ink-soft: #363b42;
	 --muted: #7b818a;
	 --line: #e5e7ea;
	 --cream: #f8f9fa;
	 --paper: #ffffff;
	 --accent: #4a5568;
	 --accent-deep: #2d3748;
	 --slate: #64748b;
	 --slate-deep: #475569;
	 --sky: #3b82c4;
	 --sky-deep: #2a6aa8;
	 --sky-soft: #ebf3fa;
}
 body {
	 margin: 0;
	 background: #f5f5f5;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
}
 .ad-container {
	 margin-top: 15px;
	 background: #fff;
	 width: 100%;
	 min-height: 50px;
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
}
 .container {
	 max-width: 720px;
	 padding: 0 20px;
}
/* ══════════ MASTHEAD ══════════ */
 .masthead {
	 padding: 0.5rem 0.5rem 0.5rem;
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
	 border-bottom: 1px solid #eee;
}
 .masthead-brand {
	 font-family: "heavy";
	 font-size: 1.1rem;
	 letter-spacing: -0.015em;
	 color: var(--ink);
}
 .masthead-brand span {
	 color: var(--accent);
	 font-style: italic;
	 font-weight: 600;
}
 .masthead-tag {
	 font-family: "heavy";
	 font-size: 0.6rem;
	 letter-spacing: 0.2em;
	 text-transform: uppercase;
	 color: var(--muted);
	 margin-left: 7px;
	 text-decoration: none;
}
/* ========================================== NEWS TICKER ========================================== */
 .category-menu {
	 width: 100%;
	 background: #fff;
	 position: relative;
	 z-index: 100;
	 margin-bottom: 15px;
}
/* ========================================== TICKER BAR ========================================== */
 .ticker-bar {
	 width: 100%;
	 height: 42px;
	 display: flex;
	 align-items: center;
	 overflow: hidden;
}
/* ========================================== LATEST LABEL ========================================== */
 .ticker-label {
	 height: 100%;
	 padding: 0 25px 0 14px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 flex-shrink: 0;
	 background: #e00000;
	 color: #fff;
	 font-family: "black";
	 font-size: 12px;
	 letter-spacing: 0.5px;
	 position: relative;
	 z-index: 3;
	/* Diagonal right edge */
	 clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
}
/* ========================================== TICKER WINDOW ========================================== */
 .ticker-window {
	 flex: 1;
	 overflow: hidden;
	 position: relative;
}
/* ========================================== MOVING TRACK ========================================== */
 .ticker-track {
	 display: flex;
	 align-items: center;
	 width: max-content;
	 animation: newsTicker 35s linear infinite;
	 will-change: transform;
}
/* ========================================== NEWS ITEM ========================================== */
 .ticker-item {
	 display: flex;
	 align-items: center;
	 height: 42px;
	 padding: 0 25px;
	 color: #111;
	 text-decoration: none;
	 font-family: "semibold";
	 font-size: 13px;
	 white-space: nowrap;
	 position: relative;
}
/* Separator */
 .ticker-item::after {
	 content: "•";
	 position: absolute;
	 right: 0;
	 color: #e00000;
	 font-size: 16px;
}
/* ========================================== ANIMATION ========================================== */
 @keyframes newsTicker {
	 from {
		 transform: translateX(0);
	}
	 to {
		 transform: translateX(-50%);
	}
}
/* Pause when mouse is over ticker */
 .ticker-window:hover .ticker-track {
	 animation-play-state: paused;
}
/* ========================================== HAMBURGER ========================================== */
 .menu-toggle {
	 width: 48px;
	 height: 42px;
	 flex-shrink: 0;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 justify-content: center;
	 gap: 5px;
	 border: 0;
	 border-left: 1px solid #e5e5e5;
	 background: #fff;
	 cursor: pointer;
	 padding: 0;
	 position: relative;
	 z-index: 5;
}
 .menu-toggle span {
	 width: 20px;
	 height: 2px;
	 background: #111;
	 border-radius: 2px;
	 transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease;
}
/* ========================================== HAMBURGER → X ========================================== */
 .menu-toggle.open span:nth-child(1) {
	 transform: translateY(7px) rotate(45deg);
}
 .menu-toggle.open span:nth-child(2) {
	 opacity: 0;
	 width: 0;
}
 .menu-toggle.open span:nth-child(3) {
	 transform: translateY(-7px) rotate(-45deg);
}
/* ========================================== DROPDOWN MENU ========================================== */
 .category-dropdown {
	 display: grid;
	 grid-template-rows: 0fr;
	 opacity: 0;
	 overflow: hidden;
	 transition: grid-template-rows 0.35s ease, opacity 0.25s ease;
}
 .category-dropdown.open {
	 grid-template-rows: 1fr;
	 opacity: 1;
}
 .dropdown-inner {
	 min-height: 0;
	 overflow: hidden;
	 display: grid;
	 grid-template-columns: repeat(4, 1fr);
	 border-top: 1px solid #eee;
}
 .dropdown-item {
	 min-height: 45px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 color: #111;
	 text-decoration: none;
	 font-family: "bold";
	 font-size: 14px;
	 border-right: 1px solid #eee;
	 border-bottom: 1px solid #eee;
	 transition: background 0.2s ease, color 0.2s ease;
}
 .dropdown-item:hover {
	 background: #f5f5f5;
	 color: #e00000;
}
/* ========================================== MOBILE ========================================== */
/* ══════════ ARTICLE HEADER ══════════ */
 .news-grid {
	 display: grid;
	 grid-template-columns: repeat(2, 1fr);
	 gap: 24px;
}
 .news-card {
	 overflow: hidden;
	 transition: transform 0.2s ease, box-shadow 0.2s ease;
	 border-bottom: 1px solid black;
}
 .news-image {
	 width: 100%;
	 height: 150px;
	 object-fit: cover;
	 display: block;
	 box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
	 border-radius: 5px;
}
 .news-content {
	 padding-top: 10px;
	 padding-bottom: 10px;
}
 .news-title {
	 margin: 0 0 10px;
	 font-size: 20px;
	 display: -webkit-box;
	 -webkit-box-orient: vertical;
	 -webkit-line-clamp: 2;
	/* Change this number to your desired maximum lines */
	 line-clamp: 3;
	/* Standard property syntax */
	 overflow: hidden;
}
 .news-title a {
	 font-family: "semibold";
	 color: #111;
	 text-decoration: none;
}
 .news-title a:hover {
	 color: #0066cc;
}
 .news-description {
	 font-family: "regular";
	 margin: 0;
	 color: #666;
	 font-size: 15px;
	 display: -webkit-box;
	 -webkit-box-orient: vertical;
	 -webkit-line-clamp: 3;
	/* Change this number to your desired maximum lines */
	 line-clamp: 3;
	/* Standard property syntax */
	 overflow: hidden;
}
 .loading {
	 text-align: center;
	 padding: 40px;
	 font-size: 18px;
	 color: #666;
}
 .action {
	 margin-top: 10px;
	 width: 100%;
	 height: 30px;
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
}
 .date {
	 color: #000;
	 font-size: 13px;
	 font-family: "medium";
}
 .time {
	 color: #000;
	 font-size: 11px;
	 margin-top: 3px;
	 font-family: "medium";
}
 .read-more {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 height: 25px;
	 width: 100px;
	 text-decoration: none;
	 color: #000;
	 border: 1px solid black;
	 border-radius: 5px;
	 font-size: 14px;
	 padding: 5px;
}
 .read-more:hover {
	 background: #000;
	 color: #fff;
}
 .error {
	 text-align: center;
	 padding: 40px;
	 color: #c00;
}
 .popular-card {
	 width: 100%;
	 margin: 30px auto;
	 padding: 28px 40px 32px;
	 box-sizing: border-box;
	 background: #ffd400;
}
/* ========================= HEADING ========================= */
 .card-heading {
	 margin-bottom: 20px;
}
 .card-heading h2 {
	 margin: 0;
	 padding: 0;
	 font-family: "black";
	 font-size: 32px;
	 line-height: 1;
	 font-weight: 900;
	 text-transform: uppercase;
	 color: #050505;
}
 .card-heading .heading-line {
	 width: 35%;
	 height: 10px;
	 background: #c60000;
	 margin-top: 5px;
}
 #card-list {
	 background: #fff;
	 padding: 15px;
}
/* ========================= CARD ITEM ========================= */
 .card-item {
	 display: flex;
	 align-items: flex-start;
	 width: 100%;
	 padding: 20px 0;
	 text-decoration: none;
	 color: #000;
	 border-bottom: 2px solid #d0d0d0;
	 box-sizing: border-box;
}
 .action-card {
	 padding-left: 38px;
}
 .card-item:last-child {
	 border-bottom: none;
}
/* ========================= IMAGE ========================= */
 .card-item img {
	 width: 130px;
	 height: 130px;
	 box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
	 object-fit: cover;
	 border-radius: 5px;
	 flex-shrink: 0;
	 display: block;
}
/* ========================= TITLE ========================= */
 .card-title {
	 font-family: "semibold";
	 padding-left: 38px;
	 font-size: 20px;
	 display: -webkit-box;
	 -webkit-box-orient: vertical;
	 -webkit-line-clamp: 2;
	 line-clamp: 3;
	 overflow: hidden;
	 color: #111;
	 text-decoration: none;
	 font-weight: 800;
}
 .card-title:hover {
	 color: #0066cc;
}
 .card-description {
	 font-family: "regular";
	 padding-left: 38px;
	 color: #111;
	 text-decoration: none;
	 font-size: 15px;
	 margin-top: 10px;
	 display: -webkit-box;
	 -webkit-box-orient: vertical;
	 -webkit-line-clamp: 3;
	 overflow: hidden;
}
/* ========================= MORE BUTTON ========================= */
 .more-card {
	 width: 100%;
	 height: 50px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 background: #000;
	 margin: 25px auto 0;
	 text-decoration:none;
	 padding: 0;
	 border: none;
	 font-family: "black";
	 font-size: 24px;
	 font-weight: 800;
	 letter-spacing: 0.3px;
	 color: #fff;
	 cursor: pointer;
	 text-transform: uppercase;
}
 .more-card span {
	 font-size: 17px;
	 margin-left: 8px;
	 text-transform: uppercase;
}
 .more-card:hover {
	 opacity: 0.65;
}
 #game-list {
	 background: #fff;
	 padding: 15px;
	 display: flex;
	 flex-wrap: wrap;
	 gap: 15px;
	 justify-content: space-between;
}
 .game-card {
	 width: 100%;
	 margin: 30px auto;
	 padding: 28px 40px 32px;
	 box-sizing: border-box;
	 background: #38b6ff;
}
 .game-item p {
	 max-width: 100px;
	 color: #000;
	 font-family: "medium";
	 text-align: center;
	 font-size: 13px;
	 text-decoration: none;
}
 .game-item img {
	 border-radius: 5px;
	 box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
	 width: 100px;
	 height: 100px;
}
/* ========================================== QUIZ ========================================== */
 .quiz-container {
	 width: 100%;
	 max-width: 700px;
	 margin: 30px auto;
	 background: #ffffff;
	 border: 0;
	 border-radius: 5px;
	 overflow: hidden;
	 box-shadow: 0 15px 45px rgba(60, 40, 120, 0.14);
}
/* ========================================== QUIZ HEADER ========================================== */
 .quiz-header {
	 position: relative;
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
	 padding: 22px 25px;
	 background: linear-gradient(135deg, #5b21b6, #7c3aed, #2563eb);
	 color: #fff;
}
/* Small decorative glow */
 .quiz-header::after {
	 content: "";
	 position: absolute;
	 width: 120px;
	 height: 120px;
	 right: -45px;
	 top: -60px;
	 background: rgba(255, 255, 255, 0.12);
	 border-radius: 50%;
}
/* ========================================== TITLE ========================================== */
 .quiz-title {
	 position: relative;
	 z-index: 2;
	 font-family: "heavy";
	 font-size: 20px;
	 letter-spacing: 0.2px;
}
/* ========================================== PROGRESS ========================================== */
 .quiz-progress {
	 position: relative;
	 z-index: 2;
	 padding: 7px 12px;
	 background: rgba(255, 255, 255, 0.18);
	 border: 1px solid rgba(255, 255, 255, 0.25);
	 border-radius: 30px;
	 font-family: "bold";
	 font-size: 14px;
	 color: #fff;
	 backdrop-filter: blur(5px);
}
/* ========================================== QUESTION ========================================== */
 .quiz-question {
	 display: none;
	 padding: 32px;
}
 .quiz-question.active {
	 display: block;
	 animation: quizQuestionIn 0.3s ease;
}
 @keyframes quizQuestionIn {
	 from {
		 opacity: 0;
		 transform: translateX(12px);
	}
	 to {
		 opacity: 1;
		 transform: translateX(0);
	}
}
/* ========================================== QUESTION NUMBER ========================================== */
 .question-number {
	 display: inline-flex;
	 align-items: center;
	 padding: 6px 12px;
	 margin-bottom: 15px;
	 background: #ede9fe;
	 color: #6d28d9;
	 border-radius: 30px;
	 font-family: "bold";
	 font-size: 12px;
	 text-transform: uppercase;
	 letter-spacing: 0.5px;
}
/* ========================================== QUESTION TEXT ========================================== */
 .question-text {
	 margin: 0 0 25px;
	 font-family: "black";
	 font-size: 23px;
	 line-height: 1.35;
	 color: #171327;
}
/* ========================================== OPTIONS ========================================== */
 .quiz-options {
	 display: flex;
	 flex-direction: column;
	 gap: 12px;
}
 .quiz-option {
	 position: relative;
	 display: flex;
	 align-items: center;
	 min-height: 58px;
	 padding: 14px 16px;
	 background: #faf9ff;
	 border: 2px solid #e7e3f4;
	 border-radius: 12px;
	 cursor: pointer;
	 transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
 .quiz-option:hover {
	 background: #f3efff;
	 border-color: #8b5cf6;
	 transform: translateY(-2px);
	 box-shadow: 0 5px 15px rgba(124, 58, 237, 0.1);
}
/* ========================================== SELECTED OPTION ========================================== */
 .quiz-option:has(input:checked) {
	 background: #ede9fe;
	 border-color: #7c3aed;
	 box-shadow: 0 5px 18px rgba(124, 58, 237, 0.15);
}
 .quiz-option:has(input:checked)::after {
	 content: "✓";
	 position: absolute;
	 right: 15px;
	 top: 50%;
	 transform: translateY(-50%);
	 width: 24px;
	 height: 24px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 background: #7c3aed;
	 color: #fff;
	 border-radius: 50%;
	 font-family: Arial, sans-serif;
	 font-size: 14px;
	 font-weight: bold;
}
/* ========================================== RADIO ========================================== */
 .quiz-option input {
	 width: 19px;
	 height: 19px;
	 margin: 0 13px 0 0;
	 accent-color: #7c3aed;
	 flex-shrink: 0;
}
/* ========================================== OPTION TEXT ========================================== */
 .option-text {
	 padding-right: 30px;
	 font-family: "regular";
	 font-size: 16px;
	 line-height: 1.4;
	 color: #252238;
}
/* ========================================== NAVIGATION ========================================== */
 .quiz-navigation {
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 margin-top: 30px;
	 padding-top: 20px;
	 border-top: 1px solid #eee;
}
 .quiz-navigation button {
	 min-height: 45px;
	 padding: 0 22px;
	 border: 0;
	 border-radius: 10px;
	 font-family: "bold";
	 font-size: 14px;
	 cursor: pointer;
	 transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
 .quiz-navigation button:hover {
	 transform: translateY(-2px);
}
/* Previous */
 .quiz-prev {
	 background: #f1f0f5;
	 color: #393442;
}
/* Next / Finish */
 .quiz-next, .quiz-submit {
	 margin-left: auto;
	 background: linear-gradient(135deg, #7c3aed, #2563eb);
	 color: #fff;
	 box-shadow: 0 6px 16px rgba(79, 70, 229, 0.25);
}
 .quiz-submit {
	 background: linear-gradient(135deg, #ec4899, #7c3aed);
}
/* ========================================== RESULT CARD ========================================== */
 .quiz-result {
	 position: relative;
	 width: 100%;
	 max-width: 700px;
	 margin: 35px auto;
	 padding: 45px 30px 35px;
	 text-align: center;
	 overflow: hidden;
	 background: linear-gradient(145deg, #ffffff 0%, #faf7ff 55%, #eef5ff 100%);
	 border: 1px solid #e7ddff;
	 border-radius: 22px;
	 box-shadow: 0 18px 55px rgba(75, 45, 140, 0.15);
}
/* Decorative circles */
 .quiz-result::before {
	 content: "";
	 position: absolute;
	 width: 190px;
	 height: 190px;
	 top: -100px;
	 left: -80px;
	 border-radius: 50%;
	 background: linear-gradient(135deg, #7c3aed, #ec4899);
	 opacity: 0.12;
}
 .quiz-result::after {
	 content: "";
	 position: absolute;
	 width: 180px;
	 height: 180px;
	 right: -90px;
	 bottom: -90px;
	 border-radius: 50%;
	 background: linear-gradient(135deg, #2563eb, #06b6d4);
	 opacity: 0.12;
}
/* ========================================== RESULT LABEL ========================================== */
 .result-label {
	 position: relative;
	 z-index: 2;
	 font-family: "black";
	 font-size: 13px;
	 letter-spacing: 2px;
	 color: #7c3aed;
}
/* ========================================== IQ SCORE ========================================== */
 .iq-score {
	 position: relative;
	 z-index: 2;
	 margin-top: 12px;
	 font-family: "black";
	 font-size: 105px;
	 line-height: 0.95;
	 letter-spacing: -4px;
	 background: linear-gradient(135deg, #7c3aed, #2563eb, #ec4899);
	 -webkit-background-clip: text;
	 background-clip: text;
	 color: transparent;
}
/* ========================================== IQ LABEL ========================================== */
 .iq-label {
	 position: relative;
	 z-index: 2;
	 margin-top: 10px;
	 font-family: "semibold";
	 font-size: 18px;
	 color: #4b4658;
}
/* ========================================== LEVEL ========================================== */
 .result-level {
	 position: relative;
	 z-index: 2;
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 margin: 20px auto 10px;
	 padding: 9px 20px;
	 border-radius: 30px;
	 background: linear-gradient(135deg, #fbbf24, #f97316);
	 color: #fff;
	 font-family: "black";
	 font-size: 16px;
	 box-shadow: 0 5px 15px rgba(249, 115, 22, 0.2);
}
/* ========================================== RESULT SCORE ========================================== */
 .result-score {
	 position: relative;
	 z-index: 2;
	 margin-top: 15px;
	 font-family: "regular";
	 font-size: 17px;
	 line-height: 1.6;
	 color: #494455;
}
 .result-score strong {
	 font-family: "black";
	 color: #6d28d9;
}
/* ========================================== PERCENTAGE ========================================== */
 .result-percentage {
	 position: relative;
	 z-index: 2;
	 display: inline-block;
	 margin-top: 12px;
	 padding: 6px 13px;
	 background: #dcfce7;
	 color: #15803d;
	 border-radius: 30px;
	 font-family: "bold";
	 font-size: 14px;
}
/* ========================================== SHARE CARD ========================================== */
 .quiz-share-card {
	 position: relative;
	 z-index: 2;
	 margin: 30px auto 0;
	 padding: 22px;
	 max-width: 560px;
	 background: #fff;
	 border: 1px solid #e6e0f2;
	 border-radius: 16px;
	 box-shadow: 0 8px 25px rgba(40, 25, 80, 0.08);
}
 .quiz-share-title {
	 font-family: "black";
	 font-size: 18px;
	 color: #181326;
	 margin-bottom: 5px;
}
 .quiz-share-subtitle {
	 font-family: "regular";
	 font-size: 13px;
	 color: #777;
	 margin-bottom: 17px;
}
/* ========================================== SHARE BUTTONS ========================================== */
 .quiz-share-buttons {
	 display: flex;
	 justify-content: center;
	 flex-wrap: wrap;
	 gap: 9px;
}
 .quiz-share-buttons a, .quiz-share-buttons button {
	 height: 40px;
	 min-width: 82px;
	 padding: 0 13px;
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 gap: 6px;
	 border: 0;
	 border-radius: 8px;
	 color: #fff;
	 text-decoration: none;
	 font-family: "bold";
	 font-size: 12px;
	 cursor: pointer;
	 transition: transform 0.2s ease, opacity 0.2s ease;
}
 .quiz-share-buttons a:hover, .quiz-share-buttons button:hover {
	 transform: translateY(-2px);
	 opacity: 0.9;
}
/* Facebook */
 .quiz-share-facebook {
	 background: #1877f2;
}
/* X */
 .quiz-share-x {
	 background: #000;
}
/* WhatsApp */
 .quiz-share-whatsapp {
	 background: #25d366;
}
/* Reddit */
 .quiz-share-reddit {
	 background: #ff4500;
}
/* Telegram */
 .quiz-share-telegram {
	 background: #229ed9;
}
/* LinkedIn */
 .quiz-share-linkedin {
	 background: #0a66c2;
}
/* Copy */
 .quiz-share-copy {
	 background: #64748b;
}
/* ========================================== SHARE URL ========================================== */
 .quiz-share-url {
	 display: flex;
	 align-items: center;
	 margin-top: 15px;
	 padding: 10px 12px;
	 background: #f7f6fa;
	 border-radius: 8px;
	 font-family: "regular";
	 font-size: 12px;
	 color: #666;
	 overflow: hidden;
}
 .quiz-share-url span {
	 overflow: hidden;
	 white-space: nowrap;
	 text-overflow: ellipsis;
}
/* ========================================== REPLAY ========================================== */
 .quiz-replay {
	 position: relative;
	 z-index: 2;
	 margin-top: 22px;
}
 .restart-quiz {
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 min-height: 48px;
	 padding: 0 28px;
	 border: 0;
	 border-radius: 10px;
	 background: linear-gradient(135deg, #111827, #374151);
	 color: #fff;
	 font-family: "black";
	 font-size: 14px;
	 letter-spacing: 0.3px;
	 cursor: pointer;
	 box-shadow: 0 7px 18px rgba(0, 0, 0, 0.15);
	 transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 .restart-quiz:hover {
	 transform: translateY(-2px);
	 box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
 .blog-post-title {
	 margin: 0 0 10px;
	 font-size: 25px;
	 color: #111;
	 font-family: "black";
}
 .blog-post-mast-head {
	 width: 100%;
	 height: 30px;
	 width: 100%;
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
	 margin-top: 5px;
	 margin-bottom: 5px;
}
 .blog-post-date-time {
	 color: #666;
	 font-size: 15px;
}
 .blog-post-read-min {
	 color: #000;
	 font-size: 15px;
}
 .blog-post-image {
	 width: 100%;
	 height: 350px;
	 object-fit: cover;
	 display: block;
	 box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
	 border-radius: 5px;
	 margin-bottom: 10px;
}
 .img-src {
	 color: #666;
	 font-size: 14px;
	 font-style: italic;
}
 .blog-post h2 {
	 margin: 0 0 10px;
	 font-size: 18px;
	 color: #111;
	 margin-top: 10px;
}
 .blog-post p {
	 font-family: "regular";
	 margin: 0;
	 color: #666;
	 font-size: 18px;
	 text-align: justify;
	 margin-top: 15px;
}
 .social-share {
	 display: flex;
	 align-items: center;
	 gap: 10px;
	 flex-wrap: wrap;
	 margin: 10px 0;
}
 .social-share a {
	 font-family: "semibold";
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 min-width: 70px;
	 height: 32px;
	 padding: 0 8px;
	 border-radius: 3px;
	 color: #fff;
	 text-decoration: none;
	 font-size: 14px;
	 font-weight: 600;
	 font-family: Arial, sans-serif;
	 transition: opacity 0.2s ease, transform 0.2s ease;
}
 .social-share a:hover {
	 opacity: 0.85;
	 transform: translateY(-2px);
}
/* Facebook */
 .social-share a:nth-child(1) {
	 background: #1877f2;
}
/* Twitter / X */
 .social-share a:nth-child(2) {
	 background: #000;
}
/* Reddit */
 .social-share a:nth-child(3) {
	 background: #ff4500;
}
/* WhatsApp */
 .social-share a:nth-child(4) {
	 background: #25d366;
}
 .more-stories {
	 width: 100%;
	 height: 50px;
	 margin-top: 15px;
	 margin-bottom: 15px;
	 border-top: 3px solid black;
	 border-bottom: 3px solid black;
	 display: flex;
	 align-items: center;
	 justify-content: start;
	 color: #c60000;
	 font-family: "bold";
	 font-size: 20px;
}
/* ========================================== ALSO READ ========================================== */
 .also-read {
	 width: 100%;
	 margin: 20px 0 25px;
	 border: 1px solid #ddd;
	 background: #fff;
	 box-sizing: border-box;
}
 .also-read-heading {
	 padding: 10px 15px;
	 border-bottom: 4px solid #c60000;
	 font-family: "black";
	 font-size: 20px;
	 color: #111;
	 text-transform: uppercase;
}
 .also-read-list {
	 padding: 5px 15px;
}
 .also-read-item {
	 display: flex;
	 align-items: flex-start;
	 gap: 15px;
	 padding: 15px 0;
	 border-bottom: 1px solid #ddd;
	 text-decoration: none;
	 color: #111;
}
 .also-read-item:last-child {
	 border-bottom: none;
}
 .also-read-item img {
	 width: 120px;
	 height: 80px;
	 flex-shrink: 0;
	 object-fit: cover;
	 border-radius: 4px;
	 box-shadow: rgba(60, 64, 67, 0.2) 0px 1px 2px 0px, rgba(60, 64, 67, 0.1) 0px 1px 3px 1px;
}
 .also-read-content {
	 flex: 1;
	 min-width: 0;
}
 .also-read-title {
	 font-family: "semibold";
	 font-size: 17px;
	 line-height: 1.3;
	 color: #111;
	 display: -webkit-box;
	 -webkit-box-orient: vertical;
	 -webkit-line-clamp: 2;
	 overflow: hidden;
}
 .also-read-description {
	 font-family: "regular";
	 margin-top: 5px;
	 font-size: 13px;
	 line-height: 1.35;
	 color: #666;
	 display: -webkit-box;
	 -webkit-box-orient: vertical;
	 -webkit-line-clamp: 2;
	 overflow: hidden;
}
 .also-read-item:hover .also-read-title {
	 color: #c60000;
}
/* Mobile */
 @media (max-width: 710px) {
	 .container {
		 width: 100vw;
	}
}
 @media (max-width: 550px) {
	 .quiz-container {
		 margin: 15px auto;
		 border-radius: 14px;
	}
	 .quiz-header {
		 padding: 18px 16px;
	}
	 .quiz-title {
		 font-size: 16px;
	}
	 .quiz-progress {
		 font-size: 12px;
		 padding: 6px 10px;
	}
	 .quiz-question {
		 padding: 22px 16px;
	}
	 .question-text {
		 font-size: 19px;
	}
	 .quiz-option {
		 min-height: 54px;
		 padding: 12px;
	}
	 .option-text {
		 font-size: 15px;
	}
	 .quiz-navigation button {
		 min-height: 43px;
		 padding: 0 17px;
		 font-size: 13px;
	}
	 .quiz-result {
		 margin: 20px auto;
		 padding: 35px 16px 28px;
		 border-radius: 17px;
	}
	 .iq-score {
		 font-size: 82px;
	}
	 .result-score {
		 font-size: 15px;
	}
	 .quiz-share-card {
		 padding: 18px 12px;
	}
	 .quiz-share-buttons {
		 gap: 7px;
	}
	 .quiz-share-buttons a, .quiz-share-buttons button {
		 min-width: 72px;
		 height: 38px;
		 padding: 0 9px;
		 font-size: 11px;
	}
	 .ticker-bar {
		 height: 40px;
	}
	 .ticker-label {
		 padding: 0 10px;
		 font-size: 10px;
	}
	 .ticker-item {
		 height: 40px;
		 padding: 0 18px;
		 font-size: 12px;
	}
	 .menu-toggle {
		 width: 44px;
		 height: 40px;
	}
	 .dropdown-inner {
		 grid-template-columns: repeat(2, 1fr);
	}
	 .ad-container {
		 flex-direction: column;
	}
	 .news-grid {
		 grid-template-columns: 1fr;
		 gap: 10px;
	}
	 .card-item {
		 flex-direction: column;
	}
	 .popular-card, .game-card {
		 padding: 10px 10px 10px;
	}
	 .card-item img {
		 width: 100%;
		 height: 150px;
	}
	 #game-list {
		 gap: 6;
		 justify-content: space-between;
	}
	 .game-item img {
		 width: 60px;
		 height: 60px;
	}
	 .game-item p {
		 display: none;
	}
	 .blog-post-title {
		 font-size: 20px;
	}
	 .blog-post-image {
		 height: 200px;
	}
	 .social-share a {
		 max-width: 60px;
		 font-size: 12px;
	}
	 .card-title, .card-description, .action-card {
		 padding-left: 0px;
	}
	 .card-title {
		 margin-top: 10px;
	}
	 .card-heading h2 {
		 font-size: 20px;
	}
}
 