* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #FFFFFF;
  background-color: #000000;
} 

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.3s;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.7);
}

header .logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

header .logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 5px;
}

header .logo img {
  height: 40px;
  margin-right: 10px;
}

header .logo span {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
}

header nav {
  display: flex;
  flex-wrap: wrap;
}

header nav a {
  color: #FFFFFF;
  text-decoration: none;
  margin-left: 20px;
  font-size: 16px;
  padding: 10px 25px;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

header nav a:hover {
  background-color: #22C55E;
  color: #FFFFFF;
  transform: scale(1.05);
}

#home {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 60px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: brightness(0.6);
  z-index: -1;
}

#home .hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

#home .hero-text {
  flex: 1;
  margin-right: 100px;
  text-align: center;
}

#home h2 {
  font-size: 48px;
  margin-bottom: 20px;
  margin-top: -20px;
  text-transform: uppercase;
  color: #22C55E;
  animation: fadeIn 1.5s ease-in;
}

#home p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #FFFFFF;
  animation: fadeIn 2s ease-in;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#home .join-button {
  display: inline-block;
  background-color: #22C55E;
  color: #FFFFFF;
  padding: 12px 35px;
  text-decoration: none;
  border-radius: 15px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
  margin-bottom: 50px;
}

#home .join-button:hover {
  background-color: #16A34A;
  transform: scale(1.05);
}

#home .hero-thumbnails {
  max-width: 440px;
  margin: 0 auto;
}

#home .thumbnails-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#home .thumbnail-row {
  display: flex;
  justify-content: center;
  gap: 10px;
}

#home .hero-thumbnails img {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s, border 0.3s;
  border: 2px solid transparent;
}

#home .hero-thumbnails img:hover {
  transform: scale(1.2);
}

#home .hero-thumbnails img.active {
  border: 2px solid #22C55E;
  opacity: 0.7;
}

#home .hero-image {
  flex: 2;
  text-align: right;
}

#home .hero-image img {
  width: 100%;
  max-width: 1800px;
  height: auto;
  border-radius: 15px;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.fullscreen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* News Section Styles */
#news {
  background: #000000;
  padding: 80px 40px; /* Padding mai mare */
  min-height: 90vh; /* Secțiune mai înaltă */
  display: flex;
  flex-direction: column;
  align-items: center;
}

#news h2 {
  font-size: 34px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #22C55E;
}

#news .swiper-container {
  width: 100%; /* Full width */
  position: relative;
  overflow: hidden;
}

#news .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

#news .news-content {
  display: flex;
  align-items: center;
  justify-content: center; /* Centrează textul și imaginea */
  gap: 20px;
  width: 100%;
  padding: 0 20px;
}

Copy
#news .news-text {
  flex: 0 0 auto;
  max-width: 200px; /* Text mai compact */
  padding-right: 10px;
  animation: slideInLeft 1s ease-out;
}

#news .news-text h3 {
  font-size: 26px; /* Font mai mare */
  color: #22C55E;
  margin-bottom: 12px;
}

#news .news-text p {
  font-size: 16px; /* Font mai mare */
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 400px;
}

#news .news-cta {
  display: inline-block;
  background-color: #22C55E;
  color: #FFFFFF;
  padding: 8px 25px;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

#news .news-cta:hover {
  background-color: #16A34A;
  transform: scale(1.05);
}

#news .news-image {
  flex: 0 0 auto;
  max-width: 500px; /* Sincronizat cu imaginea */
  animation: slideInRight 1s ease-out;
}

#news .news-image img {
  width: 100%;
  max-width: 500px; /* Imagine mai mare */
  height: 625px; /* Format portret, raport ~4:5 */
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

#news .news-image img:hover {
  transform: scale(1.05);
}

#news .swiper-button-prev,
#news .swiper-button-next {
  color: #22C55E;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: background 0.3s;
}

#news .swiper-button-prev:hover,
#news .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

#news .swiper-button-prev::after,
#news .swiper-button-next::after {
  font-size: 18px;
}

section {
  padding: 80px 30px;
  text-align: center;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

section.visible {
  opacity: 1;
  transform: scale(1);
}

section h2 {
  font-size: 36px;
  margin-bottom: 50px;
  text-transform: uppercase;
  color: #22C55E;
}

#about {
  background: linear-gradient(to right, #333333, #000000);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 100vh;
  padding-bottom: 40px;
}

#about .about-image {
  position: relative;
  width: 600px;
}

#about .about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  animation: slideInLeft 1s ease-out;
  transition: transform 0.3s ease;
}

#about .about-image img:hover {
  transform: scale(1.05);
}

#about .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

#about .about-image:hover .image-overlay {
  opacity: 1;
}

#about .image-overlay p {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

#about .about-content {
  max-width: 600px;
  text-align: left;
  animation: slideInRight 1s ease-out;
}

#about .about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

#about .about-content p {
  font-size: 20px;
  line-height: 1.6;
  color: #FFFFFF;
  margin-bottom: 20px;
}

#about .about-cta {
  display: inline-block;
  background-color: #22C55E;
  color: #FFFFFF;
  padding: 12px 35px;
  text-decoration: none;
  border-radius: 15px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

#about .about-cta:hover {
  background-color: #16A34A;
  transform: scale(1.05);
}

#subscriptions {
  background-color: #000000;
}

#subscriptions .subscriptions-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

#subscriptions .subscription-card {
  background-color: #444444;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  width: 300px;
  height: 400px;
  text-align: left;
  border: 2px solid #22C55E;
}

#subscriptions .subscription-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.5);
  background: linear-gradient(135deg, #444444, #22C55E);
}

#subscriptions .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

#subscriptions .card-header h3 {
  font-size: 22px;
  color: #22C55E;
}

#subscriptions .card-header .popular {
  background-color: #F97316;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#subscriptions .starting {
  font-size: 13px;
  color: #BBBBBB;
  margin-bottom: 5px;
}

#subscriptions .price {
  font-size: 22px;
  font-weight: bold;
  color: #22C55E;
  margin-bottom: 5px;
}

#subscriptions .price span {
  font-size: 14px;
  color: #BBBBBB;
  font-weight: normal;
}

#subscriptions .discount {
  font-size: 13px;
  color: #16A34A;
  margin-bottom: 10px;
}

#subscriptions hr {
  border: none;
  border-top: 1px solid #555555;
  margin: 10px 0;
}

#subscriptions .description {
  font-size: 15px;
  color: #BBBBBB;
  margin-bottom: 15px;
}

#subscriptions .subscription-card a {
  background-color: #22C55E;
  color: #FFFFFF;
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 14px;
  display: block;
  text-align: center;
  transition: background-color 0.3s, transform 0.3s;
}

#subscriptions .subscription-card a:hover {
  background-color: #16A34A;
  transform: scale(1.05);
}

#app {
  background: linear-gradient(to left, #333333, #000000);
  position: relative;
  padding: 80px 30px;
}

#app .app-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

#app .app-content {
  color: #FFFFFF;
  text-align: left;
  flex: 1;
  animation: slideInLeft 1s ease-out;
}

#app .app-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #22C55E;
}

#app .app-content p {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 400px;
  color: #FFFFFF;
}

#app .app-content a {
  background-color: #22C55E;
  color: #FFFFFF;
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 15px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
  display: inline-block;
}

#app .app-content a:hover {
  background-color: #16A34A;
  transform: scale(1.05);
}

#app .app-image {
  display: flex;
  gap: 20px;
}

#app .app-image img {
  width: 250px;
  height: auto;
  animation: slideInRight 1s ease-out;
}

#app-spacer {
  height: 40px;
  background-color: #000000;
}

footer {
  background-color: #000000;
  color: #FFFFFF;
  padding: 40px 30px;
  position: relative;
}

footer .footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 20px;
  animation: fadeIn 1s ease-in;
}

footer .footer-links {
  display: flex;
  gap: 60px;
  justify-content: center;
}

footer .footer-links div {
  text-align: center;
}

footer .footer-links h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #22C55E;
}

footer .footer-links a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 10px;
  transition: color 0.3s;
}

footer .footer-links a:hover {
  color: #22C55E;
}

footer .footer-legal {
  text-align: right;
}

footer .footer-legal a {
  display: block;
  margin-bottom: 15px;
}

footer .footer-legal img {
  height: 50px;
  vertical-align: middle;
  transition: transform 0.3s;
}

footer .footer-legal img:hover {
  transform: scale(1.1);
}

footer .footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

footer .footer-bottom p {
  font-size: 14px;
  text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 600px) {
  header {
    display: none;
  }

  #home {
    padding: 10px;
  }

  #home .hero-content {
    flex-direction: column;
    gap: 15px;
  }

  #home .hero-text {
    margin-right: 0;
  }

  #home h2 {
    font-size: 32px;
    margin-top: -10px;
  }

  #home p {
    font-size: 14px;
    max-width: 90%;
  }

  #home .join-button {
    padding: 10px 25px;
    font-size: 14px;
    margin-bottom: 30px;
  }

  #home .hero-image img {
    max-width: 90%;
  }

  #home .thumbnails-container {
    width: 300px;
  }

  #home .hero-thumbnails img {
    width: 70px;
    height: 42px;
  }

#news {
    background: red !important; /* Debug: fundal roșu dacă se aplică */
  }

  #news .news-content {
    flex-direction: row; /* Text stânga, imagine dreapta */
    gap: 10px; /* Spațiu optim */
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
  }

  #news .news-text {
    max-width: 150px; /* Text puțin mai lat */
    padding-right: 5px;
  }

  #news .news-text h3 {
    font-size: 16px; /* Font mic, dar lizibil */
    margin-bottom: 5px;
  }

  #news .news-text p {
    font-size: 12px; /* Font ajustat */
    max-width: 100%;
  }

  #news .news-image {
    max-width: 150px; /* Imagine compactă */
  }

  #news .news-image img {
    max-width: 150px; /* Lățime ok */
    height: 188px; /* Înălțime corectată, raport ~4:5 */
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
  }

  #news .swiper-button-prev,
  #news .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  #news .swiper-button-prev::after,
  #news .swiper-button-next::after {
    font-size: 16px;
  }

  #about {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 10px;
    padding-bottom: 20px;
  }

  #about .about-image {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  #about .about-content h2 {
    font-size: 28px;
  }

  #about .about-content p {
    font-size: 16px;
  }

  #about .about-cta {
    padding: 10px 25px;
    font-size: 14px;
  }

  #subscriptions {
    padding: 10px;
  }

  #subscriptions .subscriptions-grid {
    flex-direction: column;
    align-items: center;
  }

  #subscriptions .subscription-card {
    width: 100%;
    max-width: 260px;
    height: 410px;
  }

  #subscriptions .card-header h3 {
    font-size: 20px;
  }

  #subscriptions .price {
    font-size: 20px;
  }

  #subscriptions .description {
    font-size: 14px;
  }

Ubscriptions .subscription-card a {
    font-size: 13px;
    padding: 7px 16px;
  }

  #app {
    padding: 10px;
  }

  #app .app-banner {
    flex-direction: column;
  }

  #app .app-content {
    text-align: center;
  }

  #app .app-content h2 {
    font-size: 32px;
  }

  #app .app-content p {
    font-size: 16px;
  }

  #app .app-image {
    flex-direction: column;
    align-items: center;
  }

  #app .app-image img {
    width: 160px;
    margin: 10px 0;
  }

  footer {
    padding: 15px;
  }

  footer .footer-content {
    flex-direction: column;
    text-align: center;
  }

  footer .footer-links {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  footer .footer-links div {
    text-align: center;
  }

  footer .footer-links h4 {
    font-size: 18px;
  }

  footer .footer-links a {
    font-size: 16px;
  }

  footer .footer-legal {
    text-align: center;
    margin-top: 20px;
  }

  footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
@media only screen and (max-width: 600px) {
  #news {
    background: #000000 !important; /* Fundal negru */
    padding: 15px 10px !important; /* Padding ajustat */
    min-height: auto !important;
  }

  #news .swiper-container {
    width: 100% !important;
    overflow: hidden !important;
  }

  #news .news-content {
    flex-direction: row !important; /* Text stânga, imagine dreapta */
    gap: 10px !important; /* Spațiu între text și imagine */
    align-items: center !important;
    justify-content: space-between !important; /* Deplasează textul și imaginea */
    width: 100% !important;
    padding: 0 10px !important;
  }

  #news .news-text {
    max-width: 140px !important; /* Text compact */
    padding-right: 5px !important;
    margin-left: 10px !important; /* Deplasează textul spre stânga */
  }

  #news .news-text h3 {
    font-size: 14px !important; /* Font mic */
    margin-bottom: 4px !important;
  }

  #news .news-text p {
    font-size: 10px !important; /* Font mic */
    max-width: 100% !important;
    line-height: 1.3 !important;
  }

  #news .news-image {
    max-width: 160px !important; /* Imagine mai mare */
    margin-right: 10px !important; /* Deplasează imaginea spre dreapta */
  }

  #news .news-image img {
    width: 100% !important;
    max-width: 160px !important; /* Lățime mai mare */
    height: 200px !important; /* Înălțime mai mare, raport ~4:5 */
    border-radius: 8px !important;
    object-fit: contain !important; /* Afișăm imaginea integral */
    object-position: center !important;
  }

  #news .swiper-button-prev,
  #news .swiper-button-next {
    width: 30px !important;
    height: 30px !important;
  }

  #news .swiper-button-prev::after,
  #news .swiper-button-next::after {
    font-size: 14px !important;
  }
}