
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
}

body {
  background-color: #1d2025;
  color: #ffffff;
  font-family: 'Poppins', sans-serif; /* Schimbat la Poppins pentru consistență */
  font-size: .875rem;
  line-height: 1.25rem;
  position: relative;
}

a {
  text-decoration: none;
  color: white;
}

img {
  width: 100%;
  display: block;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #4A90E2;
}

/* Formular */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

form input[type="text"],
form input[type="file"],
form button {
  width: 300px;
  margin: 10px 0;
  padding: 10px;
  border: 2px solid #4A90E2;
  border-radius: 5px;
  font-size: 16px;
  background: #202020;
  color: #ffffff;
  outline: none;
  transition: border-color 0.3s;
}

form input[type="text"]:focus,
form input[type="file"]:focus {
  border-color: #007BFF;
}

form button {
  background-color: #4A90E2;
  color: white;
  cursor: pointer;
}

form button:hover {
  background-color: #007BFF;
}

          /* Stiluri VIDEO GRID (HOME.EJS) */
          .video-thumbnail {
            position: relative;
            width: 100%;
            height: 180px; /* Înălțimea pentru thumbnail */
            background-size: cover;
            background-position: center;
          }
          .video-card:hover .gif {
            opacity: 100;
          }
          .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
          }
          
          .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
          }

          @media (max-width: 1200px) {
            .video-grid {
              grid-template-columns: repeat(4, 1fr);
            }
          }
          
          @media (max-width: 900px) {
            .video-grid {
              grid-template-columns: repeat(3, 1fr);
            }
          }
          
          @media (max-width: 600px) {
            .video-grid {
              grid-template-columns: repeat(2, 1fr);
            }
          }
          
          @media (max-width: 400px) {
            .video-grid {
              grid-template-columns: 1fr;
            }
          }
          
          .video-card {
            background-color: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
          }
          
          .video-card:hover {
            transform: scale(1.05);
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
          }
          
          
          .thumbnail-container {
            position: relative;
            display: block;
          }
          
          .video-thumbnail {
            width: 100%;
            height: 150px; 
            object-fit: cover;
          }
          .video-thumbnail {
            width: 100%;
            height: 120px;
            background-color: #444;
          }
          
          .video-duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
          }
          
          .video-info {
            padding: 10px;
            color: #ccc;
          }
          
          .video-title {
            font-size: 14px;
            font-weight: 500;
            color: #fff;
            margin: 0 0 5px;
          }
          .video-meta {
            font-size: 12px;
            color: #aaa;
          }
          .uploader-info {
            font-size: 14px;
            margin-bottom: 10px;
          }
          
          .uploader-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            vertical-align: middle;
            margin-left: 5px;
          }
          
          .verified-icon {
            color: #4caf50;
          }
          
          .video-stats {
            font-size: 14px;
            opacity: 0.7;
          }
          
          .section-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: #5865f2;;
            border-bottom: 2px solid #5865f2;;
            padding-bottom: 10px;
            text-transform: uppercase;
          }
          
          @media (max-width: 768px) {
            .video-grid {
              grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            .video-thumbnail {
              height: 100px;
            }
            .section-title {
              font-size: 20px;
            }
          }
          
          .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
          }
          
          .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
          }
          .video-card {
            background-color: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
          }
          
          .video-card:hover {
            transform: translateY(-5px);
          }
          
          .thumbnail-container {
            position: relative;
            display: block;
          }
          
          .video-thumbnail {
            width: 100%;
            height: 150px;
            object-fit: cover;
            background-size: cover;
          }
          
          .gif {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.3s ease;
          }
          
          .video-card:hover .gif {
            opacity: 1;
          }
          
          
          @media (max-width: 768px) {
            .video-grid {
              grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            .video-thumbnail {
              height: 100px;
            }
            .section-title {
              font-size: 20px;
            }
          }
          
          @media screen and (max-width: 1024px) {
            .video-grid {
              grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            .video-thumbnail {
              height: 120px;
            }
          }
          
          @media screen and (max-width: 768px) {
            .video-grid {
              grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            .video-thumbnail {
              height: 90px;
            }
            .section-title {
              font-size: 20px;
            }
            .video-info {
              padding: 10px;
            }
            .video-title {
              font-size: 16px;
            }
          }
          
          @media screen and (max-width: 480px) {
            .video-grid {
              grid-template-columns: 1fr;
            }
            .video-thumbnail {
              height: 150px;
            }
            .section-title {
              font-size: 18px;
            }
            .video-info {
              padding: 5px;
            }
            .video-title {
              font-size: 14px;
            }
          }
          
          .video-card {
            min-height: 200px;
          }
          
          .video-title, .uploader-info, .video-stats {
            font-size: 1em;
          }

/* Navbar */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  max-width: 1200px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(24, 24, 34, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-logo .logo {
  border-radius: 50%;
  max-width: 50px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
}

.nav-item a {
  text-decoration: none;
  color: #fff;
  position: relative;
  font-weight: 500;
  padding-bottom: 5px;
}

.nav-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #3B82F6;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}
/* NAV ITEM PREMIUM (NAVBAR) */
.nav-item .premium::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #edf102;
  bottom: 0;
  left: 0;
  transition: width 0.10s ease;
}

.nav-item a:hover::after {
  width: 100%;
}

.user-actions {
  display: flex;
  align-items: center;
  margin-left: auto; 
  gap: 10px;
}
.Desktop-Hide {
  display: none;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-user {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.btn-user:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-discord {
  background-color: #5865F2;
}

.btn-discord:hover {
  background-color: #4752C4;
}

.user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: 10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(24, 24, 34, 0.9);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 5px;
  top: 100%;
  right: 0;
  margin-top: 10px;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #3B82F6;
}

.dropdown-content.active {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: 0.4s;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Navbar pe mobil */
@media (max-width: 768px) {
  .navbar {
    /* flex-direction: column; */
    align-items: center; /* Changed from flex-start to center */
    padding: 10px 15px; /* Adjusted padding */
  }
  .navbar, .btn-user {
    margin: 0;
  }
  
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(24, 24, 34, 0.98); /* Increased opacity */
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Stronger shadow */
    border-radius: 0 0 10px 10px; /* Rounded corners at bottom */
    z-index: 1002; /* Ensure it's above everything */
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
  }

  .dropdown {
    position: relative; /* Changed from fixed to relative */
    right: auto;
    bottom: auto;
    margin-right: 10px; /* Add spacing */
  }
  
  /* Hide username on mobile to save space */
  .username-display {
      display: none; 
  }

  .dropdown-content {
    right: 0;
    left: auto; 
    position: absolute;
    width: 200px; /* Fixed width */
  }

  .nav-item {
    margin-bottom: 15px; /* Increased spacing */
    width: 100%;
    text-align: center;
  }
  
  .nav-item a {
      display: block;
      padding: 10px;
      background: rgba(255,255,255,0.05);
      border-radius: 8px;
  }

  .hamburger {
    display: flex;
    margin-left: 10px; /* Ensure spacing */
  }
  
  .user-actions {
    flex-direction: row; /* Keep row */
    align-items: center; 
    right: auto;
    left: auto; 
    margin-left: auto; /* Push to right */
    gap: 5px;
  }

  .user-actions img {
    width: 35px; /* Slightly larger touch target */
    height: 35px; 
    margin: 0;
  }

  .user-actions .username {
    font-size: 14px;
    margin-left: 0;
    display: none; /* Hide duplicate username class if exists */
  }
  .Desktop-Hide {
    display: block;
  }
}

.content {
  padding: 20px;
}

.section-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0; 
}

.navbar.not-logged-in {
  flex-wrap: wrap; 
  justify-content: space-between;
}

.navbar.not-logged-in .nav-links a {
  font-size: 0.8rem; 
}

.navbar.not-logged-in .btn-discord {
  margin-left: 10px;
}

.navbar .nav-logo, 
.navbar .nav-links, 
.navbar .user-actions {
  align-items: center;
}

.navbar .nav-links {
  gap: 1rem;
}

.navbar .nav-item {
  margin-right: 1rem;
}

/* .btn-discord {
  padding: 0.5rem 1rem;
} */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

@media (max-width: 768px) {
  .navbar {
    /* flex-direction: column; */
    align-items: flex-start;
  }

  .navbar .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .navbar .nav-item {
    margin: 0.5rem 0;
  }

  .navbar .btn-discord {
    width: auto;
    margin-top: 0;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .navbar .btn-discord:active {
      transform: scale(0.95);
      box-shadow: 0 2px 8px rgba(88, 101, 242, 0.4);
  }
  .dropdown {
    position: fixed; 
    right: 10px; 
    bottom: 10px; 
  }
  .dropdown-content {
    right: 0;
    left: auto;
  }
}

@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(4, 1fr); 
  }
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr); 
  }
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 400px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-card {
  background-color: #202020;
  border-radius: 6px;
  overflow: hidden;
  text-align: left;
}

.video-thumbnail {
  width: 100%;
  height: 120px;
  background-color: #444;
}

.video-info {
  padding: 10px;
}

.video-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 5px;
}

.video-meta {
  font-size: 12px;
  color: #aaa;
}

/* Titlul principal */
.main-title {
  font-size: 18px; 
  margin: 20px 0; 
  text-align: center; 
  font-weight: bold; 
  position: relative; 
}

.main-title::after {
  content: ""; 
  display: block; 
  width: 50px; 
  height: 2px; 
  background-color: #007bff; 
  margin: 10px auto; 
}

.hidden {
  display: none !important;
}

/* CATEGORII (HOME.EJS) */
#category {
  width: 200px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  height: 120px;
}

#category option {
  padding: 10px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
}

#category option:hover {
  background-color: #f4f4f4;
}

#category:focus {
  border-color: #5b9bd5;
  box-shadow: 0 0 5px rgba(91, 155, 213, 0.5);
}

#category {
  height: auto;
  max-height: 200px;
  overflow-y: auto;
}

#category[multiple] {
  height: 150px;
  padding: 10px 15px;
}

#category {
  position: relative;
}

#category::before {
  content: 'Selectează categoriile';
  position: absolute;
  top: 10px;
  left: 15px;
  color: #aaa;
  font-size: 14px;
  pointer-events: none;
}

#category option:checked {
  background-color: #5b9bd5;
  color: white;
}
select[multiple] option {
padding: 10px;
background-color: #ffffff;
color: #333;
}

select[multiple] option:checked {
background-color: #4CAF50;
color: white;
}

select[multiple] option:hover {
background-color: #f1f1f1;
cursor: pointer;
}
.hidden {
display: none;
}

/* LOADING SCREEN + VIDEO PREVIEW INAINTE DE A PUNE UN VIDEO (HOME.EJS) DUPA UPLOAD */
#loadingScreen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
color: #fff;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.5em;
z-index: 1000;
}

#videoPreview {
border: 2px solid #ccc;
border-radius: 8px;
background: #000;
margin-top: 15px;
}

#videoPreviewContainer {
display: flex;
justify-content: center;
align-items: center;
position: relative;
width: 300px;
height: auto;
border: 2px solid #ccc;
border-radius: 8px;
padding: 10px;
background-color: #f9f9f9;
}

#cancelPreview {
position: absolute;
top: 5px;
right: 5px;
background: #ff4d4d;
color: white;
border: none;
border-radius: 50%;
width: 25px;
height: 25px;
font-size: 16px;
line-height: 22px;
cursor: pointer;
}

#videoPreview {
max-width: 100%;
max-height: 150px;
border-radius: 4px;
background: black;
}
/* END  */


/* DISCORD PROMO */
.discord-promotion {
  position: relative;
  margin: 4rem 0;
  padding: 2rem;
  text-align: center;
  color: white;
  overflow: hidden;
  border-radius: 15px;
}

.discord-blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/BL.png') center/cover no-repeat;
  filter: blur(20px);
  opacity: 0.7;
  z-index: -1;
}

.discord-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

.discord-logo {
  width: 100px;
  margin-bottom: 1rem;
  display: block;
  margin: 0 auto;
}

.discord-join-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  color: white;
  background: #5865f2;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.discord-join-btn:hover {
  background: #4752c4;
}
.blur{
  position: absolute;
  box-shadow: 0 0 10000px 70px #1d4ed8;
  z-index: -100;
  
}
.discord-logo {
  display: block;
  margin: 0 auto;
  max-width: 100%; 
  height: auto;
}

@media screen and (max-width: 768px) {
  .discord-logo {
    width: 80%; 
  }

  .discord-button {
    font-size: 14px; 
    padding: 10px 15px; 
  }

  .discord-container {
    padding: 10px; 
  }

  .discord-text {
    font-size: 16px; 
    text-align: center; 
  }
}
/* END DISCORD PROMO */

.category-section {
  margin-bottom: 2rem;
}
.section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.video-info {
  padding: 0.5rem;
}
.video-title {
  font-size: 1rem;
  margin: 0.5rem 0;
}
.uploader-info {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.uploader-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.verified-icon {
  color: #0b7dda;
  font-size: 1rem;
}
.video-stats {
  font-size: 0.9rem;
  color: #555;
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

/* FOOTER START */
.footer {
  background-color: rgba(24, 24, 34, 0.9);
  padding: 20px 0; /* Schimbarea padding-ului pentru a extinde background-ul */
  color: #fff;
  text-align: center;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0; /* Elimină border-radius pentru a extinde la lățimea completă */
  margin: 0;
  width: 100%; /* Asigură-te că ocupă toată lățimea */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 0 15px; /* Adaugă puțin spațiu pe laturi pentru a nu se lipi de margini */
  margin: 0 auto;
}

.footer-logo {
  flex: 1;
}

.footer-logo-img {
  max-width: 50px;
  border-radius: 50%;
}

.footer-links,
.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
  flex: 1;
  justify-content: center;
}

.footer-links li a,
.social-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  padding-bottom: 5px;
}

.footer-links li a::after,
.social-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #3B82F6;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.footer-links li a:hover::after,
.social-links li a:hover::after {
  width: 100%;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: #3B82F6;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Ajustări pentru mobil */
@media (max-width: 768px) {
  body {
    margin: 0;
    padding: 0;
  }

  .footer {
    padding: 15px 0; 
  }

  .footer-container {
    padding: 0; /* Elimină spațiile pentru a extinde la lățimea completă */
    flex-direction: column; /* Aranjează elementele vertical pe mobil */
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px; /* Spațiu între linkuri și social icons pe mobil */
  }

  .social-links {
    margin-top: 15px; /* Spațiu între linkuri și social icons pe mobil */
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding: 10px 0;
  }
}
/* FOOTER END */

/* AVERTIZARE */
.background-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(10, 10, 10);
  filter: blur(10px);
  z-index: 9998;
  pointer-events: none;
}

.avertizare {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.avertizare-container {
  text-align: center;
  background: linear-gradient(135deg, #1e1e2f, #27293d);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
  max-width: 90%;
  width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.avertizare-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: block; 
  margin-left: auto;
  margin-right: auto; 
}


.avertizare h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
}

.avertizare p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.avertizare-butoane {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-continua, .btn-inchide {
  background: #ff5700;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-continua:hover {
  background: #e64a00;
}

.btn-inchide {
  background: #333;
}

.btn-inchide:hover {
  background: #444;
}
/* END AVERTIZARE */