@font-face {
  font-family: Satoshi;
  src: url("https://cdn.prod.website-files.com/66a2518ff5fcac851841fbe7/66a2518ff5fcac851841fc1f_Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url("https://cdn.prod.website-files.com/66a2518ff5fcac851841fbe7/66a2518ff5fcac851841fc14_Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Clashdisplay;
  src: url("https://cdn.prod.website-files.com/66a2518ff5fcac851841fbe7/66a25238623e1e36bb8596c1_ClashDisplay-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Clashdisplay;
  src: url("https://cdn.prod.website-files.com/66a2518ff5fcac851841fbe7/66a2523843572dc639af40cf_ClashDisplay-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-dark: #0d0d0d;
  --color-light: #ffffff;
  --color-primary: #84eb0c;
  --color-secondary: #9c89ee;
  --color-accent: #f5c518;
  --color-elevation: rgba(255, 255, 255, 0.05);
  --color-border: #121212;
  --font-main: 'Satoshi', sans-serif;
  --font-heading: 'Clashdisplay', sans-serif;
}

html, body {
  background-color: var(--color-dark);
  color: var(--color-light);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
}

p {
  color: #989898;
  font-size: 16px;
  line-height: 1.5;
}

/* Navbar Styling */
.navbar {
  background-color: var(--color-dark) !important;
  padding: 15px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand img {
  height: 65px;
}

.nav-link {
  color: var(--color-light) !important;
  font-size: 14px;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--color-primary) !important;
}

/* Dropdown Styling */
.dropdown-toggle::after {
  content: "\e5cf"; /* keyboard_arrow_down */
  font-family: 'Material Icons Outlined';
  border: none;
  vertical-align: middle;
  font-size: 18px;
  margin-left: 2px;
  opacity: 0.7;
}

.dropdown-menu {
  background-color: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 10px;
  margin-top: 0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  display: none;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  color: #ffffff;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background-color: rgba(132, 235, 12, 0.1);
  color: var(--color-primary);
}

.btn-login-outline {
  color: var(--color-light);
  text-decoration: none;
  font-weight: 600;
  margin-right: 20px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-login-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-light);
}

.btn-signup {
  background-color: var(--color-primary);
  color: var(--color-dark);
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-signup:hover {
  transform: translateY(-2px);
  color: var(--color-dark);
}

/* Section General */
.section {
  padding: 100px 0;
  overflow: hidden; /* Prevent horizontal overflow from absolute assets */
  position: relative;
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding-top: 60px;
  padding-bottom: 100px;
  position: relative;
}

/* Background Mesh Effect */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background-position: center;
  background-size: cover;
  opacity: 0.3;
  z-index: -2;
}

.hero-section h1 {
  font-size: 3vw;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.top-text {
  color: var(--color-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-section .body-big {
  font-size: 20px;
  max-width: 530px;
  margin-bottom: 40px;
}

.btn-explore {
  border: 1px solid rgba(233, 233, 233, 0.16);
  color: var(--color-light);
  border-radius: 12px;
  padding: 12px 30px;
  text-decoration: none;
  margin-left: 20px;
  transition: background-color 0.2s;
}

.btn-explore:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Trusted By Marquee */
.trusted-by-section {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
}

.marquee-content img {
  height: 40px;
  margin: 0 40px;
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Cards & Features */
.feature-card, .story-card {
  background-color: var(--color-elevation);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  transition: background-color 0.35s;
}

.feature-card:hover, .story-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.feature-card h5, .story-card h5 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* Features Section Exact Design */
.features-section {
  padding: 100px 0;
}

.features-main-title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  max-width: 600px;
  color: #fff;
  margin-bottom: 0;
}

.btn-outline-green {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-green:hover {
  background-color: var(--color-primary);
  color: #000;
}

.features-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1px;
  overflow-x: auto; /* Enable horizontal scrolling on mobile */
  -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
  scrollbar-width: none; /* Hide scrollbar Firefox */
}

.features-tabs::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari/Webkit */
}

.tab-link {
  white-space: nowrap; /* Prevent tab text from wrapping */
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 12px;
  position: relative;
  transition: color 0.3s ease;
}

.tab-link:hover {
  color: #fff;
}

.tab-link.active {
  color: #fff;
}

.tab-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}

.feature-item {
  height: 100%;
}

.feature-icon-box {
  width: 32px;
  height: 32px;
  background-color: rgba(132, 235, 12, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-size: 18px !important;
  color: #fff !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  line-height: 1.3 !important;
}

.feature-desc {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

.artist-feature-img {
  max-width: 450px;
  position: relative;
  z-index: 2;
}

.zigzag-bg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background-color: var(--color-primary);
  clip-path: polygon(20% 0%, 0% 20%, 30% 20%, 0% 50%, 30% 50%, 0% 80%, 30% 80%, 10% 100%, 100% 100%, 80% 80%, 100% 80%, 80% 50%, 100% 50%, 80% 20%, 100% 20%, 80% 0%);
  opacity: 0.15;
  z-index: 1;
}

/* Success Stories Refined Styling */
.success-stories-section {
  background-color: #000;
  padding: 120px 0;
}

.story-card-wrapper {
  height: 100%;
}

.story-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0 !important; /* Reset padding from general card rule */
  overflow: hidden;
}

.story-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.story-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60%; /* Aspect ratio for images */
  overflow: hidden;
  background: #111;
}

.story-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-card:hover .story-img-wrapper img {
  transform: scale(1.1);
}

.story-content {
  padding: 24px !important;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.story-tag {
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.story-title {
  font-size: 18px !important;
  line-height: 1.3 !important;
  margin-bottom: 12px !important;
  color: #fff;
  font-weight: 600;
  text-transform: none !important; /* Original site uses mixed case for titles */
}

.story-desc {
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 0;
}

/* Ecosystem Section */
.ecosystem-section {
    background-color: #000;
    padding: 100px 0;
    overflow: hidden;
}

.ecosystem-content h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
}

.ecosystem-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

.ecosystem-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Trusted Partner Section */
.trusted-partner-section {
    background-color: #000;
    padding: 100px 0;
    overflow: hidden;
}

.trusted-partner-content h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
}

.trusted-partner-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.trusted-partner-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trusted-partner-img {
    max-width: 100%;
    height: auto;
    z-index: 2;
}

@media (max-width: 991px) {
    .trusted-partner-content h2 {
        font-size: 40px;
    }
    .trusted-partner-section {
        padding: 60px 0;
    }
}

/* FAQ Styling */
.faq-section {
  background-color: #000;
}

.accordion-item {
  background-color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px !important;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  background-color: #161616;
}

.accordion-button {
  background-color: transparent !important;
  color: var(--color-light) !important;
  font-size: 16px;
  
  padding: 30px 80px 30px 40px;
  box-shadow: none !important;
  text-transform: none !important;
  display: flex;
  align-items: center;
  position: relative;
}

.accordion-button::after {
  content: "+";
  background-image: none !important;
  font-size: 24px;
  font-weight: 400;
  width: auto;
  height: auto;
  transform: none !important;
  transition: transform 0.3s ease;
  filter: none !important;
  position: absolute;
  right: 40px;
}

.accordion-button:not(.collapsed)::after {
  content: "+";
  transform: rotate(45deg) !important;
}

.accordion-body {
  padding: 0 40px 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
}

/* Auxy Studio Section Styling */
.auxy-section {
  padding: 100px 0;
}

.auxy-wrapper {
  background-image: radial-gradient(circle at 100% 100%, rgba(132, 235, 12, 0.05) 0%, transparent 40%),
                    radial-gradient(circle at 0% 0%, rgba(156, 137, 238, 0.03) 0%, transparent 40%);
  position: relative;
}

.auxy-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

.auxy-img {
  filter: drop-shadow(0 0 30px rgba(156, 137, 238, 0.2));
  transition: transform 0.5s ease;
}

.auxy-wrapper:hover .auxy-img {
  transform: scale(1.05) rotate(2deg);
}

@media (max-width: 991px) {
  .auxy-wrapper {
    padding: 40px 30px !important;
  }
  
  .auxy-wrapper h2 {
    font-size: 32px !important;
  }
  
  .auxy-wrapper p {
    font-size: 16px !important;
  }
}

/* Audience Intelligence Section Styling */
.express-ads-wrapper {
  background-image: radial-gradient(circle at 100% 100%, rgba(132, 235, 12, 0.05) 0%, transparent 40%),
                    radial-gradient(circle at 0% 0%, rgba(156, 137, 238, 0.03) 0%, transparent 40%);
  position: relative;
}

.express-ads-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

.express-ads-img {
  filter: drop-shadow(0 0 30px rgba(132, 235, 12, 0.2));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.express-ads-img:hover,
.express-ads-wrapper:hover .express-ads-img,
.release-card:hover .express-ads-img,
.trusted-partner-image-wrapper:hover .express-ads-img {
  transform: translateX(10px) rotate(2deg) scale(1.03);
}

@media (max-width: 991px) {
  .express-ads-wrapper {
    padding: 40px 30px !important;
  }
  
  .express-ads-wrapper h2 {
    font-size: 32px !important;
  }
  
  .express-ads-wrapper p {
    font-size: 16px !important;
  }
}

/* Media Mention Section */
.media-mention-section h2 {
  font-size: 28px !important;
  line-height: 1.4 !important;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.media-logo {
  transition: filter 0.3s ease, transform 0.3s ease;
}

.media-logo:hover {
  filter: brightness(0) invert(1) !important;
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .media-mention-section h2 {
    font-size: 20px !important;
  }
  
  .media-logos-wrapper {
    padding: 30px 20px !important;
  }
}

/* Footer */
.footer-section {
  padding: 80px 0 40px;
  background-color: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-newsletter {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 60px;
}

.newsletter-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}
.newsletter-text p {
  font-size: 24px;
  
  color: #fff;
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  max-width: 450px;
  margin-left: auto;
}

.newsletter-form input {
  border: none;
  padding: 12px 20px;
  flex-grow: 1;
  font-size: 14px;
  outline: none;
}

.newsletter-form button {
  background-color: #84eb0c;
  color: #000;
  border: none;
  padding: 12px 25px;
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.3s;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

.footer-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 65px;
}

.footer-socials {
  display: flex;
  gap: 25px;
}

.footer-socials a {
  color: #fff;
  font-size: 20px;
  transition: opacity 0.3s;
  text-decoration: none;
}

.footer-socials a:hover {
  opacity: 0.7;
}

.footer-main-row {
  margin-bottom: 60px;
}

.footer-contact-info {
  color: #989898;
  font-size: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-col h5 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.footer-link {
  color: #989898;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #fff;
}

/* Footer Countries Marquee */
.footer-countries-marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
      text-align: center;
}

.footer-countries-marquee .countries-label {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-transform: none;
  margin-bottom: 25px !important;
}

/* Wall of Love Section */
.wall-of-love-section {
    background-color: #000;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

/* Releases Sliding Section */
.releases-section {
    background-color: #000;
    background-image: radial-gradient(circle at 50% 50%, rgba(110, 56, 233, 0.05) 0%, transparent 70%);
    padding: 80px 0;
    overflow: hidden;
}

.releases-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.releases-title-badge {
   
    color: #fff;
    padding: 12px 40px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(110, 56, 233, 0.3);
}

.releases-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 30px;
    padding: 20px 0;
}

.releases-marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 30px;
    animation: releases-scroll 40s linear infinite;
}

.release-item {
    width: 280px;
    flex-shrink: 0;
}

.release-card {
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #111;
    position: relative;
}

.release-card:hover {
    transform: scale(1.05);
    border-color: #84eb0c;
}

.release-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@keyframes releases-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% - 30px)); }
}

/* Pause on hover */
.releases-marquee:hover .releases-marquee-content {
    animation-play-state: paused;
}

.wall-of-love-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.wall-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 180px;
}

.artist-card {
    border-radius: 24px;
    overflow: hidden;
    background-color: #111;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.artist-card:hover {
    transform: translateY(-10px) scale(1.03);
    z-index: 10;
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spotify-badge-card {
    background-color: #1DB954;
    border-radius: 30px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.3);
}

.spotify-badge-card .spotify-icon {
    width: 70%;
    margin-bottom: 15px;
}

.spotify-badge-card p {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Height variations for masonry effect */
.h-sm { height: 180px; }
.h-md { height: 260px; }
.h-lg { height: 340px; }
.h-xl { height: 420px; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .wall-column:last-child { display: none; }
}

@media (max-width: 991px) {
    .wall-column:nth-last-child(-n+2) { display: none; }
    .wall-of-love-wrapper { gap: 15px; }
}

@media (max-width: 768px) {
    .wall-of-love-section { padding: 60px 0; }
    .wall-column:nth-last-child(-n+3) { display: none; }
}

.countries-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.countries-marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: countries-marquee 30s linear infinite;
}

.countries-marquee-content .country-item {
  color: #989898;
  font-size: 16px;
  margin-right: 50px;
  display: inline-block;
  font-weight: 400;
}

@keyframes countries-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.footer-countries {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 40px;
}

.countries-label {
  font-weight: 800;
  color: #fff;
  margin-right: 20px;
}

.country-item {
  color: #989898;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.country-item:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .newsletter-form {
    margin-left: 0;
    margin-top: 20px;
    max-width: 100%;
  }
  
  .footer-brand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

/* Sub Footer Bar */
.footer-bottom-bar {
  background-color: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
      margin-top: 53px;
}

.copyright-text {
  color: #fff;
  font-weight: 500;
}

.copyright-icon {
  color: #9c89ee; /* Purple tint as seen in image */
  margin-right: 5px;
  font-size: 16px;
}

.made-with-text {
  color: #fff;
  font-weight: 500;
}

.heart-icon {
  color: #fff; /* Heart is white in the image text */
  margin: 0 3px;
}

@media (max-width: 767px) {
  .footer-bottom-bar {
    text-align: center;
  }
}

.footer-link:hover {
  color: var(--color-primary);
}

/* Background Blur Effects */
.bg-blur {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(132, 235, 12, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  max-width: 100vw; /* Keep within viewport bounds */
}

.bg-blur-1 { top: -10%; right: -10%; }
.bg-blur-2 { bottom: 10%; left: -10%; background: radial-gradient(circle, rgba(156, 137, 238, 0.1) 0%, rgba(0, 0, 0, 0) 70%); }
