/* ============================= */
/* GOOGLE FONT */
/* ============================= */

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

/* ===== GLOBAL ===== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Plus Jakarta Sans","Outfit",sans-serif;
}

html{
  scroll-behavior:smooth;
  font-size:15px;
}

body{
  display:flex;
  flex-direction:column;
  background:linear-gradient(135deg,#f8fbff,#eaf3ff);
  color:#1e3a8a;
  overflow-x:hidden;
  min-height:100vh;
  position:relative;
  line-height:1.6;
}

/* ===== BACKGROUND GLOW ===== */

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
  radial-gradient(circle at 20% 30%, rgba(37,99,235,.18), transparent 40%),
  radial-gradient(circle at 80% 70%, rgba(59,130,246,.18), transparent 40%);
  z-index:-1;
  animation:bgMove 14s linear infinite alternate;
}

@keyframes bgMove{
  from{transform:translateY(-30px);}
  to{transform:translateY(30px);}
}

/* ===== LOADER ===== */

#loader{
  position:fixed;
  inset:0;
  background:#ffffff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:9999;
  gap:16px;
  transition:opacity .6s ease;
}

.dots span{
  width:7px;
  height:7px;
  background:linear-gradient(45deg,#2563eb,#3b82f6);
  border-radius:50%;
  display:inline-block;
  margin:0 4px;
  animation:bounce 1.2s infinite ease-in-out;
  box-shadow:0 0 10px rgba(37,99,235,.4);
}

.dots span:nth-child(2){animation-delay:.15s;}
.dots span:nth-child(3){animation-delay:.3s;}

.loader-text{
  font-family:"Outfit", sans-serif;
  font-size:1.3rem;
  font-weight:700;
  background:linear-gradient(45deg,#2563eb,#3b82f6);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

@keyframes bounce{
  0%,80%,100%{transform:scale(.6);opacity:.6;}
  40%{transform:scale(1.2);opacity:1;}
}

/* ===== HEADER ===== */

header{
  text-align:center;
  padding:20px 10px;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(14px);
  box-shadow:0 8px 25px rgba(37,99,235,.08);
  position:sticky;
  top:0;
  z-index:100;
}

.site-title{
  font-family:"Outfit", sans-serif;
  font-size:2rem;
  font-weight:700;
  letter-spacing:.5px;
  background:linear-gradient(45deg,#1d4ed8,#3b82f6);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ===== HERO ===== */

.hero{
  text-align:center;
  padding:90px 20px 60px;
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

.hero.active{
  opacity:1;
  transform:translateY(0);
}

.hero h2{
  font-size:2.3rem;
  font-weight:700;
  margin-bottom:35px;
}

/* ===== AUTH BUTTONS ===== */

.auth-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.login,.signup{
  padding:14px 30px;
  border-radius:60px;
  font-weight:600;
  font-size:.95rem;
  cursor:pointer;
  transition:all .3s ease;
  border:none;
}

.login{
  background:#ffffff;
  color:#2563eb;
  border:2px solid #2563eb;
}

.login:hover{
  background:#2563eb;
  color:#fff;
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(37,99,235,.3);
}

.signup{
  background:linear-gradient(45deg,#2563eb,#3b82f6);
  color:#fff;
}

.signup:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 30px rgba(37,99,235,.4);
}

/* ============================= */
/* FEATURES SECTION */
/* ============================= */

.features{

  max-width:1100px;

  margin:auto;

  padding:80px 20px;

  display:grid;

  grid-template-columns:repeat(2,1fr);

  gap:35px;

  font-family:"Outfit", sans-serif;

}

@media (max-width:750px){

  .features{
    grid-template-columns:1fr;
  }

}


/* ============================= */
/* CARD DESIGN */
/* ============================= */

.card{

  position:relative;

  padding:40px;

  border-radius:26px;

  background:rgba(255,255,255,.35);

  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);

  border:1px solid rgba(255,255,255,.4);

  box-shadow:0 15px 40px rgba(0,0,0,.12);

  transition:all .45s cubic-bezier(.2,.8,.2,1);

  overflow:hidden;

  display:flex;

  flex-direction:column;

}


/* ============================= */
/* GRADIENT LIGHT EFFECT */
/* ============================= */

.card::before{

  content:"";

  position:absolute;

  width:200%;
  height:200%;

  top:-150%;
  left:-150%;

  background:linear-gradient(
  135deg,
  #3b82f6,
  #ec4899,
  #8b5cf6
  );

  opacity:.15;

  filter:blur(90px);

  transition:.7s;

}

.card:hover::before{

  top:-40%;
  left:-40%;

}


/* ============================= */
/* HOVER EFFECT */
/* ============================= */

.card:hover{

  transform:translateY(-12px) scale(1.03);

  background:linear-gradient(
  135deg,
  rgba(59,130,246,.15),
  rgba(236,72,153,.15),
  rgba(139,92,246,.15)
  );

  border:1px solid rgba(139,92,246,.35);

  box-shadow:0 30px 80px rgba(139,92,246,.25);

}


/* ============================= */
/* ICON */
/* ============================= */

.card span{

  font-size:38px;

  margin-bottom:18px;

  display:inline-block;

  transition:.4s;

}

.card:hover span{

  transform:scale(1.2) rotate(8deg);

}


/* ============================= */
/* TITLE */
/* ============================= */

.card h3{

  font-size:24px;

  font-weight:600;

  margin-bottom:12px;

  color:#0f172a;

}


/* ============================= */
/* TEXT */
/* ============================= */

.card p{

  font-size:16px;

  line-height:1.7;

  color:#475569;

  max-width:320px;

}

/* ===================== */
/* FOOTER */
/* ===================== */

.main-footer {
  width: 100%;
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 20px 30px;
}

/* GRID CONTAINER */

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* TITLES */

.footer-section h2 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

/* TITLE UNDERLINE */

.footer-section h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #f59e0b;
  display: block;
  margin-top: 6px;
}

/* TEXT */

.footer-section p {
  font-size: 14px;
  line-height: 1.7;
  word-break: break-word;
}

/* LINKS */

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

/* LINK STYLE */

.footer-section a {
  text-decoration: none;
  color: #cbd5e1;
  position: relative;
  transition: 0.3s;
}

/* HOVER GLOW */

.footer-section a:hover {
  color: #60a5fa;
  text-shadow: 0 0 8px #60a5fa;
}

/* CLICK GLOW */

.footer-section a:active {
  color: #facc15;
  text-shadow:
    0 0 5px #facc15,
    0 0 10px #facc15,
    0 0 20px #facc15;
}

/* UNDERLINE ANIMATION */

.footer-section ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #60a5fa;
  transition: 0.3s;
}

.footer-section ul li a:hover::after {
  width: 100%;
  box-shadow: 0 0 8px #60a5fa;
}

/* BOTTOM AREA */

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
}

.footer-bottom span {
  color: #f59e0b;
  font-weight: 600;
}

/* ===================== */
/* FOOTER */
/* ===================== */

.main-footer {
  width: 100%;
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 20px 30px;
}

/* GRID CONTAINER */

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* TITLES */

.footer-section h2 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

/* TITLE UNDERLINE */

.footer-section h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #f59e0b;
  display: block;
  margin-top: 6px;
}

/* TEXT */

.footer-section p {
  font-size: 14px;
  line-height: 1.7;
  word-break: break-word;
}

/* LINKS */

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

/* LINK STYLE */

.footer-section a {
  text-decoration: none;
  color: #cbd5e1;
  position: relative;
  transition: 0.3s;
}

/* HOVER GLOW */

.footer-section a:hover {
  color: #60a5fa;
  text-shadow: 0 0 8px #60a5fa;
}

/* CLICK GLOW */

.footer-section a:active {
  color: #facc15;
  text-shadow:
    0 0 5px #facc15,
    0 0 10px #facc15,
    0 0 20px #facc15;
}

/* UNDERLINE ANIMATION */

.footer-section ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #60a5fa;
  transition: 0.3s;
}

.footer-section ul li a:hover::after {
  width: 100%;
  box-shadow: 0 0 8px #60a5fa;
}

/* BOTTOM AREA */

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
}

.footer-bottom span {
  color: #f59e0b;
  font-weight: 600;
}


/* INSTALL POPUP */

.install-popup {
  
  position: fixed;
  bottom: 20px;
  left: 50%;
  
  transform: translateX(-50%) translateY(120%);
  
  background: #111827;
  color: white;
  
  padding: 15px;
  
  width: 90%;
  max-width: 420px;
  
  border-radius: 15px;
  
  display: flex;
  align-items: center;
  gap: 10px;
  
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  
  transition: 0.5s;
  
  z-index: 9999;
  
}

/* SHOW POPUP */

.install-popup.show {
  transform: translateX(-50%) translateY(0);
}

/* LOGO */

.install-logo {
  
  width: 50px;
  height: 50px;
  
  border-radius: 10px;
}

/* TEXT */

.install-text {
  flex: 1;
}

.install-text h3 {
  margin: 0;
  font-size: 16px;
}

.install-text p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #9ca3af;
}

/* INSTALL BUTTON */

#installBtn {
  
  background: #2563eb;
  color: white;
  
  border: none;
  
  padding: 8px 15px;
  
  border-radius: 8px;
  
  cursor: pointer;
  
  font-weight: bold;
}

#installBtn:hover {
  background: #1d4ed8;
}

/* CLOSE BUTTON */

#closeInstall {
  
  background: none;
  border: none;
  
  color: white;
  
  font-size: 18px;
  
  cursor: pointer;
}

/* ===================== */
/* ABOUT PAGE */
/* ===================== */

.about-top {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* BACK BUTTON */

.back-btn {
  
  font-family: "Outfit", sans-serif;
  
  background: linear-gradient(45deg, #2563eb, #3b82f6);
  color: white;
  
  padding: 10px 22px;
  
  border: none;
  border-radius: 50px;
  
  cursor: pointer;
  
  font-weight: 600;
  
  transition: .35s;
  
  box-shadow: 0 8px 25px rgba(37, 99, 235, .35);
  
}

.back-btn:hover {
  
  transform: translateY(-3px);
  
  box-shadow: 0 12px 35px rgba(37, 99, 235, .5);
  
}


/* HERO */

.about-hero {
  
  text-align: center;
  max-width: 800px;
  margin: auto;
  padding: 50px 20px 20px;
  
}

.about-hero h2 {
  
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  
}

.about-hero p {
  
  color: #475569;
  margin-top: 8px;
  
}


/* CONTENT */

.about-content {
  
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px 80px;
  
  display: grid;
  gap: 25px;
  
}


/* GLASSMORPHISM */

.glass-box {
  
  background: rgba(255, 255, 255, .55);
  
  backdrop-filter: blur(16px);
  
  border-radius: 22px;
  
  padding: 30px;
  
  border: 1px solid rgba(255, 255, 255, .4);
  
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  
  transition: .35s;
  
}

.glass-box:hover {
  
  transform: translateY(-6px);
  
  box-shadow: 0 20px 45px rgba(37, 99, 235, .25);
  
}

.glass-box h3 {
  
  font-family: "Outfit", sans-serif;
  
  color: #1e3a8a;
  
  margin-bottom: 6px;
  
}

.glass-box p {
  
  color: #475569;
  line-height: 1.7;
  
}


/* WAVE DIVIDER */

.wave-divider {
  
  width: 100%;
  overflow: hidden;
  
}

.wave-divider svg {
  
  display: block;
  width: 100%;
  height: 90px;
  
}


/* SCROLL REVEAL */

.reveal {
  
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
  
}

.reveal.active {
  
  opacity: 1;
  transform: translateY(0);
  
}

/* CONTACT HERO */

.contact-hero {
  padding: 120px 20px 150px;
  text-align: center;
  position: relative;
}

.contact-hero h1 {
  font-size: 48px;
  color: #2b4fb3;
  margin-bottom: 15px;
  font-family: 'Outfit', sans-serif;
}

.contact-hero p {
  max-width: 650px;
  margin: auto;
  font-size: 18px;
  color: #5b6472;
  line-height: 1.7;
}

/* CONTACT SECTION */

.contact-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}


/* GLASS CARD */

.contact-card {
  
  max-width: 650px;
  width: 100%;
  
  padding: 40px;
  
  border-radius: 20px;
  
  background: rgba(255, 255, 255, 0.25);
  
  backdrop-filter: blur(15px);
  
  border: 1px solid rgba(255, 255, 255, 0.3);
  
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  
  text-align: center;
}


/* FORM */

.contact-card input,
.contact-card textarea {
  
  width: 100%;
  
  padding: 15px;
  
  margin: 10px 0;
  
  border-radius: 10px;
  
  border: 1px solid rgba(0, 0, 0, 0.1);
  
  background: rgba(255, 255, 255, 0.7);
  
  font-size: 15px;
  
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-card textarea {
  height: 130px;
  resize: none;
}


/* BUTTON */

.contact-card button {
  
  width: 100%;
  
  padding: 15px;
  
  margin-top: 10px;
  
  border: none;
  
  border-radius: 40px;
  
  background: linear-gradient(135deg, #4f8cff, #2a5bff);
  
  color: white;
  
  font-size: 16px;
  
  font-weight: 600;
  
  cursor: pointer;
  
  transition: 0.3s;
  
}

.contact-card button:hover {
  transform: translateY(-3px);
}


/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   DMCA HERO
   ================================ */
.dmca-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(79,70,229,0.85), rgba(99,102,241,0.85));
  color: #fff;
  border-radius: 20px;
  margin: 20px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  animation: fadeInUp 1s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dmca-hero:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.dmca-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.dmca-hero p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.hero-buttons button {
  margin: 10px;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  background-color: #fff;
  color: #4f46e5;
  transition: 0.3s;
}

.hero-buttons button:hover {
  background-color: #e0e0ff;
}

/* ================================
   DMCA CARDS
   ================================ */
.dmca-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.dmca-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dmca-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.dmca-card h2 {
  color: #4f46e5;
  margin-bottom: 15px;
  font-family: 'Outfit', sans-serif;
}

.dmca-card p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
}

/* ================================
   DMCA FORM
   ================================ */
.dmca-card form input,
.dmca-card form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 16px;
  background: rgba(255,255,255,0.25);
  color: #111;
  backdrop-filter: blur(5px);
}

.dmca-card form button {
  background-color: #4f46e5;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.dmca-card form button:hover {
  background-color: #3730a3;
}

/* Loading spinner */
.loading-spinner {
  border: 4px solid rgba(255,255,255,0.2);
  border-top: 4px solid #4f46e5;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin: 15px auto;
  animation: spin 1s linear infinite;
}

/* Form messages */
.form-message {
  display: none;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
}

.form-message.success {
  background-color: #d1fae5;
  color: #065f46;
}

.form-message.error {
  background-color: #fee2e2;
  color: #b91c1c;
}

/* ================================
   EXAMPLES / RESOURCE CARDS
   ================================ */
.example-cards,
.resource-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.example-card,
.resource-card {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  text-align: center;
  font-weight: 600;
}

/* ================================
   TIMELINE
   ================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;
}

.timeline-step {
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  font-weight: 600;
}

/* ================================
   ACCORDION FAQ
   ================================ */
.accordion-btn {
  background: rgba(255,255,255,0.15);
  color: #111827;
  cursor: pointer;
  padding: 16px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 8px;
  transition: 0.3s ease;
  backdrop-filter: blur(8px);
}

.accordion-btn.active,
.accordion-btn:hover {
  background-color: rgba(79,70,229,0.2);
}

.panel {
  padding: 0 16px;
  display: none;
  background-color: rgba(255,255,255,0.1);
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* ================================
   BACK TO TOP BUTTON
   ================================ */
#topBtn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 30px;
  font-size: 18px;
  background-color: #4f46e5;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

#topBtn:hover {
  background-color: #3730a3;
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 768px) {
  .dmca-hero h1 { font-size: 2rem; }
  .dmca-hero p { font-size: 1rem; }
}

@media (max-width: 480px) {
  .dmca-hero { padding: 40px 15px; }
  .dmca-hero h1 { font-size: 1.7rem; }
  .dmca-hero p { font-size: 0.95rem; }
  .dmca-card { padding: 20px; }
  .example-card, .resource-card { font-size: 0.9rem; }
}

