/* Stiluri șablon Casino Landing - folosit de template-casino-landing.php */


/* ========== Top Casino Section ========== */
.section-hero {
    position: relative;
    height: 530px;
    background-image: url("https://sevenslots.ro/wp-content/uploads/2025/08/vls.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px 12px 0 0;
    margin-top: 10px;
  }
  
  .hero-casino-logo {
    position: absolute;
      left: 1.75rem;
      top: -5.5rem;
      z-index: 2;
      background: #370455;
      padding: 12px;
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
      width: 200px;
      height: 100px;
      align-self: center;
      align-items: center;
      justify-content: center;
      display: flex;
  }
  
  
  .hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fcd700;
    padding: 0px 14px 0px 6px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    overflow: visible;
    color: black;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
  }
  .hero-badge img {
    width: 40px;
    height: 40px;
    margin-left: -6px;
    margin-right: 2px;
  }
  
  .hero-info-box {
    position: relative;
    background: #1a0035;
    border-radius: 0 0 10px 10px;
    padding: 2.5rem 1.75rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
  .hero-info-left {
    display: flex;
    width: 70%;
    flex-direction: column;
    gap: 0px;
    flex:1;
  }
  
  
  .hero-info-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: 18px;
  }
  .hero-info-metrics span {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-info-metrics .label {
    font-weight: 400;
    color: rgb(176, 176, 176);
  }
  .hero-info-metrics .value {
    font-weight: 700;
    color: rgb(255, 255, 255);
  }
  .hero-info-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 35%;
  }
  .hero-bonus-offer {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #370556;
    padding: 0.5rem 2rem;
    border-radius: 12px;
  }
  
  .hero-bonus-offer p {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0;
  }
  
  .hero-bonus-offer .hero-bonus-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  .hero-btn-activate {
    font-family: "Readex Pro", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, #1fd7c8 0%, #15EFA3 100%);
    color: black !important;
    text-align: center;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    border: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }
  .hero-btn-activate:hover {
    background: linear-gradient(90deg, #C41BF7 0%, #7810E4 100%);
    color: #FFFFFF !important;
    transform: scale(0.95);
  }
  .platform-icons {
    display: inline-flex !important;
    flex-direction: row !important;
  }
  .platform-icons img {
    display: inline-block;
    width: 18px;
    height: 18px;
    object-fit: contain;
  }
  
  @media (max-width: 767px) {
  
    .hero-bonus-offer p {
      font-size: 12px;
    }
    .hero-info-left {
      width: 100%;
      text-align: center;
      gap: 0px;
    }
    .hero-info-right {
      width: 100%;
    }
    .section-hero {
      height: 150px;
    }
    .hero-casino-logo {
      left: 50%;
      transform: translateX(-50%);
      top: -3.5rem;
      width: 175px;
      height: 80px;
    }
    .hero-casino-logo img {
      padding: 10px;
    }
    .hero-badge {
      top: 10px;
      left: 10px;
      right: auto;
      font-size: 13px;
    }
    .hero-badge img {
      width: 30px;
      height: 30px;
    }
    .hero-info-box {
      flex-direction: column;
      padding: 3.5rem 1.25rem 1.25rem 1.25rem;
      gap: 10px;
    }
    .hero-info-metrics {
      gap: 10px;
      margin-bottom: 10px;
      justify-content: center;
    }
    .hero-info-metrics span {
      flex: 0 1 calc((100% - 2 * 2.5rem) / 3);
      min-width: 0;
    }
    .hero-info-metrics span:last-child {
      flex: 1 1 100%;
    }
    .hero-info-metrics .label  {
      font-size: 12px;
    }
  }
  
  /* End Top Casino Section */
  
  /* ========== Bonus Cards Section ========== */
  .bonus-cards-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .bonus-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #1a0035;
    border-radius: 12px;
    padding: 12px;
    min-width: 0;
    box-shadow: 0 4px 20px rgba(39, 20, 77, 0.5);
  }
  .bonus-card-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  .bonus-card-image {
    width: 100px;
    height: 100px;
    background: #27144d;
  }
  .bonus-card-image img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .bonus-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }
  .bonus-card-body h3 {
    font-family: "Open Sans", sans-serif ;
    font-size: 12px ;
    font-weight: 700 ;
    line-height: 1.3 ;
    color: #fff9 ;
    text-transform: uppercase ;
    letter-spacing: 0.02em;
    margin: 0;
  }
  .bonus-card-body p {
    font-family: "Open Sans", sans-serif ;
    font-size: 18px ;
    font-weight: 700 ;
    line-height: 1.25 ;
    color: #fff ;
    margin: 0 ;
  }
  .bonus-card-btn {
    width: 100%;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(90deg, #c41bf7 0%, #7810e4 100%);
    color: #fff !important;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  .bonus-card-btn:hover {
    filter: brightness(1.1);
    transform: scale(0.98);
    background: linear-gradient(90deg, #1fd7c8 0%, #15EFA3 100%);
    color: black;
  }
  @media (max-width: 900px) {
    
    .bonus-cards-inner {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* End Bonus Cards Section */
  
  /* ========== Info Section ========== */
  .info-section {
    padding: 1rem 0;
  }
  .info-cards-inner {
    display: flex;
    gap: 1.25rem;
  }
  .info-column {
    flex: 1 1 0;
    min-width: 260px;
    max-width: calc(33.333% - 10px);
  }
  .info-card-box {
    background: #1a0035;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
  }
  .info-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .info-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  .info-key {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.96);
  }
  .info-value {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #b7b7b7f5;
  }
  
  @media (max-width: 900px) {
    .info-column {
      max-width: calc(50% - 10px);
    }
  }
  @media (max-width: 767px) {
    .info-cards-inner {
      flex-direction: column;
    }
    .info-column {
      max-width: 100%;
    }
  
    .bonus-card-image {
      width: 70px;
      height: 70px;
    }
    .bonus-cards-inner {
      gap: 10px;
    }
    .info-card-box {
      padding: 1rem 1rem;
    }
  
    .bonus-card-body h3 { 
  font-size: 10px;
    }
    .bonus-card-body p { 
  font-size: 14px;
    }
    .bonus-cards-inner {
      grid-template-columns: 1fr;
    }
    .info-key {
      font-size: 14px;
    }
    .info-value {
      font-size: 14px;
    }
    .info-row {
    gap: 0px;
    }
  }
  
  
  
  /* End Info Section */
  
  
  /* ========== Intro Section ========== */
  .intro-section {
    padding: 1rem 0;
  }
  
  /* End Intro Section */
  
  /* ========== Pros/Cons Section (Recenzie) ========== */
  .pros-cons-section {
    padding: 1rem 0;
  }
  
  .pros-cons-box {
    display: flex;
    gap: 2.5rem;
    background: #1a0035;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
  }
  .pros-cons-box > div {
    flex: 1 1 0;
  }
  .pros-cons-box > div:first-child h3 {
    color: #00ff00;
  }
  .pros-cons-box > div:last-child h3 {
    color: #ff0000;
  }
  .pros-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem !important;
  }
  
  .pros-cons-box ul {
    margin: 0 0 1.5em 0 !important;
  }
  .pros-cons-list li {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #b8b8b8;
    padding-left: 1.75rem;
    position: relative;
  }
  .pros-cons-box > div:first-child .pros-cons-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
  }
  .pros-cons-box > div:last-child .pros-cons-list li::before {
    content: "❌";
    position: absolute;
    left: 0;
  }
  
  
  
  
  /* End Pros/Cons Section */
  
  /* ========== Verdict Section (Verdictul lui Edi) ========== */
  .verdict-section {
    padding: 1rem 0;
  }
  
  .verdict-block {
    background: #4a0492;
    border-radius: 12px 12px 0 0;
    padding: 1.75rem 1.75rem 1rem 1.75rem;
    max-width: 100%;
  }
  
  .verdict-block-bottom {
    background: #6805d0;
    border-radius: 0 0 12px 12px;
    padding: 1rem 1.75rem 1.75rem 1.75rem;
    max-width: 100%;
  }
  .verdict-header {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .verdict-header p {
    margin-bottom: 0px !important;
  }
  
  .verdict-block-bottom p {
    color: white;
    font-style: italic !important;
  }
  
  .verdict-header h2 {
    margin-bottom: 3px !important;
  }
  
  .verdict-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
  }
  
  @media (max-width: 767px) {
    .verdict-block {
      padding: 1.25rem 1.25rem;
    }
    .verdict-avatar {
      width: 56px;
      height: 56px;
    }
    .info-card-box {
      width: 100%;
    }
    .verdict-block-bottom {
      padding: 10px;
    }
  }
  
  /* End Verdict Section */
  
  
  
  
  
  
/* ========== FAQ (Flex) ========== */
.casino-flex-content .faq-section {
  padding: 1rem 0;
}

.casino-flex-content .faq-section__description {
  margin-bottom: 1rem;
}

.casino-flex-content .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 100%;
}

.casino-flex-content .faq-list details {
  background: #1a0035;
  border-radius: 8px;
}

.casino-flex-content .faq-list details summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.casino-flex-content .faq-list details summary::-webkit-details-marker,
.casino-flex-content .faq-list details summary::marker {
  display: none;
}

.casino-flex-content .faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 400;
  color: #fff;
}

.casino-flex-content .faq-list details[open] .faq-icon {
  background: rgba(0, 0, 0, 0.3);
}

.casino-flex-content .faq-icon-plus {
  display: inline;
}
.casino-flex-content .faq-icon-minus {
  display: none;
}
.casino-flex-content .faq-list details[open] .faq-icon-plus {
  display: none;
}
.casino-flex-content .faq-list details[open] .faq-icon-minus {
  display: inline;
}

.casino-flex-content .faq-list details > div {
  padding: 0 1.25rem 1.25rem 1.25rem;
  padding-left: calc(1.25rem + 26px + 0.75rem);
}

.casino-flex-content .faq-list details > div p {
  margin: 0 !important;
}
