@charset "UTF-8";
body {
  background-color: black;
  color: #e0e0e0;
  font-family: Arial, sans-serif; }
  body .container {
    max-width: 1140px; }

header {
  background-color: #161313; }

.top-section {
  background: #080808;
  padding-bottom: 50px;
  border-bottom: 1px solid #51483c; }

.top-picks-section {
  position: relative;
  background: #000;
  border-bottom: 1px solid #51483c; }

footer .footer-right p {
  font-size: 0.9em;
  text-align: justify; }
footer .text {
  font-size: 0.9em;
  text-align: justify; }
footer .left .text {
  text-align: left; }

.items-wrapper {
  border-radius: 3px;
  box-shadow: 0 3px 24px 0 rgba(0, 0, 0, 0.36);
  background-color: #2a2a2a; }
  .items-wrapper .item-card {
    border: 2px solid #cb005f;
    padding: 1em;
    position: relative; }
    .items-wrapper .item-card .ribbon-text {
      position: absolute;
      left: 0;
      top: 0;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.38;
      padding: 1px 10px;
      border-radius: 0 0 12px 0;
      background: #cb005f; }

.wave-pattern {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEyODAgMEwwIDB2MTQwbDEyODAtMTQweiIgZmlsbD0iIzEyMTIxMiIvPjwvc3ZnPg==");
  background-size: 100% 20px; }

/* Auto-scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(100%); }
  100% {
    transform: translateX(-100%); } }
.scroll-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  background-color: #1c1c1c; }

.scroll-content {
  display: inline-block;
  animation: scroll 30s linear infinite;
  padding: 20px 0; }

.scroll-item {
  display: inline-block;
  margin: 0 50px; }

/* FAQ Section styling */
.faq-container {
  max-width: 900px;
  margin: 0 auto; }

.faq-item {
  background-color: #222222;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden; }

.question-icon {
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0; }

.faq-question {
  color: #e6b800;
  font-weight: bold;
  margin-bottom: 8px; }

.faq-answer {
  color: #cccccc;
  line-height: 1.5; }

.legal .body {
  padding: 54px;
  height: fit-content; }
.legal .title {
  padding: 54px; }
  .legal .title h1 {
    font-size: 35px;
    line-height: 1.3em; }
  .legal .title h1:after {
    display: block;
    width: 7%;
    content: "";
    height: 1px;
    border-top: 3px solid #ef3024;
    margin-top: 20px;
    margin-bottom: 2.75%; }

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px; }

.stars {
  display: flex; }

.star {
  font-size: 1.5rem;
  color: #444;
  /* Empty star color */ }

.star.filled {
  color: gold;
  /* Filled star color */ }

.star.half::before {
  content: '★';
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: gold; }

footer .left, footer .right {
  padding: 10px; }
footer .right {
  padding-left: 10%; }

.toggle-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.toggle-wrapper:hover {
  transform: scale(1.05); }

.toggle {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); }

.toggle.open {
  transform: rotate(180deg); }

.bar {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  left: 0; }

.bar:nth-child(1) {
  top: 4px; }

.bar:nth-child(2) {
  top: 11px;
  width: 70%;
  right: 0;
  left: auto; }

.bar:nth-child(3) {
  bottom: 4px; }

/* X transformation */
.toggle.open .bar:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
  width: 100%; }

.toggle.open .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px); }

.toggle.open .bar:nth-child(3) {
  bottom: 11px;
  transform: rotate(-45deg);
  width: 100%; }

/* Subtle glow effect */
.toggle-wrapper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: opacity 0.3s ease; }

.toggle-wrapper.open::after {
  opacity: 1; }

.article-section {
  background: #262626;
  padding: 80px 0;
  border-bottom: 1px solid #51483c; }
  .article-section a:hover {
    color: #0056b3;
    text-decoration: underline; }
  .article-section a {
    color: #0056b3;
    text-decoration: underline; }
  .article-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    text-align: left; }
  .article-section h1 {
    text-align: left; }
  .article-section h3 {
    text-align: left; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.col-lg-9 {
  flex: 0 0 75%;
  max-width: 75%; }

@media (max-width: 768px) {
  footer .footer-right p {
    font-size: 0.9em;
    text-align: center; }
  footer .text {
    font-size: 0.9em;
    text-align: center; } }
@media (min-width: 1368px) {
  #menu {
    right: 0%; } }
@media (min-width: 1920px) {
  #menu {
    right: 10%; } }

/*# sourceMappingURL=style.css.map */
