:root {
  --primary: #7153f3;
  --primary-rgb: 113, 83, 243;
  --primary-glow: rgba(113, 83, 243, 0.4);
  --secondary: #ff007f;
  --secondary-rgb: 255, 0, 127;
  --black: #050505;
  --dark-bg: #0a0a0c;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --text-main: #f0f0f0;
  --text-dim: #94a3b8;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --border-radius: 24px;
}

* {
  box-sizing: border-box;
  font-family: var(--font-main);
}

body {
  margin: 0;
  background-color: var(--black);
  color: var(--text-main);
  background-image:
    radial-gradient(at 0% 0%, rgba(113, 83, 243, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(255, 0, 127, 0.1) 0px, transparent 50%);
  background-attachment: fixed;
  line-height: 1.6;
}

/* --- Layout System --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.container-mini {
  width: 100%;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-md-4,
.col-md-8,
.col-md-6,
.col-md-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.clear {
  clear: both;
}

/* --- Premium Navigation --- */
.main-header {
  height: 80px;
  background: rgba(13, 6, 23, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.main-header .container {
  height: 100%;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.3));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Desktop Nav */
.desktop-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}

.desktop-nav ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.desktop-nav ul li a:hover {
  color: #fff;
}

.desktop-nav ul li a:hover::after {
  width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 6px;
}

.mobile-toggle .line {
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  justify-content: flex-end;
}

.mobile-menu-overlay.active {
  right: 0;
}

.mobile-menu-content {
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--dark-bg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.mobile-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.mobile-close:hover {
  background: var(--primary);
  border-color: transparent;
  transform: rotate(90deg);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  margin-bottom: 25px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav ul li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-nav ul li a i {
  font-size: 1.2rem;
  color: var(--primary);
  width: 30px;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.mobile-menu-footer .social-links {
  display: flex;
  gap: 15px;
}

.mobile-menu-footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-footer .social-links a:hover {
  background: var(--primary);
  border-color: transparent;
  transform: translateY(-3px);
}

/* --- Global Title Style --- */

.main-box-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 16px;
}

.main-quiz-box-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}

.game-box {
  border-radius: 10px;
  position: relative;
  transition: .3s ease;
  transform: scale(1) translateY(0);
}

.game-box:hover {
  transform: scale(1.02) translateY(-4px);
}

.game-box img {
  border-radius: 10px;
  max-height: 450px;
  min-height: 400px;
}

.game-box .content {
  position: absolute;
  background: linear-gradient(rgba(17, 5, 33, .3), rgba(17, 5, 33, .8) 70%, rgba(17, 5, 33, .95));
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  flex-grow: 1;
  border-radius: 10px;
  color: var(--white);
  text-align: center;
  padding: 10px 10px 30px;
}

.game-box .content h3 {
  margin: 0;
  font-size: var(--font-xl);
  font-family: var(--dfont);
}

.game-box .content p {
  margin: 16px 0;
  font-size: var(--font-xxs);
}

.game-box .content .game-btn {
  background-color: var(--secondary);
  border-radius: 30px;
  color: var(--black);
  font-weight: bold;
  font-size: var(--font-xxs);
  padding: 8px 16px 6px;
  text-transform: uppercase;
}

/* --- Premium Footer --- */
.premium-footer {
  margin-top: 80px;
  padding: 80px 0 40px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.footer-brand img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.3));
}

.footer-section-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.premium-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-footer-menu li {
  margin-bottom: 15px;
}

.premium-footer-menu li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: block;
}

.premium-footer-menu li a:hover {
  color: var(--primary);
  transform: translateX(8px);
}

.premium-social-links {
  display: flex;
  gap: 15px;
}

.premium-social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.premium-social-links a:hover {
  background: var(--primary) !important;
  border-color: transparent !important;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px var(--primary-glow);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  margin: 40px 0 30px;
}

.footer-bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-info p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

@media (max-width: 767px) {
  .footer-bottom-info {
    flex-direction: column;
    text-align: center;
  }
}

.main-box-wrapper.trending-wrapper .game-box:nth-of-type(1) .content {
  background: linear-gradient(rgba(255, 107, 0, 0), rgba(255, 107, 0, 0) 30%, #ff0090)
}

.main-box-wrapper.trending-wrapper .game-box:nth-of-type(2) .content {
  background: linear-gradient(0deg, rgba(65, 0, 64, .69), rgba(207, 34, 0, .5) 20%, rgba(255, 224, 0, 0) 70%, rgba(255, 224, 0, 0))
}

.main-box-wrapper.trending-wrapper .game-box:nth-of-type(3) .content {
  background: linear-gradient(0deg, rgba(15, 0, 96, .7), rgba(133, 0, 187, .5) 20%, rgba(255, 224, 0, 0) 70%, rgba(255, 224, 0, 0))
}

.main-box-wrapper.trending-wrapper .game-box:nth-of-type(4) .content {
  background: linear-gradient(0deg, rgba(255, 0, 144, .9), rgba(255, 107, 0, .3) 70%, rgba(255, 107, 0, 0))
}

.main-box-wrapper.trending-wrapper .game-box:nth-of-type(5) .content {
  background: linear-gradient(0deg, rgba(15, 0, 96, .7), rgba(133, 0, 187, .5) 20%, rgba(255, 224, 0, 0) 70%, rgba(255, 224, 0, 0))
}

.main-box-wrapper.trending-wrapper .game-box:nth-of-type(6) .content {
  background: linear-gradient(0deg, #00c7d8, rgba(0, 199, 216, 0) 35%, rgba(0, 199, 216, 0))
}

.main-box-wrapper.trending-wrapper .game-box:nth-of-type(7) .content {
  background: linear-gradient(0deg, #5f00e8, rgba(95, 0, 232, 0) 70%, rgba(95, 0, 232, 0))
}

.main-box-wrapper.trending-wrapper .game-box:nth-of-type(8) .content {
  background: linear-gradient(rgba(142, 5, 174, 0), rgba(217, 0, 127, .6) 80%, rgba(108, 0, 128, .8))
}

.main-box-wrapper.trending-wrapper .game-box:nth-of-type(9) .content {
  background: linear-gradient(0deg, #241f4e, rgba(36, 31, 78, 0) 70%, rgba(36, 31, 78, 0))
}

.main-box-wrapper.trending-wrapper .game-box:nth-of-type(10) .content {
  background: linear-gradient(0deg, rgba(255, 0, 144, .7), rgba(255, 107, 0, .1) 70%, rgba(255, 107, 0, 0))
}

.header-title {
  text-align: center;
}

.quiz-list {
  color: var(--white);
  counter-reset: mycounter;
  padding: 24px;
  background: var(--gray);
  list-style: none;
  border-radius: 32px;
  margin: 0;
  box-shadow: inset 0 0 0 3px var(--placeholder-color-active);
}

.abt_outer .quiz-list li {
  counter-increment: mycounter;
  display: flex;
  align-items: center;
}

.abt_outer .quiz-list li:before {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  content: counter(mycounter);
  color: #fff;
  line-height: 1;
}

.abt_outer .quiz-list li:nth-child(1):before {
  background: #00b9e6;
}

.abt_outer .quiz-list li:nth-child(2):before {
  background: #fe2591;
}

.abt_outer .quiz-list li:nth-child(3):before {
  background: #ffa202;
}

.abt_outer .quiz-list li:nth-child(4):before {
  background: #fd6a3c;
}

.abt_outer .quiz-list li:nth-child(3):before {
  background: #771fdd;
}

.quiz-input {
  margin: 20px 0 12px;
}

.quiz-input input[type="text"],
.quiz-input textarea {
  width: 100%;
  padding: 18px 24px;
}

input[type="text"],
textarea {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  font-family: var(--font);
  font-size: 18px;
  border-radius: var(--border-radius-inputs);
  color: var(--white);
  line-height: 1.2;
  font-style: var(--font-style);
  box-shadow: inset 0 0 0 3px var(--placeholder-color-active);
  background: var(--input-bg);
}

input:active,
input:focus,
textarea:active,
textarea:focus {
  background: var(--input-bg-active);
  box-shadow: inset 0 0 0 3px var(--input-border-active);
}

input,
textarea {
  transition: .3s ease;
}

.terms-form {
  text-align: left;
  color: var(--white);
}

.terms-form a {
  color: var(--white);
  text-decoration: underline;
}

.secrt-msg-cta {
  margin: 30px 0;
  text-align: center;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 50px;
  width: 100%;
  border-radius: 99px;
  cursor: pointer;
  font-size: var(--font-xxl);
  border: none;
  text-transform: capitalize;
  font-family: var(--font);
}

.premium-quiz-container {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.premium-quiz-container:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
}

.premium-btn-start {
  background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
  color: #fff;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-btn-start:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.6);
  filter: brightness(1.1);
}

.premium-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 15px !important;
  padding: 15px 25px !important;
  color: #fff !important;
  font-size: 1.1rem !important;
  transition: all 0.3s ease !important;
}

.premium-input:focus {
  border-color: var(--primary) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2) !important;
}

.quiz-premium-header {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.1) 0%, transparent 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
}

.quiz-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(to bottom, #fff 30%, rgba(255, 255, 255, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 15px;
  letter-spacing: -1.5px;
}

.quiz-meta-info {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.result-celebration-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(var(--primary-rgb), 0.15);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 50px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.result-headline {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.premium-ad-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  margin: 40px 0;
  text-align: center;
  position: relative;
}

.ad-label {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--black);
  padding: 0 10px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.main-left {
  animation: fadeIn 0.8s ease-out;
}

.main-right {
  animation: fadeIn 0.8s ease-out 0.2s both;
}

/* Media Queries */
@media (max-width: 768px) {
  .quiz-main-title {
    font-size: 2.5rem;
  }

  .result-headline {
    font-size: 2rem;
  }

  .premium-quiz-container {
    padding: 30px 20px;
  }
}

.abt_outer {
  color: var(--white);
}

.abt_outer p {
  font-size: var(--font-m);
  line-height: 24px;
}

.abt_outer li {
  margin-bottom: 8px;
}

.abt_outer ul:not(.quiz-list),
.page-content ul,
.entry-content ul,
.full-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 16px 0;
}

.abt_outer ol:not(.quiz-list),
.page-content ol,
.entry-content ol,
.full-content ol {
  list-style: decimal;
  padding-left: 24px;
  margin: 16px 0;
}

.page-content li,
.entry-content li,
.full-content li {
  margin-bottom: 8px;
}

.generated-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gray);
  border-radius: 30px;
  padding: 24px;
  box-shadow: inset 0 0 0 3px var(--placeholder-color-active);
}

.headline {
  font-weight: 800;
  font-size: var(--font-xxl);
  text-align: center;
  font-family: var(--font);
}

.subscribe-form {
  width: 100%
}

.generated-info {
  text-align: center;
  padding-top: 16px;
  line-height: 1.3;
  font-size: var(--font-l);
  font-family: var(--font);
}

.generated-wrapper input[type="text"] {
  width: 100%;
  padding: 15px 18px;
  background: var(--input-bg-active);
  box-shadow: none;
  margin: 24px 0 12px;
  text-align: center;
  font-size: 18px;
  color: #ccc;
  font-style: italic;
  font-family: var(--font);
}

.copy {
  background: var(--button-color);
  color: #fff;
  font-size: var(--font-l);
  font-family: var(--font);
}

.copy.copied {
  background: var(--green);
}

.generated-wrapper input[type="text"].copied {
  box-shadow: inset 0 0 0 3px var(--green);
}

.other-share {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.whatsapp {
  background: var(--green);
  color: #fff;
  font-size: var(--font-m);
}

.more-share {
  background: #332f3b;
  color: #fff;
  font-size: var(--font-m);
}

.refresh-msg {
  font-size: var(--font-m);
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  color: var(--secondary);
}

.messageboard-wrapper h2,
.no-message {
  text-align: center;
}

.messageboard-wrapper {
  background: #000;
  border-radius: 30px;
  padding: 2px 20px 24px 20px
}

.report-a-span {
  display: flex;
  justify-content: space-between;
}

.message-board {
  padding: 12px;
  color: #d6d6e5;
  background: var(--placeholder-color-active);
  border-radius: 10px;
  margin: 12px 0px 8px 0;
  font-size: var(--font-m);
  position: relative;
  font-family: cursive;
  font-weight: bold;
  box-shadow: inset 0 0 0 3px var(--placeholder-color-active);
  text-align: center;
}

.message-board>span {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #000;
  padding: 3px 9px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: var(--font-m);
  box-shadow: inset 0 0 0 3px var(--placeholder-color-active);
}

button.button.new-link {
  font-size: 20px;
  background: linear-gradient(-45deg, #ffcf42, #fd6a3c, #f0327b, #771fdd, #7f1bff, #981bff, #e41bff);
  color: #fff;
  background-size: 400% 400%;
  animation: bfqPromoBg 20s ease infinite;
}

.m2 {
  margin: 12px;
}

.mb-3 {
  margin-bottom: 12px;
}

.table-head {
  display: flex;
  font-size: var(--font-l);
  justify-content: space-between;
  font-weight: bold;
  border-bottom: 1px solid var(--secondary);
  padding: 2px;
}

.table-list {
  background: var(--gray);
  border-radius: 30px;
  padding: 14px;
  box-shadow: inset 0 0 0 3px var(--placeholder-color-active);
  padding-bottom: 50px;
}

.entry {
  display: flex;
  padding: 10px;
  justify-content: space-between;
  font-size: var(--font-m);
  gap: 20px;
}

.result-ani {
  animation: pulseBordeResults 2s ease infinite;
}

.hp-ims {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 450px;
  padding-bottom: 12px;
}

i.deco {
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  animation-iteration-count: infinite;
}

i.deco.star1 {
  width: 45px;
  height: 42px;
  background-image: url("../images/s.svg");
  animation-delay: -.5s;
  animation-duration: 1.8s;
}

i.deco.star1 {
  animation-name: decoHearts;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

i.deco.star2 {
  width: 40px;
  height: 45px;
  background-image: url("../images/s5.svg");
  animation-delay: -1.5s;
  animation-duration: 16s;
}

i.deco.star2 {
  animation-name: decoStars;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

i.deco.star3 {
  width: 45px;
  height: 40px;
  background-image: url("../images/s3.svg");
  animation-delay: -.5s;
  animation-duration: 1.8s;
}

i.deco.star3 {
  animation-name: decoHearts;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

i.deco.star4 {
  width: 35px;
  height: 40px;
  background-image: url("../images/s2.svg");
  animation-delay: -1.5s;
  animation-duration: 16s;
}

i.deco.star4 {
  animation-name: decoStars;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

img.s-img {
  border-radius: 13%;
  padding-top: 12px;
  max-width: 450px;
}

@keyframes bfqPromoBg {
  0% {
    background-position: 0
  }

  50% {
    background-position: 100%
  }

  100% {
    background-position: 0
  }
}

/* Zoom-out hide animation */
@keyframes zoomOut {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0);
    opacity: 0;
  }
}

/* Zoom-in show animation */
@keyframes zoomIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulseBordeResults {
  50% {
    box-shadow: inset 0 0 0 3px var(--input-border-active)
  }
}

@keyframes decoStars {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes decoHearts {
  0% {
    transform: rotate(0)
  }

  40% {
    transform: rotate(6deg)
  }

  100% {
    transform: rotate(-6deg)
  }
}

.zoomOut {
  animation: zoomOut 0.5s forwards;
}

.zoomIn {
  animation: zoomIn 0.5s forwards;
}


#_1 {
  fill: #ba4d4e;
}

#_2 {
  fill: #1592e8;
}

#_3 {
  fill: #14c187;
}

#_4 {
  fill: #fc7800;
}

#_5 {
  fill: #14c187;
}

#_6 {
  fill: #1592e8;
}

#_7 {
  fill: #ba4d4e;
}

#_8 {
  fill: #1592e8;
}

#_9 {
  fill: #14c187;
}

#_10 {
  fill: #fc7800;
}

#_11 {
  fill: #14c187;
}

#_12 {
  fill: #1592e8;
}

.frame,
.sticks {
  fill: #fff;
}

.winIndicator {
  fill: #fff;
}

.wheelMiddle {
  fill: #fff;
}

.luckywheel {
  margin: auto;
  width: 100%;
  padding: 27px;
  max-width: 350px;
}

.lucky-response {
  width: 100%;
  height: 150px;
  color: var(--white);
  background: linear-gradient(-45deg, #ffcf42, #fd6a3c, #f0327b, #771fdd, #7f1bff, #981bff, #e41bff);
  background-size: 400% 400%;
  animation: bfqPromoBg 20s ease infinite;
  margin: 23px 0;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: var(--font-xl)
}

.menu-section .close {
  display: none;
}

.main-inner-page {
  display: grid;
  grid-template-columns: 70% auto;
  color: #fff;
}

.landing_outer .page-content {
  padding: 0 20px;
}

.menu-section .close {
  display: none;
}

.page-image img {
  height: auto;
}

.time-and-comment {
  padding: 12px 0;
}

.main-ad-desktop {
  display: table;
}

.main-ad-mobile {
  display: none;
}

.sticky-ad {
  max-height: 50px;
  position: fixed;
  bottom: 0;
  width: 320px;
  height: 50px;
  z-index: 999;
  left: calc(50% - 160px);
}

.quiz-image-wrapper {
  border: 3px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0px 20px 0px;
}

.quiz-image-wrapper>img {
  height: auto;
}

.top-quiz-title {
  padding: 48px 24px;
  color: #fff;
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
  background-size: cover;
  background-position: 50%;
  background-color: var(--hero-color);
  background-image: var(--hero-gradient);
}

.progress {
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 20px;
  gap: 16px;
}

.progress .number {
  display: flex;
  align-items: center;
}

.progress .number i {
  display: flex;
  margin: 0 8px;
  width: 3px;
  height: 14px;
  background: var(--border-color);
  transform: rotate(25deg);
  border-radius: 1.5px;
}

.progress .bar {
  flex-grow: 1;
  background: var(--border-color);
  border-radius: 3px;
  height: 6px;
}

.progress .bar .fill {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  border-radius: 3px;
  transition: .3s ease;
  background: linear-gradient(0deg, rgba(21, 0, 38, .3), transparent), linear-gradient(90deg, #7500ff, #be00ff, #ff14cf, #be00ff, #7500ff, #be00ff);
  background-size: cover, 500% 100%;
  animation: fancyBackgroundAnimation 4s ease infinite;
}

.result-headline {
  font-size: var(--font-xl);
}

.result-title {
  font-size: 45px;
}

.result-wrapper {
  background: linear-gradient(-45deg, #ffcf42, #fd6a3c, #f0327b, #771fdd, #7f1bff, #981bff, #e41bff);
  background-size: 400% 400%;
  animation: bfqPromoBg 20s ease infinite;
  padding: 20px;
  border-radius: 30px;
  margin-top: 20px;
}

.share-result {
  text-align: center;
  padding: 20px;
  font-size: var(--font-xl);
}

.share-box {
  display: grid;
  gap: 12px;
}

.fb {
  background: #2f55a4;
  color: #fff;
}

.twitter {
  background: #000;
  color: #fff;
}

.retake-quiz {
  text-align: center;
  padding: 20px;
  color: #ccc;
  cursor: pointer;
}

button#quiz-start-btn {
  animation: idleHover 5s ease-in-out infinite;
  background: #981bff;
  border: 2px solid #fff;
  color: #fff
}

.quiz-title {
  font-size: var(--font-xxl);
  padding: 0 10px;
}

.quiz-image-sc {
  height: 180px;
  background-size: cover;
  background-position: 50%;
}

.quiz-container {
  padding: 1.2em;
  max-width: 100%;
  margin: 1em auto
}

@keyframes idleHover {

  0%,
  10% {
    transform: scale(1)
  }

  45%,
  50% {
    transform: scale(1.1)
  }
}

.full-s ul {
  list-style: disc;
  margin: 0 30px 0;
}

.full-s ul li {
  margin-bottom: 8px;
}

.primary-img {
  border-radius: 18px;
  overflow: hidden;
  margin-top: 10px;
}

.game-categories {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.game-category {
  padding: 10px 15px 10px 15px;
  background: #981bff;
  border-radius: 100px;
  font-size: var(--font-m);
  cursor: pointer;
}

.game-category.active {
  background: #f0327b;
}

.dare-btn {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.dare-question {
  margin: 20px;
  font-size: 24px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  max-height: 300px;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: var(--font-xxxl);
}

.dare-question.show {
  opacity: 1;
}

button.dare-button {
  border: none;
  background: #fff;
  color: #000;
  border-radius: 100px;
  padding: 15px 30px;
  font-size: 20px;
}

.full-content {
  width: 98%;
  display: table;
}

.game-box.latest {
  min-height: 300px;
}

.blog-main-page .wp-post-image {
  height: auto;
}

.post-meta {
  margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  .logo img {
    width: 120px;
    height: 37px
  }

  .header .container {
    width: 90%;
    grid-template-columns: auto;
    display: block;
    padding: 4px 20px;
    justify-content: center;
    position: static;
    transform: none;
  }

  .menu-section {
    display: none;
    position: fixed;
    z-index: 9;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #fff;
  }

  .main-box-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .container-max {
    max-width: 90%;
  }

  .game-box img {
    min-height: 250px;
  }

  .game-box .content h3 {
    font-size: var(--font-l);
  }

  .main-box-wrapper.trending-wrapper .game-box .content {
    padding: 10px;
  }

  .game-box .content {
    padding: 10px 10px 12px;
  }

  .game-box .content p {
    margin: 10px 0;
  }

  .footer-bottom {
    padding: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }

  .footer-copyright .container {
    padding: 10px;
  }

  .header-wrapper {
    display: grid;
    grid-template-columns: auto max-content;
    width: 100%;
    align-items: center;
  }

  .menu-hamburger {
    display: block;
  }

  .menu-section nav ul {
    display: block;
  }

  .menu-section nav ul li a {
    color: var(--black);
  }

  .menu-section .close {
    display: grid;
    justify-content: flex-end;
    text-align: center;
    color: var(--black);
    margin: 10px 10px 0 0;
  }

  .menu-section .close span {
    background-color: var(--black);
    width: 26px;
    height: 26px;
    line-height: 26px;
    border-radius: 50%;
    color: var(--white);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }

  .main-inner-page {
    grid-template-columns: auto;
  }

  .main-ad-desktop {
    display: none;
  }

  .main-ad-mobile {
    display: table;
  }

  .quiz-image-sc {
    height: 100px;
  }

  .result-title {
    font-size: 42px;
  }

  .game-box.latest {
    min-height: 200px;
  }

  .full-ss,
  .single-blog-page {
    line-height: 1.7;
  }
}

/* --- Message Board & Blockquote Styles --- */

.messageboard-section {
  margin: 60px 0;
  width: 100%;
}

.message-board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
  width: 100%;
}

@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.secret-message-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  overflow: hidden;
  animation: cardAppear 0.5s ease backwards;
}

.secret-message-card:nth-child(2) {
  animation-delay: 0.1s;
}

.secret-message-card:nth-child(3) {
  animation-delay: 0.2s;
}

.secret-message-card:nth-child(4) {
  animation-delay: 0.3s;
}

.secret-message-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(var(--primary-rgb), 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--primary-rgb), 0.1);
}

.secret-message-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 120px;
  color: rgba(var(--primary-rgb), 0.1);
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
}

.secret-message-text {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 25px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 1;
}

.secret-message-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  margin-top: auto;
}

.secret-message-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.secret-message-author {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.report-message {
  font-size: 0.85rem;
  color: #ff4757;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.report-message:hover {
  color: #ff6b81;
  transform: scale(1.05);
}

.empty-board-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 40px;
  color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.01);
  border-radius: 30px;
  border: 2px dashed rgba(255, 255, 255, 0.05);
}

.empty-board-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.3;
}

.empty-board-text {
  font-size: 1.2rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .message-board-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}