:root{
    --ff-primary:#ff6a00;
    --ff-secondary:#ff2e00;
    --ff-gold:#ffd000;

    --bg-main:#0b0b0f;
    --bg-soft:#12121a;

    --card-bg:#14141c;
    --card-border:rgba(255,106,0,.35);

    --text-main:#ffffff;
    --text-soft:#c7c7d1;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* ================= BODY ================= */
body {
    margin: 0;
    background: radial-gradient(circle at top, #1a0f00 0%, #0b0b0f 45%, #050507 100%);
    color: var(--text-main);
    font-family: system-ui;
}

/* ===================header=========== */
header{
    background: linear-gradient(
      180deg,
      rgba(255,106,0,.18),
      rgba(0,0,0,.85)
    );
    border-bottom:1px solid rgba(255,106,0,.35);
    /* border-radius:20px; */
    /* padding:18px; */
    /* margin:25px 0; */
    box-shadow:0 15px 45px rgba(255,106,0,.25);
}

/* ================= BRAND TEXT SHINE ================= */
.ff-brand{
    font-weight: 800;
    color: #ffffff; /* fallback */
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 35%,
        #ffb703 45%,
        #ff6a00 50%,
        #ff2e00 55%,
        #ffffff 65%,
        #ffffff 100%
    );
    background-size: 200% auto;
    background-position: -200% center;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: ff-text-shine 10s ease-in-out infinite;
}

/* animation timing */
@keyframes ff-text-shine{
    0%{
        background-position: -200% center;
    }
    30%{
        background-position: 200% center;
    }
    100%{
        background-position: 200% center;
    }
}
.navbar-nav li a {
    color: white;

}
.navbar-nav li a:hover {
    color: var(--ff-primary);
    
}


/* ================= CONTAINER ================= */
.generator-container {
    max-width: 1300px;
    margin: auto;
    padding: 20px;
}

/* ================= TITLE ================= */
.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h1 {
    text-align: center;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg,var(--ff-primary),var(--ff-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.intro{
    color: white;
    font-size: 1.2rem;
    width: 80%;
    text-align: center;
    align-self: center;
}
/* ================= INPUT ================= */
input {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: 2px solid rgba(255,106,0,.35);
    font-size: 16px;
    margin: 20px 0;
    background:#0f0f16;
    color: var(--text-main);
}

input:focus{
    outline:none;
    border-color:var(--ff-primary);
    box-shadow:0 0 20px rgba(255,106,0,.45);
}

/* ================= GRID ================= */
.grids {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px;
}

/* ================= CARD ================= */
.scard {
    background:
      linear-gradient(180deg, rgba(255,106,0,.12), rgba(0,0,0,0)),
      var(--card-bg);
    color: var(--text-main);
    padding: 14px;
    border-radius: 16px;
    border:1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow:0 10px 35px rgba(255,106,0,.25);
    transition:.3s;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 45px rgba(255,106,0,.45);
}

/* ================= COPY BUTTON ================= */
.copy-btn {
    background: linear-gradient(135deg,var(--ff-primary),var(--ff-secondary));
    color: #fff;
    border: none;
    padding: 7px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight:600;
    transition:.25s;
}

.copy-btn:hover{
    box-shadow:0 0 18px rgba(255,106,0,.6);
}

/* 🔥 COPIED STATE – FREE FIRE THEME */
.copy-btn.copied {
    background: linear-gradient(
        135deg,
        #ffd000,
        #ff6a00,
        #ff2e00
    );
    color:white;
    box-shadow:
        0 0 12px rgba(255,208,0,.6),
        0 0 22px rgba(255,106,0,.7);
}

.copy-btn.copied::after{
    content:" ";
    font-weight:900;
}

/* ================= LOAD AREA ================= */
.load {
    text-align: center;
    margin: 35px 0;
}

/* ================= LOAD BUTTON ================= */
button.load-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 18px;
    font-size: 16px;
    background: linear-gradient(135deg,var(--ff-primary),var(--ff-secondary),#c40000);
    color: #fff;
    cursor: pointer;
    font-weight:700;
}

.load-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.load-btn.loading {
    pointer-events: none;
    background: linear-gradient(135deg,#2a2a35,#1a1a22);
    color: var(--ff-primary);
}

/* ================= SPINNER ================= */
.load-btn .spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255,255,255,.25);
    border-top: 3px solid var(--ff-primary);
    border-radius: 50%;
    animation: spin .9s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* ================= STYLE MODE ================= */
.stylemode>ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    list-style: none;
}

.stylemode>ul>li>a{
    color: var(--text-main);
    text-decoration: none;
    background: linear-gradient(135deg,var(--ff-primary),var(--ff-secondary));
    padding: 8px 16px;
    border-radius: 20px;
    font-weight:600;
    transition:.25s;
}

.stylemode>ul>li>a:hover{
    box-shadow:0 0 15px rgba(255,106,0,.6);
}





/* ================= CONTROL BAR ================= */
.control-bar {
    background: linear-gradient(
      180deg,
      rgba(255,106,0,.18),
      rgba(0,0,0,.85)
    );
    border:1px solid rgba(255,106,0,.35);
    border-radius:20px;
    padding:18px;
    margin:25px 0;
    box-shadow:0 15px 45px rgba(255,106,0,.25);
}

/* input */
.control-bar input{
    margin:0 0 14px 0;
    background:#0f0f16;
}

/* ================= STYLE MODE (NO SCROLL) ================= */
.stylemode ul{
    display:flex;
    gap:12px;
    flex-wrap:wrap;          /* 🔥 IMPORTANT */
    justify-content:center;
    padding:0;
    margin:0;
}

/* remove any scrollbar logic */
.stylemode ul::-webkit-scrollbar{
    display:none;
}

.stylemode ul li a{
    white-space:nowrap;
    padding:8px 18px;
    border-radius:20px;
    background:linear-gradient(135deg,#2a2a35,#1a1a22);
    color:#fff;
    font-size:14px;
    border:1px solid rgba(255,106,0,.3);
    transition:.25s;
}

/* hover */
.stylemode ul li a:hover{
    background:linear-gradient(135deg,var(--ff-primary),var(--ff-secondary));
    box-shadow:0 0 12px rgba(255,106,0,.6);
}

/* active */
.stylemode ul li a.active{
    background:linear-gradient(135deg,var(--ff-gold),var(--ff-primary));
    color:#000;
    font-weight:700;
}

/* ================= MOBILE ================= */
@media(max-width:600px){
    .control-bar{
        padding:14px;
    }
    .stylemode ul{
        gap:8px;
    }
    .stylemode ul li{
        margin: 5px 0;
    }
    .stylemode ul li a{
        font-size:13px;
        padding:7px 14px;
    }
    .intro{
    
    width: 100%;
    
}
}
@media(max-width:960px){


    .stylemode ul li{
        margin: 5px 0;
    }
    .intro{
    
    width: 100%;
    
}
}










/* ==========content =========== */

.content-section{
  margin: 60px 0;
  color: #e5e7eb;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  


}
.content-section-static{
    margin: 60px 0;
  color: #e5e7eb;

  gap: 20px;
}
.content-section-static  a{
    font-weight: bold;
  color: var(--ff-primary);
  text-decoration: none;
  


}
.content-section-static  a:hover{

  color: var(--ff-secondary);
  text-decoration: dashed;



}
.content, .category-section{
  background: linear-gradient(180deg,#0b0f1a,#070a12);
  border: 1px solid rgba(255,140,0,.25);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 0 25px rgba(255,140,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.category-section{
    color: #e5e7eb;
    
}
.category-section>h2,.category-section>p{
    text-align: center;
}

.content:hover{
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(255,140,0,.25);
}

.section-title{
  font-size: 1.7rem;
  margin-bottom: 14px;
  font-weight: 800;
  background: linear-gradient(90deg,#ff6a00,#ffd000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-list,
.category-list{
  padding-left: 20px;
  margin-top: 12px;
}

.feature-list li,
.category-list li{
  margin-bottom: 6px;
  font-weight: 500;
}
.category{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-block{
  background: linear-gradient(180deg,#0b0f1a,#070a12);
  border: 1px solid rgba(255,140,0,.25);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 0 25px rgba(255,140,0,.08);
  margin-bottom: 22px;
}

.category-block h3{
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 800;
  background: linear-gradient(90deg,#ff7a00,#ffd000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-block p{
  font-size: .95rem;
  color: #d1d5db;
  line-height: 1.6;
}

.explore-btn{
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg,#ff7a00,#ffb300);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.explore-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255,180,0,.45);
}


.name-section{
    margin-top: 5rem;
/* position: relative; */
}
.name-section>h2{
    text-align: center;
    

}
.faq-accordion .accordion-item {
  background: linear-gradient(180deg, #0b0f1a, #070a12);
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-weight: 600;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #ff7a00, #ffd000);
  color: #000;
}

.faq-accordion .accordion-button::after {
  filter: invert(1);
}

.faq-accordion .accordion-body {
  color: #d1d5db;
  line-height: 1.6;
  font-size: 0.95rem;
}

.section-title {
  background: linear-gradient(90deg, #ff7a00, #ffd000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}




.popular-names >.intro{
    text-align: center;
}

/* =====================footer =============== */

.ff-footer {
  background: linear-gradient(180deg, #0b0f1a, #070a12);
  border-top: 1px solid rgba(255, 140, 0, 0.25);
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff7a00, #ffd000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-text {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #ffd000;
  padding-left: 6px;
}

.footer-bottom {
  color: #9ca3af;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
