:root {
    --primary-color: #113B7A;
    --secondary-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --color-deep-navy: #08162B;
    --light-text-color: #F3F8FF;
    --dark-text-color: #333333;
    --light-bg-section: #ffffff;
    --dark-bg-section: #08162B;
}

.page-blog-f1680-official-deep-dive {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--light-text-color);
    background-color: var(--color-deep-navy);
}

.page-blog-f1680-official-deep-dive__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-blog-f1680-official-deep-dive__dark-bg {
    background-color: var(--color-deep-navy);
    color: var(--light-text-color);
}

.page-blog-f1680-official-deep-dive__light-bg {
    background-color: var(--light-bg-section);
    color: var(--dark-text-color);
}

.page-blog-f1680-official-deep-dive__light-bg h1,
.page-blog-f1680-official-deep-dive__light-bg h2,
.page-blog-f1680-official-deep-dive__light-bg h3,
.page-blog-f1680-official-deep-dive__light-bg h4,
.page-blog-f1680-official-deep-dive__light-bg h5,
.page-blog-f1680-official-deep-dive__light-bg h6,
.page-blog-f1680-official-deep-dive__light-bg a {
    color: var(--primary-color);
}

.page-blog-f1680-official-deep-dive__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    color: inherit;
}

.page-blog-f1680-official-deep-dive__sub-section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: inherit;
}

.page-blog-f1680-official-deep-dive p {
    margin-bottom: 15px;
    color: inherit;
}

.page-blog-f1680-official-deep-dive strong {
    color: var(--gold-color);
}

.page-blog-f1680-official-deep-dive__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px;
  background-color: var(--color-deep-navy);
  color: var(--text-main);
}

.page-blog-f1680-official-deep-dive__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-f1680-official-deep-dive__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-f1680-official-deep-dive__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-f1680-official-deep-dive__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-f1680-official-deep-dive__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--gold-color);
    line-height: 1.2;
}

.page-blog-f1680-official-deep-dive__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

.page-blog-f1680-official-deep-dive__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-f1680-official-deep-dive__cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-blog-f1680-official-deep-dive__cta-button--small {
    padding: 10px 25px;
    font-size: 16px;
    margin-top: 15px;
}

.page-blog-f1680-official-deep-dive__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.page-blog-f1680-official-deep-dive__image-text-block--reverse {
    flex-direction: row-reverse;
}

.page-blog-f1680-official-deep-dive__image-text-block img {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-f1680-official-deep-dive__text-content {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
}

.page-blog-f1680-official-deep-dive__grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-blog-f1680-official-deep-dive__card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-blog-f1680-official-deep-dive__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-f1680-official-deep-dive__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-blog-f1680-official-deep-dive__card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--gold-color);
}

.page-blog-f1680-official-deep-dive__card-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--glow-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog-f1680-official-deep-dive__card-link:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.page-blog-f1680-official-deep-dive__promo-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-blog-f1680-official-deep-dive__promo-list li {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-main);
}

.page-blog-f1680-official-deep-dive__promo-list li::before {
    content: '⭐';
    font-size: 1.2em;
    color: var(--gold-color);
    flex-shrink: 0;
    line-height: 1.6;
}

.page-blog-f1680-official-deep-dive__payment-methods {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-blog-f1680-official-deep-dive__payment-methods li {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 15px 25px;
    border-radius: 8px;
    color: var(--text-main);
    font-weight: bold;
    text-align: center;
    flex-basis: calc(33% - 20px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.page-blog-f1680-official-deep-dive__payment-methods li::before {
    content: '💳';
    font-size: 1.5em;
    margin-right: 10px;
    color: var(--glow-color);
}

.page-blog-f1680-official-deep-dive__button-group {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-blog-f1680-official-deep-dive__faq-section {
    background-color: var(--color-deep-navy);
    color: var(--text-main);
}

.page-blog-f1680-official-deep-dive__faq-list {
    margin-top: 30px;
}

details.page-blog-f1680-official-deep-dive__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  color: var(--text-main);
}
details.page-blog-f1680-official-deep-dive__faq-item summary.page-blog-f1680-official-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--gold-color);
}
details.page-blog-f1680-official-deep-dive__faq-item summary.page-blog-f1680-official-deep-dive__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-f1680-official-deep-dive__faq-item summary.page-blog-f1680-official-deep-dive__faq-question:hover {
  background: var(--primary-color);
}
.page-blog-f1680-official-deep-dive__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: inherit;
}
.page-blog-f1680-official-deep-dive__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--glow-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-f1680-official-deep-dive__faq-item .page-blog-f1680-official-deep-dive__faq-answer {
  padding: 0 20px 20px;
  background: var(--color-deep-navy);
  border-radius: 0 0 5px 5px;
  color: var(--text-secondary);
}
details.page-blog-f1680-official-deep-dive__faq-item .page-blog-f1680-official-deep-dive__faq-answer p {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .page-blog-f1680-official-deep-dive__image-text-block img,
    .page-blog-f1680-official-deep-dive__text-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-blog-f1680-official-deep-dive__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-blog-f1680-official-deep-dive__hero-image img {
        border-radius: 4px;
    }
    
    .page-blog-f1680-official-deep-dive__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .page-blog-f1680-official-deep-dive__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-blog-f1680-official-deep-dive__subtitle {
        font-size: 1em;
    }

    .page-blog-f1680-official-deep-dive__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-blog-f1680-official-deep-dive__sub-section-title {
        font-size: 1.5em;
    }

    .page-blog-f1680-official-deep-dive__image-text-block {
        flex-direction: column;
        gap: 20px;
    }
    .page-blog-f1680-official-deep-dive__image-text-block--reverse {
        flex-direction: column;
    }

    .page-blog-f1680-official-deep-dive__image-text-block img,
    .page-blog-f1680-official-deep-dive__text-content {
        max-width: 100%;
        min-width: unset;
    }

    .page-blog-f1680-official-deep-dive__grid-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-f1680-official-deep-dive__card {
        padding: 20px;
    }

    .page-blog-f1680-official-deep-dive__card img {
        
    }

    .page-blog-f1680-official-deep-dive__promo-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    .page-blog-f1680-official-deep-dive__promo-list li::before {
        margin-bottom: 10px;
    }

    .page-blog-f1680-official-deep-dive__payment-methods {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-f1680-official-deep-dive__payment-methods li {
        flex-basis: 100%;
        min-height: 50px;
    }

    details.page-blog-f1680-official-deep-dive__faq-item summary.page-blog-f1680-official-deep-dive__faq-question { padding: 15px; }
    .page-blog-f1680-official-deep-dive__faq-qtext { font-size: 15px; }

    .page-blog-f1680-official-deep-dive img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-f1680-official-deep-dive__section,
    .page-blog-f1680-official-deep-dive__card,
    .page-blog-f1680-official-deep-dive__container,
    .page-blog-f1680-official-deep-dive__image-text-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-f1680-official-deep-dive__cta-button,
    .page-blog-f1680-official-deep-dive__btn-primary,
    .page-blog-f1680-official-deep-dive__btn-secondary,
    .page-blog-f1680-official-deep-dive a[class*="button"],
    .page-blog-f1680-official-deep-dive a[class*="btn"] {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      white-space: normal !important;
      word-wrap: break-word !important;
      padding-left: 15px;
      padding-right: 15px;
    }
    .page-blog-f1680-official-deep-dive__cta-buttons,
    .page-blog-f1680-official-deep-dive__button-group,
    .page-blog-f1680-official-deep-dive__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
      display: flex;
      flex-direction: column;
    }
}