:root {
  --gray-100-vidora: rgba(254, 254, 255, 1);
  --gray-400-color-vidora: rgba(143, 143, 143, 1);
  --white: rgba(255, 255, 255, 1);
  --bg-color-vidora: rgba(0, 0, 0, 1);
  --primary-color-vidora: rgba(77, 86, 251, 1);
  --gray-600-color-vidora: rgba(28, 28, 28, 1);
  --gray-300-color-vidora: rgba(78, 78, 80, 1);
}

/* Base Styles */
.vidora-new-design {
  background-color: var(--bg-color-vidora);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  position: relative;
  color: var(--white);
  font-family: "Poppins", sans-serif;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Gradient Header */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  position: relative;
  z-index: 10;
}

.menu-button,
.search-button,
.notification-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s ease;
}

.menu-button:hover,
.search-button:hover,
.notification-button:hover {
  transform: scale(1.1);
}

.logo {
  height: 26px;
}

.header-icons {
  display: flex;
  gap: 10px;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 110px 20px 20px;
  z-index: 2;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  object-fit: cover;
  z-index: -1;
}

@font-face {
  font-family: 'Ralesha';
  src: url('https://vidora.in/frontend/Ralesha.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.hero-title {
  font-family: 'Ralesha', Helvetica, sans-serif;
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-description {
  font-family: "Poppins", Helvetica;
  font-weight: 300;
  font-size: 10px;
  color: var(--gray-100-vidora);
  max-width: 200px;
  margin: 0 auto 20px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Card Type Selector */
.card-type-selector {
  background-color: #000000;
  border-radius: 160px;
  border: 0.5px solid #ffffff;
  display: flex;
  overflow: hidden;
  max-width: 331px;
  margin: 0 auto;
}

.card-type-button {
  flex: 1;
  padding: 15px;
  font-family: "Poppins", Helvetica;
  font-weight: 500;
  font-size: 12px;
  border: none;
  background: none;
  color: #8f8f8f;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-type-button.active {
  background-color: #ffffff;
  color: var(--bg-color-vidora);
  font-weight: 600;
}

.card-type-button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Categories Section */
.categories {
  padding: 20px 15px;
}

.categories-title {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  font-size: 10px;
  color: var(--gray-400-color-vidora);
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.category-buttons {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.category-buttons::-webkit-scrollbar {
  display: none;
}

.category-button {
  font-family: "Poppins", Helvetica;
  font-weight: 500;
  font-size: 9px;
  padding: 10px 18px;
  border-radius: 39px;
  border: none;
  background-color: var(--gray-600-color-vidora);
  color: var(--gray-400-color-vidora);
  white-space: nowrap;
  cursor: pointer;
}

.category-button.active {
  background-color: var(--primary-color-vidora);
  color: #ffffff;
  font-weight: 600;
}

.category-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.category-button.more {
  width: 29px;
  height: 29px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.3px solid #ffffff;
}

/* Card Gallery */
.card-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 15px 80px;
}

.card {
  /*height: 590px;*/
  /*width: 345px;*/
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  aspect-ratio: 3/4;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: white;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .card-overlay {
  opacity: 1;
}

.card-overlay h3 {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
}

.card-overlay p {
  font-size: 10px;
  margin: 0;
  font-weight: 300;
}

/* Navigation Styles */
.mobile-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--gray-600-color-vidora);
  padding: 15px 0;
  border-top: 0.5px solid #4e4e50;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(28, 28, 28, 0.95), rgba(28, 28, 28, 0.85));
-webkit-backdrop-filter: blur(4px);
backdrop-filter: blur(4px);
}

.desktop-nav {
  display: none;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-item:hover {
  transform: translateY(-3px);
}

.nav-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-icon {
  transform: scale(1.1);
}

.nav-text {
  font-family: "Poppins", Helvetica;
  font-weight: 500;
  font-size: 7px;
  color: var(--gray-400-color-vidora);
  transition: color 0.3s ease;
}

.nav-item.active .nav-text {
  color: #ffffff;
  font-weight: 600;
}

/* PRO Button */
.pro-button {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFD67E 0%, #FF3C00 100%);
  border-radius: 9px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  color: white;
}

.pro-button:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(255, 214, 126, 0.3);
}

.pro-icon {
  width: 15px;
  height: 14px;
  background-image: url(https://c.animaapp.com/mb3j8nv4aMc5Ex/img/group-376.png);
  background-size: contain;
  margin-right: 5px;
  background-repeat: no-repeat;
}

.pro-text {
  font-family: "Kumbh Sans", Helvetica;
  font-weight: 600;
  font-size: 11px;
}

/* Desktop Styles */
@media (min-width: 768px) {
  .vidora-new-design {
    flex-direction: row;
  }

  .mobile-nav {
    display: none;
  }

  .desktop-nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 80px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--gray-600-color-vidora);
    border-right: 0.5px solid #4e4e50;
    padding-top: 20px;
    gap: 30px;
    z-index: 100;
  }

  .content-wrapper {
    margin-left: 80px;
    max-width: calc(100% - 80px);
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 14px;
    max-width: 300px;
  }

  .card-type-selector {
    max-width: 400px;
  }

  .card-type-button {
    font-size: 14px;
  }

  .categories-title {
    font-size: 14px;
  }

  .category-button {
    font-size: 12px;
  }

  .card-gallery {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 15px 20px;
  }

  .pro-button {
    margin-top: auto;
    margin-bottom: 30px;
    flex-direction: column;
    padding: 10px 5px;
    align-items: center;
  }

  .pro-icon {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

/* Larger Desktop Styles */
@media (min-width: 1024px) {
  .card-gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 16px;
    max-width: 400px;
  }
}

/* Animation for buttons */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pro-button:active,
.card-type-button:active,
.category-button:active {
  animation: pulse 0.3s ease;
}