@import url("https://fonts.googleapis.com/css2?family=Gantari:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: #d0021b;
  --text-dark: #000;
  --text-light: #555;
  --bg-light: #fff;
  --font-main: "Gantari", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Gantari", monospace;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-light);
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.site-header .top-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.9rem;
}
.site-header .top-bar .logo {
  display: inline-flex;
  align-items: center;
}
.site-header .top-bar .logo img {
  width: 30px;
  margin-right: 10px;
}

.top-nav {
  display: inline-flex;
  align-items: center;
}
.top-nav a {
  margin-left: 15px;
  text-decoration: none;
  color: var(--primary-color);
}
@media (max-width: 767px) {
  .top-nav {
    display: none;
  }
}

.menu-icon {
  display: none;
}
@media (max-width: 767px) {
  .menu-icon {
    display: inline;
    cursor: pointer;
    width: 22px;
    height: 22px;
    margin-top: 5px;
  }
}
/* Editor's Choice Section */
.editors-choice-section {
  background: linear-gradient(135deg, #ffe5ec, #fff0f4);
  padding: 60px 0;
}

.editors-choice-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.editors-choice-content {
  flex: 1 1 500px;
}

.editors-choice-content h2 {
  font-size: 2rem;
  color: #c9003a;
  margin-bottom: 20px;
}

.editors-choice-content h2 span {
  color: #111;
  font-weight: bold;
}

.editors-choice-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

.editors-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  color: #333;
}

.editors-highlights li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.editors-button {
  background-color: #c9003a;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  display: inline-block;
}

.editors-button:hover {
  background-color: #a8002f;
}

/* Image */
.editors-choice-image img {
  width: 180px;
  max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .editors-choice-container {
    flex-direction: column;
    text-align: center;
  }
  .editors-choice-image {
    margin-top: 30px;
  }
}
@charset "UTF-8";
/* FAQ Section Styles */
.faq-section {
  padding: 40px 0;
}

.faq-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fafafa;
}

/* Question Button */
.faq-question {
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: bold;
  background: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "–";
  transform: rotate(180deg);
}

/* Answer */
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fefefe;
}

.faq-answer p {
  padding: 15px 0;
  font-size: 0.95rem;
  color: #555;
}

/* Opened State */
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 15px;
}
/* Footer Wrapper */
.site-footer {
  color: #222;
  font-family: "Arial", sans-serif;
  padding-top: 50px;
}

/* Top Content */
.footer-top {
  text-align: center;
  padding-bottom: 40px;
}

.footer-heading {
  font-size: 2.9rem;
  margin: 0 auto;
  max-width: 900px;
  margin-bottom: 40px;
  font-weight: 1000;
  line-height: 1;
  background: linear-gradient(45deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .footer-heading {
    font-size: 1.9rem;
  }
}

.footer-features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.feature {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  text-align: center;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 50px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.1rem;
  color: #c9003a;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Bottom Footer */
.footer-bottom {
  border-top: 10px solid #e7c7cf;
  background-color: #333;
  padding: 20px 0;
  padding-top: 100px;
  font-size: 0.9rem;
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.footer-bottom .container p {
  color: #bbb;
}

.footer-logo {
  width: 100px;
  margin-bottom: 20px;
}

.footer-links a {
  margin-left: 15px;
  color: #d17791;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-features {
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
  .footer-links a {
    margin: 0 10px;
  }
}
/* Hero Section */
.hero-modern {
  background: linear-gradient(135deg, #bd1d2b, #ffc371);
  color: #fff;
  padding: 20px 0;
  text-align: left;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 767px) {
  .hero-container {
    gap: 10px;
  }
}

.hero-text {
  flex: 1 1 500px;
}
@media (max-width: 767px) {
  .hero-text {
    flex: 1 1 1px;
  }
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 0.9;
  margin-bottom: 20px;
  font-weight: 900;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fffdfd;
  max-width: 600px;
}

.hero-btn {
  background-color: #ffffff;
  color: #ff4c5c;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #ffeaea;
}

/* Illustration */
.hero-image img {
  max-width: 370px;
  width: 100%;
}
@media (max-width: 767px) {
  .hero-image img {
    max-width: 100px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    align-items: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 0.8rem;
    margin: 0;
  }
  .hero-btn {
    width: 100%;
    max-width: 250px;
  }
}
@media (max-width: 768px) and (max-width: 767px) {
  .hero-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-image {
    margin-top: 0px;
    width: 100%;
  }
}
/* Modern Ranking Card */
.ranking-modern {
  padding: 60px 0;
}
.ranking-modern .updated {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .ranking-modern {
    padding: 10px 0;
  }
  .ranking-modern .updated {
    margin-bottom: 30px;
  }
}

.ranking-card-modern {
  border-radius: 16px;
  padding: 40px;
  transition: transform 0.3s ease;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border: 5px solid #d88200;
  margin-bottom: 50px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .ranking-card-modern {
    margin-top: 10px;
    padding: 10px;
    padding-top: 30px;
  }
}

.ranking-card-modern-other {
  border-radius: 16px;
  padding: 40px;
  transition: transform 0.3s ease;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #ccc;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .ranking-card-modern-other {
    margin-top: 10px;
    padding: 10px;
    padding-top: 30px;
  }
}

.ranking-meta {
  position: absolute;
  top: -25px;
  left: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 767px) {
  .ranking-meta {
    top: -25px;
    left: -20px;
  }
}

.ranking-position {
  background: #b86e00;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1.3rem;
}

.ranking-label {
  background: #d88200;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .ranking-label {
    font-size: 1rem;
  }
}

/* Main Content */
.ranking-main {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ranking-logo {
  width: 20%;
  height: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.ranking-logo img {
  width: 160px;
  height: 160px;
  border-radius: 12px;
}

.ranking-info {
  flex: 1;
  min-width: 250px;
}

.platform-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #111;
}

.platform-description {
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 600;
  color: #555;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .platform-description {
    font-size: 1rem;
  }
}

.feature-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #444;
  margin-top: 30px;
}

.feature-tags li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* CTA & Score */
.ranking-cta {
  text-align: center;
  min-width: 140px;
}

.score-box {
  background: #fff0f4;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.score-label {
  display: inline-block;
  padding: 1px;
  padding-right: 100px;
  font-size: 0.85rem;
  color: #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
}

.score {
  display: inline-block;
  margin-left: -90px;
  font-size: 4rem;
  font-weight: bold;
  color: #ff4c5c;
}

.ranking-button {
  background-color: #ff4c5c;
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  align-content: center;
  transition: background 0.3s ease;
}
.ranking-button img {
  margin-left: 10px;
  width: 20px;
}

.ranking-button:hover {
  background-color: #d53645;
}

/* Responsive */
@media (max-width: 768px) {
  .ranking-main {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .ranking-cta {
    margin-top: 20px;
  }
}
/* Suggested Reads Section */
.suggested-reads {
  padding: 50px 0;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.article-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-content h3 {
  font-size: 1.1rem;
  color: #111;
}

.card-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.card-content a {
  margin-top: auto;
  align-self: flex-start;
  color: #c9003a;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border 0.3s;
}

.card-content a:hover {
  border-bottom: 1px solid #c9003a;
}
/* Testimonials Section */
.testimonials-section {
  padding: 60px 0;
  background: #fef9f9;
  text-align: center;
}

.testimonials-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111;
  font-weight: bold;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: left;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: #444;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: bold;
  color: #c9003a;
  font-size: 0.9rem;
}

/* Responsive: Already handled via grid */
*{-webkit-overflow-scrolling:touch;}.winnetou_display_none{display:none !important;}
/*# sourceMappingURL=winnetouBundle.min.css.map */