* 
html, body {
  overflow-x: hidden;
  width: 100%;
}


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@400;500&display=swap');


/* Universal Box-Sizing Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  background: linear-gradient(90deg, #110235, #130135, #151414);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.5rem;
}

.logo img {
  width: 36px;
  height: 36px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffffd9;
  font-weight: 500;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #c084fc;
}

/* Active Link Animation */
.nav-links a.active {
  color: #df0dd8;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  animation: flow-border 3s linear infinite;
}

@keyframes flow-border {
  0% { box-shadow: 0 0 5px #947dab, 0 0 10px #ac9abe inset; }
  50% { box-shadow: 0 0 15px #b7a8c6, 0 0 25px #ac9abf inset; }
  100% { box-shadow: 0 0 5px #d0bee2, 0 0 10px #e4dbed inset; }
}

/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
}

.login {
  background: #111;
  color: white;
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.login:hover {
  background-color: #2a003f;
  color: #c084fc;
}

.get-started {
  background: linear-gradient(135deg, #1f1b2e, #3c246d);
  color: white;
  padding: 8px 22px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}

.get-started:hover {
  background: linear-gradient(135deg, #2c2544, #4b2e91);
  transform: scale(1.05);
}

/* Social Icons */
.social-icons a {
  color: white;
  margin-left: 1rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #b9a7ff;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  top: 1.5rem;
  right: 1rem;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 5px;
  transition: 0.3s;
}

/* MEDIA QUERIES */

/* Tablets and below */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #0a0a23, #150531, #000000);
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 15;
  }

  .nav-links.show {
    display: flex;
  }

  .buttons {
    display: none;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav-links {
    gap: 15px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .login, .get-started {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    right: 1rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #0a0a23, #150531, #000000);
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 15;
  }

  .nav-links.show {
    display: flex;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    z-index: 10;
  }

  .logo {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .nav-links a {
    padding: 10px 15px;
    width: 100%;
  }

  .buttons {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }

  .social-icons {
    margin-top: 15px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hamburger {
    right: 1rem;
  }

  .navbar {
    padding: 0.8rem 1rem;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .logo {
    font-size: 1rem;
  }

  .login, .get-started {
    padding: 5px 10px;
    font-size: 0.85rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .social-icons a {
    font-size: 1rem;
    margin-left: 0.5rem;
  }
}
























/* Existing Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #000000, #0c0120, #10022e, #0e153a);
  color: #f2f2f2;
  line-height: 1.8;
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
}

.refund-section {
  padding: 120px 30px 80px; 
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeIn 1.2s ease-out;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  color: #a88efc;
  margin-bottom: 10px;
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.intro {
  font-size: 16px;
  color: #bbbbbb;
  margin-bottom: 30px;
}

.policy p {
  font-size: 16px;
  margin-bottom: 24px;
  color: #cccccc;
  transition: all 0.3s ease-in-out;
}

.policy p:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.container {
  padding: 0;
}

/* Live fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Animated background gradient */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  
  .refund-section {
    padding-top: 70px !important;
    margin-top: 0 !important;
    padding: 40px 15px;
  }

  .title {
    font-size: 28px;
  }

  .intro,
  .policy p {
    font-size: 14px;
  }

  .subtitle {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 24px;
  }

  .intro,
  .policy p {
    font-size: 13px;
  }

  .refund-section {
    padding: 30px 10px;
  }
}
