@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #1e3c72;
  --secondary: #2a5298;
  --accent: #f0a500;
  --text: #1e293b;
  --text-light: #64748b;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  --radius: 12px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-intro {
  text-align: center;
  margin-bottom: 40px;
}
.overline {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--primary);
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 12px;
  color: var(--primary);
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.logo span {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
}
.advert-badge {
  font-size: 0.85rem;
  color: var(--text-light);
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 20px;
}

main {
  flex: 1;
}

.hero {
  padding: 48px 24px;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.hero-image img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  color: #fff;
  background: #000;
  min-width: 160px;
  justify-content: center;
}
.store-btn i {
  font-size: 1.4rem;
}
.google-play {
  background: #1a1a1a;
}
.app-store {
  background: #000;
}
.store-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.features {
  padding: 40px 0 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.feature-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.posts-section {
  padding: 40px 0 48px;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.post-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.post-caption {
  padding: 16px;
}
.post-caption h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.post-caption p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.read-more {
  display: inline-block;
  background: transparent;
  border: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.faq {
  padding: 40px 0 48px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 8px;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  position: relative;
  padding-right: 32px;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--primary);
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 8px;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 16px;
}
.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
}

footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 40px 0 16px;
  margin-top: auto;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}
.footer-brand .logo {
  margin-bottom: 12px;
}
.footer-heading {
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-contact p {
  margin-bottom: 4px;
}
.footer-legal a {
  display: block;
  color: #cbd5e1;
  margin-bottom: 4px;
}
.footer-legal a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 12px;
  text-align: center;
  font-size: 0.85rem;
}

.legal-content,
.news-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.legal-content h1,
.news-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}
.legal-content h2,
.news-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--primary);
}
.legal-content h3,
.news-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text);
}
.legal-content p,
.legal-content li,
.news-content p,
.news-content li {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}
.legal-content ul,
.legal-content ol,
.news-content ul,
.news-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 32px 16px;
  }
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.news-hero-image {
  display: block;
  width: 100%;
  height: 450px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.header-right {
  display: none;
}

.footer-brand span {
  color: white;
}
.legal-content {
  word-break: break-word;
}