:root {
  --color-primary: #0a1b47;
  --color-secondary: #e30613;
  --color-white: #ffffff;
  --color-light-gray: #e9eaee;
  --color-medium-gray: #dbdbdb;
  --color-dark-gray: #494e58;
  --color-text-primary: #0a1b47;
  --color-text-secondary: #2a2e2e;
  --color-text-light: #a0a5ad;
  --font-family-main: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family-main);
  background-color: var(--color-white);
  color: var(--color-text-primary);
  line-height: 1.6;
}

.page-container {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}




/* CSS for section section:Header */
.site-header {
    width: 100%;
  }
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
  }
  .header-top {
    background-color: var(--color-primary);
    height: 60px;
    color: var(--color-white);
  }
  .logo img {
    height: 30px;
  }
  .main-nav ul {
    display: flex;
    gap: 18px;
  }
  .main-nav li a {
    font-size: 16px;
text-transform: uppercase;
  }
  .main-nav li.active a {
    position: relative;
  }
  .main-nav li.active a::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .header-actions .lang-switch {
    font-size: 15px;
    font-weight: 700;
  }
  .header-bottom {
    background-color: var(--color-white);
    height: 56px;
    border-bottom: 1px solid var(--color-light-gray);
  }
  .secondary-nav a {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 700;
  }
  .social-nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .social-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }
  .merged-icon {
    position: relative;
    width: 32px;
    height: 32px;
  }
  .merged-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  @media (max-width: 1200px) {
    .main-nav {
      display: none;
    }
  }
  @media (max-width: 768px) {
    .header-container {
      padding: 0 15px;
    }
    .header-actions {
      gap: 10px;
    }
    .social-nav {
      display: none;
    }
  }

/* CSS for section section:Article */
.main-content-area {
    display: flex;
    gap: 20px;
    max-width: 1260px;
    margin: 20px auto 0;
    padding: 0 20px;
  }
  .article-column {
    flex: 1;
    max-width: 940px;
  }
  .sidebar-column {
    width: 300px;
    flex-shrink: 0;
  }
  .article-header {
    margin-bottom: 30px;
  }
  .title-container {
    margin-bottom: 35px;
  }
  .category-tag {
    display: inline-block;
    position: relative;
    padding: 8px 0;
  }
  .category-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--color-secondary);
  }
  .category-text {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-primary);
  }
  .meta-and-socials {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;
    font-size: 15px;
  }
  .meta-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: 12px;

  }
  .meta-info .date, .meta-info .time {


    
  }
  .comment-count {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .social-share {
    display: flex;
    gap: 12px;
  }
  .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
  }
  .social-icon img {
    max-height: 24px;
  }
  .article-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .article-body h1 {
    font-size: 34px;
    line-height: 1.2;
  }
  .article-body p, .article-body li {
    font-size: 18px;
    line-height: 1.7;
  }
  .article-body .lead {
    color: rgba(10, 27, 71, 0.7);
  }
  .article-image {
    border-radius: 4px;
    width: 100%;
  }
  .registration-steps {
    background-color: var(--color-light-gray);
    padding: 24px;
  }
  .registration-steps h4 {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .registration-steps ul {
    padding-left: 20px;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .tabs-container {
    display: flex;
    background-color: var(--color-light-gray);
    padding: 5px 5px;

  }
  .tab {
    flex: 1;
    padding: 11px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .tab.active {
    background-color: var(--color-white);
  }
  .tab h3 {
    font-size: 16px;
    font-weight: 400;
  }
  .tab.active h3 {
    color: var(--color-primary);
  }
  .tab:not(.active) h3 {
    color: rgba(21, 37, 48, 0.5);
  }
  .tab-nav-arrows {
    display: flex;
    gap: 12px;
  }
  .tab-nav-arrows img {
    opacity: 0.7;
    height: 30px;
  }
  .news-widget {
    background-color: var(--color-white);
    padding: 10px 15px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.2);
  }
  .news-widget ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .news-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    position: relative;
    padding-left: 10px;
  }
  .news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 1px;
    height: 30px;
    background-color: var(--color-secondary);
    border-radius: 2px;
  }

  .news-item1 {
    font-weight: 500;
  }
  .news-item1::before  {
    width: 4px;

  }
  .news-time {
    font-size: 13px;
    flex-shrink: 0;
    padding-top: 2px;
  }
  .news-title {
    font-size: 13px;
    line-height: 1.4;
  }
  @media (max-width: 1024px) {
    .main-content-area {
      flex-direction: column;
      margin-top: 30px;
    }
    .article-column, .sidebar-column {
      max-width: 100%;
      width: 100%;
    }
    .sidebar-column {
      margin-bottom: 40px;
      margin-top: 0px;

    }
  }

/* CSS for section section:CtaForm */
.cta-form-section {
    padding: 40px 20px;
    background-color: var(--color-white);
  }
  .cta-form-container {
    max-width: 940px;
    margin: 0 auto;
    background-color: #0f213b;
    color: var(--color-white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.32);
  }
  .cta-text-content {
    text-align: center;
    margin-bottom: 32px;
  }
  .cta-text-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .cta-text-content .subtitle {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
  }
  .cta-text-content p {
    font-size: 18px;
    max-width: 860px;
    margin: 0 auto;
  }
  .cta-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .form-group label {
    text-align: center;
    margin-bottom: 4px;
    font-size: 20px;
  }
  .age-options {
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
  }
  .age-option {
    flex: 1;
    padding: 10px;
    background-color: #87a5c0;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--color-white);
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
  }
  .age-option.active {
    background: linear-gradient(124.03deg, #e34c26 0%, #e94640 100%);
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: inset 0px 12px 12px 0px rgba(255, 255, 255, 0.32), 4px 4px 20px 0px rgba(0, 0, 0, 0.25);
  }
  .cta-form input {
    background-color: var(--color-white);
    border: 1px solid #6a8cf0;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 18px;
    color: var(--color-text-light);
    width: 100%;
  }
  .cta-form input[value] {
    color: #000619;
    border-color: #27d927;
  }
  .phone-group {
    display: flex;
    background-color: var(--color-white);
    border: 1px solid #6a8cf0;
    border-radius: 12px;
    padding: 0 20px;
    align-items: center;
  }
  .phone-group input {
    border: none;
    padding: 16px 10px;
    flex-grow: 1;
  }
  .country-code {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-light);
    padding-right: 10px;
    border-right: 1px solid #ccc;
  }
  .dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #a0a5ad;
  }
  .form-notice {
    font-size: 12px;
    color: var(--color-white);
    opacity: 0.6;
    text-align: center;
  }
  .submit-btn {
    padding: 21.5px;
    border-radius: 12px;
    background: linear-gradient(124.03deg, #e34c26 0%, #e94640 100%);
    color: var(--color-white);
    font-size: 24px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.52);
    cursor: pointer;
    box-shadow: inset 0px 24px 24px 0px rgba(255, 255, 255, 0.32), 4px 4px 20px 0px rgba(0, 0, 0, 0.25);
  }

/* CSS for section section:Comments */
.comments-section {
    padding: 40px 20px;
    background-color: var(--color-white);
  }
  .comments-wrapper {
    max-width: 940px;
    margin: 0 auto;
  }
  .comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-medium-gray);
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  .comments-header h3 {
    font-size: 20px;
    color: var(--color-text-secondary);
  }
  .comments-actions {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-dark-gray);
  }
  .action-item .caret {
    border-top: 5px solid;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    opacity: 0.6;
  }
  .comments-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .comment-item {
    display: flex;
    gap: 10px;
  }
  .avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
  }
  .comment-content {
    flex-grow: 1;
  }
  .comment-meta {
    margin-bottom: 9px;
  }
  .comment-meta .author {
    font-weight: 700;
    color: var(--color-text-secondary);
    margin-right: 8px;
  }
  .comment-meta .time-ago {
    font-size: 14px;
    color: var(--color-dark-gray);
    font-weight: 400;

  }
  .comment-content p {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    font-weight: 400;
  }
  .comment-image {
    max-width: 423px;
    border-radius: 4px;
    margin-bottom: 12px;
  }
  .comment-controls {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 14px;
  }
  .likes-dislikes, .reply-share {
    display: flex;
    gap: 20px;
  }
  .comment-controls button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--color-dark-gray);
  }

/* CSS for section section:Footer */
.site-footer-wrapper {
    color: var(--color-white);
  }
  .footer-nav-section {
    background-color: var(--color-primary);
    padding: 60px 20px;
  }
  .footer-nav-grid {
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
  }
  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-mega-a {
    font-size: 13px;
color: #ffffff70;
line-height: 1.7

  }
.footer-mega-a span {
  color: #fff;
  text-transform: uppercase;
}

  .footer-bottom-section {
    background-color: var(--color-primary);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
  }
  .footer-bottom-container {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
  }
  .footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-logo {
    height: 28px;
    margin-bottom: 12px;
    align-self: flex-start;
  }
  .footer-info p {
    font-size: 12px;
  }
  .footer-apps {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .app-buttons {
    display: flex;
    gap: 10px;
  }
  .app-buttons a {
    display: block;
    width: 137px;
    height: 42px;
    background-color: var(--color-primary);
    border: 1px solid var(--color-white);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .app-buttons img {
    height: auto;
  }
  .footer-bg-image {
width: 200px;
  }
  @media (max-width: 768px) {
    .footer-bottom-container {
      flex-direction: column;
    }
  }


  .xq7_rtcg_cmnt {
  width: 100%;
  background: #ffffff;
  padding: 30px 0 25px;
  font-family: Arial, Helvetica, sans-serif;
  color: #0c1d49;
}

.xq7_innerbox {
  width: min(100%, 1710px);
  margin: 0 auto;
  padding: 0 42px;
  box-sizing: border-box;
}

.xq7_bigttl {
  margin: 0 0 20px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  color: #0c1d49;
}

.xq7_rulesline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  color: #0c1d49;
}

.xq7_morebtn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ed0012;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.xq7_chev {
  width: 12px;
  height: 12px;
  border-right: 3px solid #ed0012;
  border-bottom: 3px solid #ed0012;
  transform: rotate(45deg) translateY(-3px);
}

.xq7_loginstrip {
  width: 100%;

  margin-bottom: 34px;
  padding: 18px 20px;
  border-radius: 6px;

  background: #e9eaef;
  box-sizing: border-box;
  text-align: center;
}

.xq7_loginstrip p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.35;
  color: #0c1d49;
}

.xq7_loginbtn {
width: fit-content;

  padding: 12px 22px;
  border: 0;
  border-radius: 32px;
  background: #ed0012;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.xq7_commentform {
  width: 100%;
}

.xq7_gridrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 20px;
}

.xq7_fieldwrap {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
  color: #0c1d49;
}

.xq7_fieldwrap input,
.xq7_fieldwrap textarea {
  width: 100%;
  border: 1px solid #d4d4d4;
  background: #ffffff;
  color: #0c1d49;
  font-family: inherit;

  box-sizing: border-box;
  outline: none;
   font-size: 15px;
  font-weight: 400;
}

.xq7_fieldwrap input {
  height: 35px;
  padding: 0 18px;
}

.xq7_fieldwrap textarea {
  height: 175px;
  padding: 16px 18px;
  resize: vertical;
}

.xq7_fieldwrap input:focus,
.xq7_fieldwrap textarea:focus {
  border-color: #0c1d49;
}

.xq7_fullfield {
  margin-bottom: 27px;
}

.xq7_bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.xq7_fakecaptcha {
  display: flex;
  align-items: center;
  width: min(100%, 820px);
  height: 35px;
  border: 2px solid #ed0012;
  border-radius: 7px;
  overflow: hidden;
  background: #ffffff;
  box-sizing: border-box;
}

.xq7_capicon {
  width: 100px;
  height: 100%;
  background: #ed0012;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.xq7_capicon span {
  position: relative;
  display: block;
  width: 38px;
  height: 21px;
}

.xq7_capicon span::before,
.xq7_capicon span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 21px solid #ffffff;
}

.xq7_capicon span::before {
  left: 0;
}

.xq7_capicon span::after {
  left: 16px;
}

.xq7_captext {
  padding: 0 15px;
  font-size: 13px;
  line-height: 1.2;
  color: #363636;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.xq7_sendbtn {
  min-width: fit-content;
  height: 35px;
  padding: 0 20px;
  border: 0;
  border-radius: 34px;
  background: #f27d89;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .xq7_innerbox {
    padding: 0 18px;
  }

  .xq7_bigttl {
    font-size: 22px;
  }

  .xq7_rulesline {
    font-size: 14px;
    flex-wrap: wrap;
  }

  .xq7_loginstrip p {
    font-size: 14px;
  }

  .xq7_loginbtn {
    font-size: 15px;
  }

  .xq7_gridrow {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .xq7_fieldwrap {
    font-size: 13px;
  }

  .xq7_bottomline {
    flex-direction: column;
    align-items: stretch;
  }

  .xq7_fakecaptcha {
    width: 100%;
  }

  .xq7_sendbtn {
    align-self: flex-end;
    width: 100%;
  }
}

.zr9_qmwrap {
  width: 100%;
  background: #ffffff;
  padding: 22px 24px 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  color: #0b1d4a;
}

.zr9_qmline {
  width: 100%;
  height: 1px;
  margin-bottom: 15px;
  background: #d8d8d8;
}

.zr9_tagrow {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.zr9_tagico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #0b1d4a;
}

.zr9_tagico svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.zr9_tagpill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 17px;
  border-radius: 5px;
  background: #eef0f3;
  color: #0b1d4a;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.zr9_commentbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 10px 47px;
  border: 1px solid #b8c0c8;
  border-radius: 5px;
  box-sizing: border-box;
}

.zr9_commenttitle {
  display: flex;
  align-items: center;
  gap: 26px;
}

.zr9_commenttitle h2 {
  margin: 0;
  color: #0b1d4a;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.zr9_countbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0b1d4a;
  font-size: 21px;
  line-height: 1;
  font-weight: 400;
}

.zr9_countbox svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #8f969e;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.zr9_redbtn {


  padding: 12px 30px;
  border: 0;
  border-radius: 35px;
  background: #ed0012;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
}

.zr9_meta {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 43px;
  color: #0b1d4a;
  font-size: 16px;
  line-height: 1.2;
}

.zr9_meta b {
  font-size: 16px;
  font-weight: 800;
}
.iserror {

  font-weight: 700;
}




.popups {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 20px;
  width: 100%;
  left: 0;

}

.popup {
  background: #FFFFFFEB;
border: 1px solid #E30613;
padding: 12px 20px;
color: #0A1B47;
font-size: 18px;
font-weight: 400;
width: fit-content;
border-radius: 20px;
display: none;
}

.popup-wrap {
  width: fit-content;
}

.popup b {
color: #E30613;
}

@media (max-width: 768px) {
  .zr9_qmwrap {
    padding: 0 0;
  }

  .zr9_tagrow {
    gap: 18px;
    margin-bottom: 22px;
  }

  .zr9_commentbar {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 24px 18px;
  }

  .zr9_commenttitle {
    gap: 15px;
  }

  .zr9_commenttitle h2 {
    font-size: 24px;
  }

  .zr9_redbtn {
    width: 100%;
    min-width: 0;
  }

  .zr9_meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 25px;
  }


  .header-actions a, .header-bottom, .footer-nav-section, .footer-bg-image {
    display: none;
  }

  .title-container, .article-header {
    margin-bottom: 15px;
  }

  .article-body h1 {
    font-size: 28px;
  }
   .meta-info .date, .time, .comment-count {
    font-size: 10px;
   }

   .cta-form-section {
    padding: 20px 0;
   }

   .cta-form-container {
    padding: 30px 15px;
   }

   .cta-text-content h2 {
    font-size: 26px;
   }
.cta-text-content .subtitle {
  font-size: 20px;
}

.comments-section {
  padding: 15px 0;
}

.footer-info, .footer-apps {
  text-align: center;
  justify-content: center;
  align-items: center;
  MARGIN: 0 AUTO;
}

}