:root {
  --gold: #d4af37;
  --dark: #1a1a1a;
  --light: #ffffff;
  --gray: #707070;
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f3d77b 100%);
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav {
  align-items: center;
  gap: 10px;
}

.nav-item {
  margin: 0;
}

.nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 8px 15px !important;
  transition: all 0.3s ease;
}

.nav-item .btn {
  padding: 8px 20px;
  margin-left: 5px;
}

.btn-primary {
  background: var(--gradient-gold);
  border: none;
  padding: 8px 20px;
  color: var(--light);
  transition: all 0.3s ease;
}

.btn-outline-primary {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.hero-image {
  max-width: 100%;
  animation: float 3s ease-in-out infinite;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

/* Additional About Section Styles */
.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.floating-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.image-shape {
  position: absolute;
  width: 90%;
  height: 90%;
  background: var(--gradient-gold);
  border-radius: 20px;
  top: 40px;
  left: 40px;
  z-index: 1;
  opacity: 0.1;
  animation: shape-float 6s ease-in-out infinite;
}

.about-content {
  padding-left: 30px;
}

.about-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 30px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 5px;
}

.about-item h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.about-item p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 80px 0 20px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes shape-float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero {
    padding: 120px 0 80px;
    text-align: center;
  }

  .hero-image {
    margin-top: 50px;
  }

  .navbar-collapse {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }

  .navbar-nav {
    gap: 5px;
  }

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-item .btn {
    display: block;
    width: 100%;
    margin: 5px 0;
  }

  .nav-link {
    padding: 10px !important;
  }

  .about-content {
    padding-left: 0;
    margin-top: 40px;
    text-align: center;
  }

  .about-item {
    text-align: left;
  }

  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Collections Section */
.collections {
  padding: 80px 0;
  background: var(--light);
}

.collections-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 40px;
}

.collection-slider {
  position: relative;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gold);
  color: var(--light);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav:hover {
  background: var(--dark);
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

.collection-card {
  text-align: center;
  padding: 0;
  transition: all 0.3s ease;
  background: var(--light);
}

.collection-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}

.collection-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.view-details {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.view-details:hover {
  background: var(--gold);
  color: var(--light);
}

/* Swiper Modifications */
.swiper {
  width: 100%;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  opacity: 0.6;
  transform: scale(0.85);
  transition: all 0.3s ease;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.swiper-slide-active .collection-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Remove default swiper navigation */
.swiper-button-next,
.swiper-button-prev {
  display: none;
}

/* Our Collections Section */
.our-collections {
  padding: 100px 0;
  background: var(--light);
}

.our-collections .section-header {
  margin-bottom: 60px;
}

.our-collections .section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.our-collections .section-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.collection-category {
  position: relative;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  background: var(--light);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.category-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  aspect-ratio: 1;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-collection {
  background: var(--light);
  color: var(--dark);
  border: none;
  padding: 15px 30px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.collection-category:hover .category-overlay {
  opacity: 1;
}

.collection-category:hover .view-collection {
  transform: translateY(0);
  opacity: 1;
}

.view-collection:hover {
  background: var(--gold);
  color: var(--light);
}

.category-content {
  text-align: center;
  padding: 25px 20px;
  background: var(--light);
  border-radius: 0 0 8px 8px;
}

.category-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.category-content p {
  color: var(--gray);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.item-count {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  padding: 5px 15px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 20px;
}

/* Hover Effects */
.collection-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.collection-category:hover .category-image img {
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .collection-category {
    max-width: 400px;
    margin: 0 auto 30px;
  }
}

/* Features Section */
.features {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.feature-box {
  background: var(--light);
  border-radius: 10px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.feature-box:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--light);
  transform: rotate(-45deg);
}

.feature-box:hover .feature-icon {
  transform: rotate(0deg);
}

.feature-box:hover .feature-icon i {
  transform: rotate(0deg);
}

.feature-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.feature-content p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.feature-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.feature-link:hover {
  color: var(--dark);
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .feature-box {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--light);
}

.service-box {
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-box:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-box:hover .service-overlay {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.service-box:hover .service-icon {
  transform: translateY(0);
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--light);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.service-content p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--dark);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-box {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.contact-info {
  background: var(--light);
  padding: 40px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon i {
  font-size: 1.2rem;
  color: var(--light);
}

.contact-info-item .content h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.contact-info-item .content p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  background: var(--light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-control {
  height: 50px;
  padding: 10px 20px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  font-size: 0.95rem;
  color: var(--dark);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

textarea.form-control {
  height: auto;
  resize: vertical;
}

.btn-primary {
  padding: 12px 30px;
  font-weight: 500;
}

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-info {
    margin-bottom: 30px;
  }

  .contact-form {
    padding: 30px;
  }
}

/* Authentication Pages */
.auth-page {
  min-height: 100vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.auth-container {
  width: 100%;
  max-width: 500px;
}

.auth-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.auth-logo {
  display: inline-block;
  margin-bottom: 30px;
}

.auth-logo img {
  height: 40px;
}

.auth-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.auth-box p {
  color: var(--gray);
  margin-bottom: 30px;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form .input-group-text {
  background: transparent;
  border-right: none;
  color: var(--gray);
}

.auth-form .form-control {
  border-left: none;
  padding-left: 0;
}

.auth-form .form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.auth-form .form-check-label {
  color: var(--gray);
  font-size: 0.9rem;
}

.forgot-password {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password:hover {
  color: var(--dark);
}

.auth-footer {
  margin-top: 30px;
  color: var(--gray);
}

.auth-footer a {
  color: var(--gold);
  text-decoration: none;
}

.auth-footer a:hover {
  color: var(--dark);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .auth-box {
    padding: 30px 20px;
  }
}

/* Password Validation Styles */
.auth-form .form-control.is-valid {
  border-color: var(--gold);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23d4af37' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.auth-form .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.auth-form .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.auth-form .form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

.password-requirements {
  text-align: left;
  font-size: 0.8rem;
}

/* Password Toggle Button */
.toggle-password {
  border: 1px solid #ced4da;
  border-left: none;
  background: transparent;
  color: var(--gray);
}

.toggle-password:hover {
  color: var(--gold);
  background: transparent;
  border-color: #ced4da;
}

.toggle-password:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.toggle-password.showing {
  color: var(--gold);
}

/* Registration Success Page */
.success-box {
  text-align: center;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 3;
}

.success-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 20px;
  animation: popIn 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite,
    glow 2s ease-in-out infinite;
  position: relative;
}

.success-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(40, 167, 69, 0.2);
  border-radius: 50%;
  left: 0;
  top: 0;
  animation: ripple 1.5s ease-out infinite;
  z-index: -1;
}

@keyframes popIn {
  0% {
    transform: scale(0.8) rotate(-10deg);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1) rotate(10deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.8) rotate(-10deg);
    opacity: 0.5;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
}

@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(40, 167, 69, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(40, 167, 69, 0.8));
  }
}

.success-icon i {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.credentials-box {
  background: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: left;
}

.credentials-box h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.credential-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 5px;
  border: 1px solid #e1e1e1;
  transition: all 0.3s ease;
}

.credential-item:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.credential-item .label {
  font-weight: 500;
  color: var(--dark);
  width: 80px;
}

.credential-item .value {
  flex-grow: 1;
  color: var(--gray);
  margin: 0 10px;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.copy-btn:hover {
  color: var(--dark);
}

.copy-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  left: 0;
  top: 0;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.copy-btn:active::after {
  opacity: 1;
  transform: scale(3);
  transition: 0s;
}

.alert {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.action-buttons {
  margin-top: 30px;
}

/* Enhanced Button Styles */
.action-buttons .btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.action-buttons .btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  left: -100%;
  transform: skewX(-15deg);
  transition: all 0.5s ease;
}

.action-buttons .btn:hover::after {
  left: 100%;
}

.action-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .credentials-box {
    padding: 15px;
  }

  .credential-item {
    flex-wrap: wrap;
  }

  .credential-item .label {
    width: 100%;
    margin-bottom: 5px;
  }
}

/* Particles Container */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}
