.navbar,
.stat-item {
  backdrop-filter: blur(10px);
}
.btn-primary,
.hero-section,
.nav-link {
  position: relative;
}
.btn-primary,
.download-section,
.footer,
.hero-section,
.newsletter,
.nft-detail-section,
.nft-image,
.stats-card {
  overflow: hidden;
}
.navbar,
footer {
  background: rgba(15, 14, 23, 0.8);
}
.auth-title,
.footer-brand i,
.gradient-text,
.navbar-brand i,
.privacy-hero h1,
.stat-number,
.text-gradient {
  -webkit-text-fill-color: transparent;
}
.account-menu a,
.auth-footer a,
.download-btn,
.footer-links a,
.social-link,
.social-links {
  text-decoration: none;
}
:root {
  --primary: #6e45e2;
  --primary-dark: #4a2bb8;
  --secondary: #88d3ce;
  --dark: #0f0e17;
  --light: #fffffe;
  --accent: #ff8906;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}
body {
  font-family: "Space Grotesk", sans-serif;
  background-color: var(--dark);
  color: var(--light);
}
.mono,
.policy-highlight,
.policy-meta,
.wallet-address,
code {
  font-family: "Space Mono", monospace;
}
.nft-title,
.property-value,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
.navbar {
  padding: 1rem 0;
  -webkit-backdrop-filter: blur(10px);
  transition: 0.3s;
}
.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(15, 14, 23, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.btn-primary,
.nav-link::after,
.navbar-brand i {
  background: var(--gradient);
}
.footer-brand span,
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}
.navbar-brand i {
  font-size: 1.8rem;
  -webkit-background-clip: text;
  background-clip: text;
}
.nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s;
}
.hero-bg,
.nav-link:hover::after,
.newsletter-form .btn {
  width: 100%;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: 0 0;
}
.btn-outline-primary:hover,
.btn-outline:hover {
  background: var(--primary);
  color: var(--light);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.hero-section {
  background: radial-gradient(
    circle at 30% 50%,
    rgba(110, 69, 226, 0.2) 0,
    #0f0e17 70%
  );
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1639762681057-408e52192e55?q=80&w=2232&auto=format&fit=crop")
    center center/cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}
.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}
.hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(136, 211, 206, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: 6s ease-in-out infinite float;
}
.floating-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}
.floating-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: 100px;
  animation-delay: 2s;
}
.floating-3 {
  width: 150px;
  height: 150px;
  top: 200px;
  right: -50px;
  animation-delay: 4s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.stat-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s;
}
.stat-item:hover {
  transform: translateY(-5px);
}
.stat-number {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  transition: 0.3s;
}
.feature-icon,
.stats-card {
  background: var(--gradient);
}
.app-download-card:hover,
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(110, 69, 226, 0.2);
}
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.app-feature-icon i,
.feature-icon i {
  font-size: 1.5rem;
  color: var(--light);
}
.feature-title,
.timeline-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.account-menu li,
.feature-list li,
.stats-number {
  margin-bottom: 0.5rem;
}
.feature-description {
  opacity: 0.8;
  font-size: 0.95rem;
}
.feature-list {
  list-style: none;
  padding: 0;
}
.stats-card {
  border-radius: 16px;
  padding: 3rem;
  position: relative;
}
.stats-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0,
    rgba(255, 255, 255, 0) 70%
  );
  animation: 15s linear infinite rotate;
}
.stats-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.stats-number {
  font-size: 3.5rem;
  font-weight: 800;
}
.stats-label {
  font-size: 1.2rem;
  opacity: 0.9;
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.nft-image {
  position: relative;
}
.nft-card-image img,
.nft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.nft-card:hover .nft-card-image img,
.nft-card:hover .nft-image img {
  transform: scale(1.05);
}
.nft-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 14, 23, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.nft-card:hover .nft-overlay {
  opacity: 1;
}
.nft-like {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nft-card-content,
.nft-content {
  padding: 1.5rem;
}
.nft-artist,
.nft-card-artist {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.nft-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.nft-price {
  font-size: 1.1rem;
  color: var(--secondary);
}
.nft-meta span {
  margin-left: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: var(--gradient);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}
.timeline-item:nth-child(odd) {
  left: 0;
}
.timeline-item:nth-child(2n) {
  left: 50%;
}
.timeline-marker {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--dark);
  border: 4px solid var(--primary);
  top: 15px;
  right: -17px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-item:nth-child(2n) .timeline-marker {
  left: -17px;
}
.timeline-marker.completed {
  background: var(--primary);
  border-color: var(--primary);
}
.timeline-marker.completed i {
  color: var(--light);
  font-size: 0.8rem;
}
.timeline-marker.in-progress {
  border-color: var(--accent);
}
.timeline-marker.in-progress i {
  color: var(--accent);
  font-size: 0.8rem;
}
.timeline-marker.upcoming {
  border-color: var(--secondary);
  margin-left: 2px;
}
.timeline-marker.upcoming i {
  color: var(--secondary);
  font-size: 0.8rem;
}
.timeline-content {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  transition: 0.3s;
}
.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(110, 69, 226, 0.2);
}
.timeline-quarter {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.timeline-description {
  opacity: 0.8;
  margin-bottom: 1rem;
}
.account-menu,
.footer-links,
.timeline-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline-features li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.timeline-features i {
  color: var(--primary);
}
.app-icon i,
.contact-icon i,
.download-btn,
.form-control {
  color: var(--light);
}
.download-section {
  background: linear-gradient(135deg, rgba(110, 69, 226, 0.1) 0, #0f0e17 70%);
  position: relative;
}
.app-feature {
  display: flex;
  margin-bottom: 2rem;
}
.app-feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.app-download-card,
.download-btn {
  border: 1px solid var(--glass-border);
  transition: 0.3s;
}
.app-feature-content h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.app-feature-content p {
  opacity: 0.8;
  font-size: 0.95rem;
  margin: 0;
}
.app-download-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
}
.app-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.bid-form,
.nft-actions {
  margin-top: 2rem;
}
.account-menu a i,
.download-icon {
  margin-right: 0.75rem;
}
.app-icon i {
  font-size: 2.5rem;
}
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-icon,
.download-btn {
  display: flex;
  align-items: center;
}
.download-btn {
  background: var(--glass);
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
}
.download-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.download-icon i,
.wallet-icon {
  font-size: 1.5rem;
}
.download-text {
  text-align: left;
}
.auth-footer,
.auth-header,
.privacy-hero,
.property-card,
.terms-text,
.timeline-marker {
  text-align: center;
}
.download-text small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.8;
}
.download-text strong {
  display: block;
  font-size: 1rem;
}
.contact-info {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
}
.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 12px;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.contact-form,
.meta-item {
  border: 1px solid var(--glass-border);
}
.contact-icon i {
  font-size: 1.2rem;
}
.contact-content h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.contact-content p {
  opacity: 0.8;
  margin: 0;
}
.contact-form {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  max-width: 100%;
}
.footer,
.footer-title {
  color: #fff;
  position: relative;
}
.footer {
  background: linear-gradient(135deg, #0f0f1a, #1a1a2e);
}
.newsletter,
.social-link {
  background: rgba(255, 255, 255, 0.05);
  display: flex;
}
.footer::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(110, 69, 226, 0.3), transparent 70%);
  top: -100px;
  left: -100px;
  filter: blur(80px);
}
.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-title::after {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, #6e45e2, #00d4ff);
  display: block;
  margin-top: 6px;
}
.footer-links a {
  color: #bbb;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-link:hover {
  background: linear-gradient(135deg, #6e45e2, #00d4ff);
  transform: translateY(-5px) scale(1.1);
  color: #fff;
}
.newsletter {
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bid-item,
.divider::after,
.divider::before {
  border-bottom: 1px solid var(--glass-border);
}
.newsletter input {
  flex: 1;
  border: none;
  padding: 10px 15px;
  background: 0 0;
  color: #fff;
  outline: 0;
}
.newsletter button {
  background: linear-gradient(135deg, #6e45e2, #00d4ff);
  border: none;
  padding: 0 15px;
  color: #fff;
  cursor: pointer;
}
.footer-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}
.footer-bottom-links a {
  color: #aaa;
  margin-left: 15px;
}
.footer-bottom-links a:hover {
  color: #fff;
}
.text-gradient {
  background: linear-gradient(135deg, #6e45e2, #00d4ff);
  -webkit-background-clip: text;
}
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 15px;
  }
  .timeline-item:nth-child(2n) {
    left: 0;
  }
  .timeline-marker {
    left: 15px !important;
  }
}
@media (max-width: 768px) {
  .hero-title,
  .stats-number {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .download-buttons {
    flex-direction: column;
  }
}
.text-muted {
  color: rgb(255 255 255 / 75%) !important;
}
[data-aos][data-aos][data-aos-easing="ease-in-out"],
body[data-aos-easing="ease-in-out"] [data-aos] {
  z-index: 99;
}
.timeline-marker {
  margin-right: 1px;
}
.bidder-avatar,
.creator-avatar {
  margin-right: 1rem;
  object-fit: cover;
}
body,
html {
  max-width: 100%;
  overflow-x: hidden;
}
.container,
.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
.newsletter-form .input-group {
  flex-wrap: wrap;
}
.newsletter-form .form-control {
  min-width: 100%;
  margin-bottom: 10px;
}
.nft-detail-section {
  padding: 5rem 0;
  position: relative;
}
.nft-detail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.account-main.active,
.faq-body.show,
.nft-image {
  display: block;
}
.nft-image-container {
  flex: 1;
  min-width: 300px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 600px;
}
.auth-card,
.nft-card {
  backdrop-filter: blur(10px);
}
.nft-image {
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.nft-like,
.share-btn {
  width: 40px;
  height: 40px;
  background: rgba(15, 14, 23, 0.7);
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
}
.nft-image-actions {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nft-like {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nft-like i {
  color: var(--light);
  font-size: 1rem;
}
.nft-like:hover,
.share-btn:hover {
  background: var(--primary);
}
.nft-share {
  display: flex;
  gap: 0.5rem;
}
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
}
.bid-form,
.meta-item {
  background: var(--glass);
}
.input-group-text,
.meta-value.eth,
.terms-text a {
  color: var(--secondary);
}
.nft-details {
  flex: 1;
  min-width: 300px;
}
.nft-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.footer-brand,
.nft-creator {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.creator-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.creator-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}
.creator-info p {
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
}
.nft-description {
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}
.nft-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.meta-item {
  border-radius: 8px;
  padding: 1rem;
  min-width: 120px;
}
.meta-label,
.property-type {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}
.meta-value {
  font-weight: 700;
  font-size: 1.1rem;
}
.bid-form {
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
}
.input-group {
  position: relative;
}
.input-group-text {
  position: absolute;
  right: 10px;
  top: 35%;
  transform: translateY(-50%);
  background: 0 0;
  font-weight: 700;
}
.nft-card-image,
footer {
  position: relative;
  overflow: hidden;
}
.price-conversion {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}
.bid-history,
.properties-container {
  margin-top: 3rem;
}
.bid-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.bidder-info {
  display: flex;
  align-items: center;
}
.bidder-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.bidder-name {
  font-weight: 600;
}
.bid-time {
  font-size: 0.8rem;
  opacity: 0.7;
}
.bid-amount,
.nft-card-price {
  font-weight: 700;
  color: var(--secondary);
}
.footer-links a,
.form-control,
.social-link,
.social-link:hover,
.wallet-btn {
  color: var(--light);
}
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.property-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 1rem;
  transition: 0.3s;
}
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(110, 69, 226, 0.2);
}
.account-content,
.more-nfts {
  padding: 3rem 0;
}
.section-title {
  display: inline-block;
}
.section-title::after {
  content: "";
  background: var(--gradient);
  border-radius: 2px;
}
.nft-card,
.social-link {
  background: var(--glass);
  border: 1px solid var(--glass-border);
}
.nft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.nft-card {
  -webkit-backdrop-filter: blur(10px);
}
.nft-card-image {
  height: 250px;
}
.nft-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.nft-card-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer {
  padding: 3rem 0 1.5rem;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top left,
    rgba(110, 69, 226, 0.1) 0,
    transparent 50%
  );
  z-index: -1;
}
.footer-brand i {
  font-size: 1.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  margin-right: 0.5rem;
}
.footer-description {
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.auth-card,
.wallet-btn {
  border: 1px solid var(--glass-border);
}
.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.footer-links-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.copyright,
.footer-bottom-links a {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-links li,
.privacy-section li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  opacity: 0.8;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #fff;
  opacity: 1;
  color: var(--secondary);
  padding-left: 5px;
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
  margin-top: 2rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
.footer-bottom-links a {
  color: var(--light);
  text-decoration: none;
  transition: 0.3s;
}
.footer-bottom-links a:hover {
  opacity: 1;
  color: var(--secondary);
}
@media (max-width: 992px) {
  .nft-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .nft-detail-section {
    padding: 3rem 0;
  }
  .nft-title {
    font-size: 1.8rem;
  }
  .properties-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  .hero-buttons .btn:last-child,
  .nft-actions .btn:last-child {
    margin-bottom: 0;
  }
  .hero-stats .col-4 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .stat-item {
    padding: 1rem;
  }
  .nft-title {
    font-size: 1.5rem;
  }
  .nft-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .meta-item {
    width: 100%;
  }
  .nft-actions .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.auth-container {
  flex: 1;
  display: flex;
  align-items: center;
  margin-top: 50px;
  padding: 4rem 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(110, 69, 226, 0.2) 0,
    #0f0e17 70%
  );
}
.auth-card {
  background: var(--glass);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.auth-header {
  margin-bottom: 2.5rem;
}
.auth-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
.auth-subtitle {
  opacity: 0.8;
  font-size: 1rem;
}
.form-control {
  margin-bottom: 1.5rem;
}
.auth-footer {
  margin-top: 1.5rem;
}
.auth-footer a {
  color: var(--secondary);
  font-weight: 600;
}
.divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  opacity: 0.7;
}
.divider::after,
.divider::before {
  content: "";
  flex: 1;
}
.activity-timeline::before,
.privacy-section h2::after,
.section-title::after {
  content: "";
  background: var(--gradient);
}
.divider-text {
  padding: 0 1rem;
  font-size: 0.9rem;
}
.notification-list,
.wallet-connect,
.wallet-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wallet-btn,
.wallet-item {
  display: flex;
  align-items: center;
}
.wallet-btn {
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  transition: 0.3s;
}
.nft-price,
.privacy-section h2,
.stat-number {
  color: var(--secondary);
}
.wallet-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.terms-text {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 1rem;
}
.form-control::placeholder {
  color: #ffff;
  opacity: 1;
}
.privacy-hero {
  background: radial-gradient(
    circle at 30% 50%,
    rgba(110, 69, 226, 0.2) 0,
    #0f0e17 70%
  );
  padding: 8rem 0 4rem;
}
.privacy-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
.privacy-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}
.privacy-content {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 3rem;
  margin: -3rem auto 5rem;
  max-width: 1200px;
}
.faq-category,
.privacy-section {
  margin-bottom: 3rem;
}
.privacy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.privacy-section h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
}
.privacy-section h3 {
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
}
.privacy-section p,
.privacy-section ul {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.7;
}
.privacy-section ul {
  padding-left: 1.5rem;
}
.highlight-box {
  background: rgba(110, 69, 226, 0.1);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}
.update-date {
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: right;
  margin-top: 3rem;
  font-style: italic;
}
.account-menu a i,
.faq-hero,
.policy-header,
.stat-item {
  text-align: center;
}
.profile-header {
  background: radial-gradient(
    circle at 30% 50%,
    rgba(110, 69, 226, 0.2) 0,
    #0f0e17 70%
  );
  padding: 6rem 0 3rem;
  position: relative;
}
.profile-container {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  object-fit: cover;
  margin-top: -60px;
  background: var(--dark);
}
.account-main,
.account-sidebar {
  background: var(--glass);
  border: 1px solid var(--glass-border);
}
.profile-info {
  flex: 1;
}
.profile-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.profile-username {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.profile-bio {
  max-width: 600px;
  opacity: 0.9;
  line-height: 1.6;
}
.profile-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}
.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}
.profile-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.account-sidebar {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
}
.account-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--light);
  transition: 0.3s;
}
.account-menu a.active,
.account-menu a:hover {
  background: rgba(110, 69, 226, 0.2);
  color: var(--secondary);
}
.account-menu a i {
  width: 24px;
}
.account-main {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  display: none;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.section-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
}
.nft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.nft-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}
.activity-content,
.form-control {
  background: rgba(255, 255, 255, 0.05);
}
.nft-card:hover {
  box-shadow: 0 10px 30px rgba(110, 69, 226, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(110, 69, 226, 0.2);
}
.nft-image {
  width: 100%;
  object-fit: cover;
}
.nft-info {
  padding: 1rem;
}
.nft-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nft-price {
  font-weight: 700;
}
.activity-timeline {
  position: relative;
  padding-left: 30px;
}
.activity-timeline::before {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
}
.activity-item {
  position: relative;
  padding-bottom: 2rem;
}
.activity-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--dark);
}
.activity-date {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
.activity-content {
  border-radius: 8px;
  padding: 1rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.form-control {
  color: var(--light);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  width: 100%;
}
.form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  color: var(--light);
  box-shadow: 0 0 0 0.25rem rgba(110, 69, 226, 0.25);
}
.btn {
  font-weight: 600;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: 0.3s;
}
.btn-primary {
  background: var(--gradient);
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
}
.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: 0 0;
}
.notification-item,
.wallet-item {
  border: 1px solid var(--glass-border);
  padding: 1rem;
}
.wallet-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  justify-content: space-between;
}
.wallet-icon,
.wallet-info {
  align-items: center;
  display: flex;
}
.wallet-info {
  gap: 1rem;
}
.wallet-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(110, 69, 226, 0.2);
  justify-content: center;
}
.wallet-address {
  font-size: 0.9rem;
  opacity: 0.9;
}
.notification-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
}
.notification-item.unread {
  border-left: 4px solid var(--primary);
}
.notification-icon {
  color: var(--primary);
  font-size: 1.2rem;
}
.notification-time {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}
.security-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.security-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.security-status .badge {
  background: var(--primary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}
@media (max-width: 992px) {
  .profile-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .profile-avatar {
    margin-top: -80px;
  }
  .nft-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
@media (max-width: 1200px) {
  .hero-title {
    margin-top: 70px;
  }
  .profile-info {
    margin-top: 40px !important;
  }
  .profile-header {
    margin-top: 70px !important;
  }
}
#explore {
  margin-top: 70px;
}
.profile-avatar-edit {
  position: relative;
  display: inline-block;
}
.profile-avatar-lg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.avatar-upload-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #6c5ce7;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.avatar-upload-btn:hover {
  background: #5649c0;
  transform: scale(1.1);
}
.modal-content {
  background: #1e1e2d;
  color: #fff;
  border: none;
  border-radius: 12px;
}
.form-control,
.form-control:focus {
  background-color: #2d2d42;
}
.modal-header {
  border-bottom: 1px solid #2d2d42;
}
.modal-footer {
  border-top: 1px solid #2d2d42;
}
.form-control,
.input-group-text {
  border: 1px solid #3d3d5a;
  color: #fff;
}
.form-control:focus {
  color: #fff;
  border-color: #6c5ce7;
  box-shadow: 0 0 0 0.25rem rgba(108, 92, 231, 0.25);
}
.input-group-text {
  background-color: #3d3d5a;
}
.modal .btn-close {
  color: #ffff;
}
.faq-hero {
  background: linear-gradient(135deg, #1a1a2e 0, #16213e 100%);
  padding: 100px 0 80px;
  color: #fff;
}
.faq-card {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-header {
  padding: 1.25rem;
  background: #0f0e17;
  cursor: pointer;
  transition: 0.3s;
}
.faq-header:hover {
  background: #0f0e16;
}
.faq-header h3 {
  margin: 0;
  font-size: 1.1rem;
}
.faq-body {
  padding: 1.25rem;
  display: none;
}
.search-container {
  max-width: 600px;
  margin: 0 auto 3rem;
}
.bg-light {
  background-color: #0f0e17 !important;
}
#faqbtn {
  height: 50px !important;
}
.text-primary {
  --bs-text-opacity: 1;
  color: rgb(112 78 225) !important;
}
.explore-home2 {
  width: 90%;
  margin: auto;
}
.privacy-wrapper,
.terms-wrapper {
  position: relative;
  z-index: 2;
}
.policy-header {
  margin-bottom: 3rem;
}
.policy-header .policy-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.15);
  backdrop-filter: blur(4px);
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #8b9dff;
  border: 1px solid rgba(99, 102, 241, 0.3);
  margin-bottom: 1.5rem;
}
.policy-header .policy-main-title {
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0, #8b9dff 50%, #a855f7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.policy-meta {
  color: #94a3b8;
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(99, 102, 241, 0.3);
  display: inline-block;
  padding-bottom: 0.5rem;
}
.policy-card {
  background: rgba(15, 25, 35, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
  transition: transform 0.2s, border-color 0.2s;
}
.policy-card:hover {
  border-color: rgba(99, 102, 241, 0.6);
  transform: translateY(-3px);
}
.policy-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  background: linear-gradient(120deg, #e2e8ff, #c084fc);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}
.policy-subheading {
  font-size: 1.3rem;
  font-weight: 500;
  color: #cbd5e6;
  margin: 1.5rem 0 1rem;
  border-left: 3px solid #6366f1;
  padding-left: 1rem;
}
.policy-text {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.policy-list {
  list-style: none;
  padding-left: 0;
  margin: 1.2rem 0;
}
.policy-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.8rem;
  position: relative;
  color: #cbd5e6;
}
.policy-list li i {
  position: absolute;
  left: 0;
  top: 0.25rem;
  color: #818cf8;
  font-size: 1rem;
}
.policy-highlight {
  background: rgba(99, 102, 241, 0.2);
  padding: 0.1rem 0.3rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #a5b4fc;
}
.policy-divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #6366f1,
    #a855f7,
    transparent
  );
  width: 100%;
  margin: 2rem 0;
}
.policy-contact-block {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  padding: 1.5rem;
  margin-top: 1rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.policy-icon-text {
  margin-right: 0.5rem;
  color: #8b9dff;
}
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c5ce7, #a363d9);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
  transition: 0.3s;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  backdrop-filter: blur(2px);
}
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #7c6ef0, #b574e8);
  box-shadow: 0 12px 28px rgba(108, 92, 231, 0.5);
}
.scroll-top-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .auth-container {
    padding: 2rem 0;
  }
  .auth-card {
    padding: 2rem;
  }
  .auth-title {
    font-size: 1.8rem;
  }
  .privacy-hero {
    padding: 6rem 0 3rem;
  }
  .privacy-hero h1 {
    font-size: 2.2rem;
  }
  .privacy-content {
    padding: 2rem;
    margin: -2rem auto 3rem;
  }
  .policy-section-title,
  .privacy-section h2,
  .profile-name {
    font-size: 1.5rem;
  }
  .profile-header {
    margin-top: 80px !important;
    padding: 5rem 0 2rem;
  }
  .profile-username {
    font-size: 1rem;
  }
  .profile-stats {
    gap: 1rem;
  }
  .policy-card {
    padding: 1.5rem;
  }
  .policy-header .policy-main-title {
    font-size: 2.3rem;
  }
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}