* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --black:#030303;
  --black-2:#080705;
  --dark:#0e0b08;
  --gold:#d6b56d;
  --gold-2:#f1d99d;
  --gold-3:#a97a32;
  --cream:#fff2d8;
  --muted:#bcae93;
  --rose:#c88b73;
  --emerald:#09352d;
  --wine:#54111a;
  --line:rgba(214,181,109,.24);
  --glass:rgba(255,242,216,.06);
}

html{
  scroll-behavior:auto;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--black);
  color:var(--cream);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-5;
  background:
    radial-gradient(circle at 18% 8%, rgba(214,181,109,.16), transparent 24%),
    radial-gradient(circle at 88% 15%, rgba(84,17,26,.22), transparent 28%),
    radial-gradient(circle at 50% 85%, rgba(9,53,45,.2), transparent 32%),
    linear-gradient(180deg,#030303 0%,#0b0805 50%,#030303 100%);
}

a{
  color:inherit;
}

.grain{
  position:fixed;
  inset:0;
  z-index:80;
  pointer-events:none;
  opacity:.11;
  mix-blend-mode:screen;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:3px 3px;
}

.cursor-glow{
  position:fixed;
  width:420px;
  height:420px;
  pointer-events:none;
  border-radius:50%;
  background:rgba(214,181,109,.18);
  filter:blur(80px);
  transform:translate(-50%,-50%);
  z-index:1;
}

.particle-layer{
  position:fixed;
  inset:0;
  z-index:4;
  pointer-events:none;
  overflow:hidden;
}

.particle{
  position:absolute;
  top:-20px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:rgba(241,217,157,.65);
  box-shadow:0 0 16px rgba(241,217,157,.65);
  animation:fall linear forwards;
}

.preloader{
  position:fixed;
  inset:0;
  z-index:200;
  display:grid;
  place-items:center;
  background:#030303;
  transition:1s ease;
}

.preloader.hide{
  opacity:0;
  pointer-events:none;
}

.preloader-inner{
  text-align:center;
}

.brand-mark{
  width:94px;
  height:94px;
  border:1px solid var(--line);
  border-radius:50%;
  display:grid;
  place-items:center;
  margin:0 auto 22px;
  font-family:'Cormorant Garamond',serif;
  font-size:34px;
  color:var(--gold-2);
  box-shadow:0 0 60px rgba(214,181,109,.16);
}

.preloader p{
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--muted);
  font-size:12px;
}

.navbar{
  position:fixed;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  width:min(1180px,calc(100% - 28px));
  z-index:70;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border:1px solid rgba(214,181,109,.18);
  border-radius:999px;
  background:rgba(5,5,5,.44);
  backdrop-filter:blur(20px);
  box-shadow:0 20px 60px rgba(0,0,0,.24);
}

.logo{
  text-decoration:none;
  font-family:'Cormorant Garamond',serif;
  font-size:26px;
  color:var(--cream);
  white-space:nowrap;
}

.logo span{
  color:var(--gold);
}

.nav-links{
  display:flex;
  gap:24px;
}

.nav-links a,
.nav-cta{
  text-decoration:none;
  color:#f2dfbd;
  font-size:13px;
}

.nav-cta{
  padding:12px 20px;
  border-radius:999px;
  background:linear-gradient(135deg,#f3d48d,#d6b56d,#a97a32);
  color:#150d05;
  font-weight:700;
}

.hero{
  min-height:100vh;
  position:relative;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
  width:min(1240px,100%);
  margin:auto;
  padding:150px 24px 90px;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(circle at 25% 28%, rgba(214,181,109,.14), transparent 18%),
    radial-gradient(circle at 74% 35%, rgba(200,139,115,.13), transparent 20%);
}

.hero-ring{
  position:absolute;
  border:1px solid rgba(214,181,109,.08);
  border-radius:50%;
  pointer-events:none;
}

.ring-one{
  width:780px;
  height:780px;
  right:-240px;
  top:90px;
}

.ring-two{
  width:520px;
  height:520px;
  right:-90px;
  top:220px;
}

.kicker{
  color:var(--gold-2);
  letter-spacing:5px;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:22px;
}

.hero h1,
.section-header h2,
.showreel-text h2,
.contact h2{
  font-family:'Cormorant Garamond',serif;
  font-weight:500;
  line-height:.95;
  color:var(--cream);
}

.hero h1{
  font-size:clamp(58px,7vw,104px);
  max-width:760px;
}

.hero h1 span{
  display:block;
  color:var(--gold);
}

.hero-copy{
  max-width:640px;
  margin:30px 0 0;
  color:#dbcab0;
  line-height:1.9;
  font-size:17px;
}

.hero-actions,
.contact-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:38px;
}

.primary-btn,
.ghost-btn,
.price-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.2px;
}

.primary-btn,
.price-btn{
  background:linear-gradient(135deg,#f3d48d,#d6b56d,#a97a32);
  color:#140d05;
  box-shadow:0 18px 44px rgba(214,181,109,.18);
}

.ghost-btn{
  border:1px solid var(--line);
  color:var(--gold-2);
  background:rgba(255,255,255,.03);
}

.hero-stats{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:48px;
}

.hero-stats div{
  min-width:160px;
  padding:18px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.hero-stats strong{
  display:block;
  font-family:'Cormorant Garamond',serif;
  font-size:42px;
  color:var(--gold-2);
  line-height:.8;
}

.hero-stats span{
  display:block;
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
}

.hero-device{
  position:relative;
  display:grid;
  place-items:center;
  min-height:600px;
}

.phone{
  width:310px;
  height:620px;
  border:1px solid rgba(214,181,109,.3);
  border-radius:42px;
  padding:14px;
  background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.02));
  backdrop-filter:blur(18px);
  box-shadow:
    0 38px 100px rgba(0,0,0,.42),
    inset 0 0 50px rgba(214,181,109,.05);
  transform:rotate(4deg);
}

.phone-screen{
  width:100%;
  height:100%;
  border-radius:32px;
  overflow:hidden;
   background:
    linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.62)),
    url('./telefon-gorsel.jpg') center/cover;
}
}

.screen-top{
  position:absolute;
  top:56px;
  left:50%;
  transform:translateX(-50%);
  font-family:'Cormorant Garamond',serif;
  color:var(--gold-2);
  font-size:23px;
  letter-spacing:3px;
  white-space:nowrap;
}

.screen-envelope{
  width:200px;
  height:120px;
  border-radius:10px;
  background:
    linear-gradient(135deg,rgba(255,244,223,.9),rgba(218,174,130,.78));
  margin:0 auto 160px;
  position:relative;
  box-shadow:0 18px 48px rgba(0,0,0,.28);
}

.screen-envelope::before{
  content:"";
  position:absolute;
  inset:0;
  clip-path:polygon(0 0,100% 0,50% 65%);
  background:rgba(255,255,255,.24);
}

.screen-envelope::after{
  content:"MD";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:54px;
  height:54px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#d6b56d,#8e5e21);
  color:#271609;
  font-family:'Cormorant Garamond',serif;
  font-weight:700;
}

.screen-title{
  font-family:'Cormorant Garamond',serif;
  font-size:36px;
  color:var(--cream);
}

.screen-count{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  margin-top:18px;
}

.screen-count span{
  border:1px solid rgba(255,242,216,.24);
  border-radius:12px;
  padding:12px 4px;
  text-align:center;
  color:var(--gold-2);
}

.floating-card{
  position:absolute;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 16px;
  background:rgba(8,7,5,.72);
  backdrop-filter:blur(16px);
  color:#f3dfbd;
  box-shadow:0 20px 50px rgba(0,0,0,.24);
  font-size:13px;
}

.floating-card span{
  color:var(--gold-2);
  margin-right:8px;
}

.fc-one{top:110px;left:5%}
.fc-two{right:0;top:260px}
.fc-three{left:0;bottom:125px}

.trust-section{
  width:min(1240px,100%);
  margin:auto;
  padding:26px 24px 80px;
  text-align:center;
}

.trust-section p{
  color:var(--muted);
  margin-bottom:18px;
}

.trust-line{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}

.trust-line span{
  padding:10px 16px;
  border:1px solid rgba(214,181,109,.16);
  border-radius:999px;
  color:#e4d2b4;
  background:rgba(255,255,255,.025);
}

.section{
  width:min(1240px,100%);
  margin:auto;
  padding:90px 24px;
}

.section-header{
  max-width:800px;
  margin-bottom:46px;
}

.section-header h2,
.showreel-text h2,
.contact h2{
  font-size:clamp(44px,6vw,78px);
}

.section-header p:not(.kicker),
.showreel-text p,
.contact p{
  margin-top:20px;
  color:#d8c8ad;
  line-height:1.9;
  font-size:17px;
}

.template-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.template-card,
.feature-card,
.price-card,
.process-item,
.testimonial-card{
  border:1px solid rgba(214,181,109,.18);
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.018));
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 26px 80px rgba(0,0,0,.24);
}

.template-preview{
  min-height:290px;
  display:grid;
  place-items:center;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.preview-1{
  background:
    radial-gradient(circle at center,rgba(214,181,109,.22),transparent 28%),
    linear-gradient(135deg,#030303,#16100a);
}

.preview-2{
  background:
    radial-gradient(circle at top,rgba(214,181,109,.22),transparent 28%),
    linear-gradient(135deg,#fff2dc,#f3d5c2);
  color:#5b3327;
}

.preview-3{
  background:
    radial-gradient(circle at top,rgba(214,181,109,.25),transparent 30%),
    linear-gradient(135deg,#2b140d,#7a3e2a,#1a0d08);
}

.template-name{
  font-family:'Cormorant Garamond',serif;
  font-size:44px;
  color:var(--gold-2);
  z-index:2;
}

.preview-2 .template-name,
.preview-2 .template-date{
  color:#9f6d2f;
}

.template-line{
  width:120px;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  margin-top:70px;
  position:absolute;
}

.template-date{
  position:absolute;
  bottom:34px;
  color:#e8d0a0;
  letter-spacing:3px;
}

.template-flower{
  position:absolute;
  top:30px;
  right:34px;
  font-size:58px;
  color:rgba(159,109,47,.2);
}

.envelope-mini{
  width:210px;
  height:125px;
  border-radius:10px;
  background:linear-gradient(135deg,#f8ddc7,#d59d7c);
  box-shadow:0 18px 48px rgba(0,0,0,.32);
  position:absolute;
  top:36px;
}

.envelope-mini::after{
  content:"";
  position:absolute;
  inset:0;
  clip-path:polygon(0 0,100% 0,50% 68%);
  background:rgba(255,255,255,.22);
}

.template-body{
  padding:28px;
}

.tag,
.badge{
  display:inline-flex;
  color:var(--gold-2);
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  margin-bottom:18px;
}

.template-body h3,
.feature-card h3,
.price-card h3,
.process-item h3{
  font-family:'Cormorant Garamond',serif;
  font-size:32px;
  font-weight:500;
  color:var(--cream);
}

.template-body p,
.feature-card p,
.price-desc,
.process-item p{
  margin-top:12px;
  color:#d8c8ad;
  line-height:1.8;
}

.showreel-card{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:42px;
  align-items:center;
  border:1px solid rgba(214,181,109,.18);
  border-radius:36px;
  padding:26px;
  background:
    radial-gradient(circle at 16% 20%,rgba(214,181,109,.16),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.018));
  overflow:hidden;
}

.showreel-visual{
  min-height:430px;
  border-radius:28px;

  background-image:
    linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.36)),
    url("./showreel.jpg");

  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;

  display:grid;
  place-items:center;

  box-shadow:0 24px 70px rgba(0,0,0,.28);
}

.play-circle{
  width:92px;
  height:92px;
  border:1px solid rgba(255,242,216,.58);
  border-radius:50%;
  display:grid;
  place-items:center;
  backdrop-filter:blur(12px);
  background:rgba(0,0,0,.2);
  color:var(--gold-2);
}

.mini-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:28px;
}

.mini-list span{
  border-top:1px solid var(--line);
  padding-top:12px;
  color:#ead7b8;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.feature-card{
  padding:30px;
}

.feature-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:18px;
  color:var(--gold-2);
  font-size:24px;
  margin-bottom:22px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  align-items:stretch;
}

.price-card{
  position:relative;
  padding:32px;
  display:flex;
  flex-direction:column;
}

.price-card.featured{
  border-color:rgba(214,181,109,.48);
  transform:translateY(-16px);
  background:
    radial-gradient(circle at top,rgba(214,181,109,.18),transparent 30%),
    linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.018));
}

.price-card.elite{
  background:
    radial-gradient(circle at top,rgba(200,139,115,.18),transparent 32%),
    linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.018));
}

.badge{
  position:absolute;
  right:22px;
  top:22px;
  background:rgba(214,181,109,.12);
}

.price-head span{
  color:var(--gold-2);
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:12px;
}

.price{
  font-family:'Cormorant Garamond',serif;
  font-size:58px;
  color:var(--gold-2);
  margin:26px 0 10px;
}

.price-card ul{
  list-style:none;
  display:grid;
  gap:12px;
  margin:28px 0;
  color:#e3d1b2;
}

.price-card li::before{
  content:"✓";
  color:var(--gold-2);
  margin-right:10px;
}

.price-btn{
  margin-top:auto;
}

.process-timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.process-item{
  padding:28px;
}

.process-item span{
  display:block;
  font-family:'Cormorant Garamond',serif;
  font-size:48px;
  color:rgba(214,181,109,.48);
  margin-bottom:22px;
}

.testimonials{
  padding-top:20px;
}

.testimonial-card{
  padding:58px;
  text-align:center;
  background:
    radial-gradient(circle at center,rgba(214,181,109,.13),transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.018));
}

.quote{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(34px,5vw,64px);
  line-height:1.08;
  color:var(--cream);
}

.testimonial-card span{
  display:block;
  margin-top:24px;
  color:var(--gold-2);
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:12px;
}

.contact{
  width:min(1180px,calc(100% - 32px));
  margin:90px auto;
  min-height:520px;
  display:grid;
  place-items:center;
  text-align:center;
  border-radius:38px;
  border:1px solid rgba(214,181,109,.24);
  background:
    linear-gradient(180deg,rgba(0,0,0,.1),rgba(0,0,0,.58)),
    url('https://images.unsplash.com/photo-1520854221256-17451cc331bf?q=80&w=1600&auto=format&fit=crop') center/cover;
  overflow:hidden;
  padding:48px 24px;
}

.contact-inner{
  max-width:790px;
}

.contact p{
  color:#f0dfc2;
}

.contact-actions{
  justify-content:center;
}

.footer{
  width:min(1240px,100%);
  margin:auto;
  padding:46px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid rgba(214,181,109,.14);
}

.footer p{
  color:var(--muted);
  margin-top:8px;
}

.footer-links{
  display:flex;
  gap:20px;
}

.footer-links a{
  text-decoration:none;
  color:#e8d6b7;
}

.copyright{
  font-size:13px;
  text-align:right;
}

@keyframes fall{
  from{
    transform:translate3d(0,-30px,0);
    opacity:0;
  }
  12%{opacity:.9}
  to{
    transform:translate3d(var(--drift),105vh,0);
    opacity:0;
  }
}

@media(max-width:980px){
  .cursor-glow{
    display:none;
  }

  .nav-links{
    display:none;
  }

  .hero{
    grid-template-columns:1fr;
    padding-top:130px;
  }

  .hero-device{
    min-height:520px;
  }

  .template-grid,
  .feature-grid,
  .pricing-grid,
  .process-timeline,
  .showreel-card{
    grid-template-columns:1fr;
  }

  .price-card.featured{
    transform:none;
  }

  .showreel-card{
    padding:18px;
  }

  .footer{
    flex-direction:column;
    align-items:flex-start;
  }

  .copyright{
    text-align:left;
  }
}

@media(max-width:620px){
  .navbar{
    top:12px;
    width:calc(100% - 20px);
  }

  .nav-cta{
    padding:10px 14px;
    font-size:12px;
  }

  .logo{
    font-size:23px;
  }

  .hero h1{
    font-size:56px;
  }

  .hero-stats{
    display:grid;
    grid-template-columns:1fr;
  }

  .phone{
    width:270px;
    height:540px;
  }

  .floating-card{
    display:none;
  }

  .mini-list{
    grid-template-columns:1fr;
  }

  .section{
    padding:70px 18px;
  }

  .contact{
    margin:60px auto;
  }
}


.personal-site{
  padding-top:34px;
}

.personal-card{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:28px;
  align-items:center;
  border:1px solid rgba(214,181,109,.22);
  border-radius:36px;
  padding:34px;
  background:
    radial-gradient(circle at 15% 25%,rgba(214,181,109,.16),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.018));
  box-shadow:0 28px 90px rgba(0,0,0,.28);
}

.personal-copy h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(44px,6vw,78px);
  line-height:.95;
  font-weight:500;
  color:var(--cream);
}

.personal-copy p{
  margin-top:22px;
  color:#d8c8ad;
  line-height:1.9;
  font-size:17px;
}

.domain-examples{
  display:grid;
  gap:10px;
  margin-top:26px;
}

.domain-examples span{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  padding:12px 16px;
  border:1px solid rgba(214,181,109,.18);
  border-radius:999px;
  color:var(--gold-2);
  background:rgba(255,255,255,.035);
  font-size:14px;
}

.domain-card{
  min-height:360px;
  border-radius:30px;
  border:1px solid rgba(214,181,109,.24);
  background:
    linear-gradient(180deg,rgba(0,0,0,.1),rgba(0,0,0,.54)),
    radial-gradient(circle at top,rgba(214,181,109,.22),transparent 32%),
    linear-gradient(135deg,#100b07,#34200d);
  display:grid;
  align-content:center;
  padding:34px;
  text-align:center;
  box-shadow:inset 0 0 70px rgba(214,181,109,.07);
}

.domain-top{
  color:var(--muted);
  letter-spacing:4px;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:22px;
}

.domain-name{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(38px,5vw,70px);
  color:var(--gold-2);
  line-height:.95;
  word-break:break-word;
}

.domain-name span{
  color:var(--cream);
}

.domain-card p{
  margin:24px auto 0;
  color:#d8c8ad;
  line-height:1.7;
  max-width:390px;
}

.standout-feature{
  border-color:rgba(214,181,109,.38);
  background:
    radial-gradient(circle at top,rgba(214,181,109,.14),transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.018));
}

@media(max-width:980px){
  .personal-card{
    grid-template-columns:1fr;
    padding:24px;
  }

  .domain-examples span{
    width:100%;
    justify-content:center;
  }
}


/* FIXED VERSION — original layout preserved */

.logo-img{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  min-width:132px;
}

.logo-img img{
  display:block;
  height:38px;
  width:auto;
  object-fit:contain;
}

.navbar .logo-img img{
  max-width:160px;
}

.footer .logo-img img{
  height:46px;
  max-width:200px;
}

.brand-logo{
  width:auto;
  height:auto;
  border:none;
  box-shadow:none;
  border-radius:0;
}

.brand-logo img{
  display:block;
  width:min(260px,70vw);
  height:auto;
  margin:auto;
}

.site-music-btn{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:75;
  border:1px solid rgba(214,181,109,.28);
  background:rgba(5,5,5,.62);
  color:var(--gold-2);
  backdrop-filter:blur(16px);
  border-radius:999px;
  padding:13px 20px;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 18px 48px rgba(0,0,0,.28);
}

.screen-envelope::after{
  background:
    url("assets/modern-davet-logo-transparent.png") center/72% no-repeat,
    linear-gradient(135deg,#d6b56d,#8e5e21);
}

.preview-3-fixed{
  display:grid;
  align-content:center;
  justify-items:center;
  gap:18px;
  padding:26px;
}

.preview-3-fixed .envelope-mini{
  position:relative;
  top:auto;
  margin:0 auto;
}

.template-under{
  display:grid;
  justify-items:center;
  gap:8px;
  z-index:3;
}

.template-under .template-name{
  font-size:34px;
}

.template-under .template-date{
  position:static;
  bottom:auto;
  font-size:13px;
}

.domain-examples{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.domain-examples span{
  width:100%;
  justify-content:center;
  font-size:11px;
  padding:9px 8px;
  white-space:nowrap;
  letter-spacing:0;
}

.domain-name{
  font-size:clamp(30px,4vw,52px);
}

@media(max-width:980px){
  .domain-examples{
    grid-template-columns:1fr;
  }

  .domain-examples span{
    white-space:normal;
  }
}

@media(max-width:620px){
  .navbar .logo-img img{
    height:30px;
    max-width:125px;
  }

  .site-music-btn{
    right:14px;
    bottom:14px;
    padding:11px 15px;
  }
}
