/* ==========================================
   GameCards Pro
   style.css (Part 1)
========================================== */

:root{

--bg:#070b16;
--bg2:#111827;
--card:rgba(255,255,255,.08);
--border:rgba(255,255,255,.12);

--text:#ffffff;
--muted:#b7bfd7;

--primary:#6c63ff;
--secondary:#3b82f6;

--glow1:#7c5cff;
--glow2:#3b82f6;

--radius:22px;

--shadow:
0 0 25px rgba(108,99,255,.35);

--transition:.3s ease;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;

background:linear-gradient(
180deg,
#070b16,
#0d1326,
#070b16);

color:var(--text);

overflow-x:hidden;

min-height:100vh;

}

/* Scrollbar */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#080b14;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(
180deg,
var(--primary),
var(--secondary));

border-radius:50px;

}

/* Loading */

#loadingScreen{

position:fixed;

inset:0;

background:#05070d;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

gap:20px;

z-index:99999;

transition:.4s;

}

.loader{

width:70px;

height:70px;

border-radius:50%;

border:6px solid rgba(255,255,255,.08);

border-top:6px solid var(--primary);

animation:spin 1s linear infinite;

}

@keyframes spin{

to{

transform:rotate(360deg);

}

}

/* Particles */

#particles{

position:fixed;

inset:0;

pointer-events:none;

overflow:hidden;

z-index:-1;

}

#particles::before,

#particles::after{

content:"";

position:absolute;

width:450px;

height:450px;

border-radius:50%;

filter:blur(120px);

opacity:.28;

animation:floatGlow 12s infinite alternate;

}

#particles::before{

background:#6c63ff;

top:-120px;

left:-80px;

}

#particles::after{

background:#3b82f6;

bottom:-140px;

right:-80px;

}

@keyframes floatGlow{

from{

transform:translateY(0) scale(1);

}

to{

transform:translateY(80px) scale(1.15);

}

}

/* Navbar */

header{

position:sticky;

top:0;

z-index:999;

backdrop-filter:blur(20px);

background:rgba(7,11,22,.55);

border-bottom:1px solid var(--border);

}

.navbar{

width:min(1250px,92%);

height:80px;

margin:auto;

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

font-size:30px;

font-weight:900;

text-decoration:none;

color:#fff;

}

.logo span{

color:var(--primary);

}

.navLinks{

display:flex;

gap:30px;

}

.navLinks a{

text-decoration:none;

color:var(--muted);

font-weight:600;

transition:var(--transition);

}

.navLinks a:hover{

color:#fff;

}

.navButtons{

display:flex;

gap:14px;

align-items:center;

}

#themeToggle{

width:48px;

height:48px;

border:none;

border-radius:50%;

background:var(--card);

color:#fff;

cursor:pointer;

backdrop-filter:blur(20px);

}

.primaryBtn{

display:inline-flex;

justify-content:center;

align-items:center;

padding:14px 28px;

border-radius:999px;

text-decoration:none;

font-weight:700;

color:#fff;

background:linear-gradient(135deg,var(--primary),var(--secondary));

box-shadow:var(--shadow);

transition:var(--transition);

}

.secondaryBtn{

display:inline-flex;

padding:14px 28px;

border-radius:999px;

text-decoration:none;

border:1px solid var(--border);

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

color:#fff;

transition:var(--transition);

}
/* ==========================================
   GameCards Pro
   style.css (Part 2)
========================================== */

/* Hero */

.hero{

width:min(1250px,92%);
margin:auto;

display:grid;
grid-template-columns:1fr 430px;

gap:70px;

align-items:center;

padding:80px 0;

}

.badge{

display:inline-flex;

padding:10px 18px;

border-radius:999px;

background:rgba(108,99,255,.12);

border:1px solid rgba(108,99,255,.35);

color:#d7d4ff;

font-size:.9rem;

font-weight:700;

}

.hero h1{

font-size:4.2rem;

line-height:1.08;

margin:22px 0;

font-weight:900;

}

.hero h1 span{

background:linear-gradient(
135deg,
var(--primary),
var(--secondary));

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero p{

max-width:620px;

color:var(--muted);

font-size:1.08rem;

line-height:1.8;

}

.heroButtons{

display:flex;

gap:18px;

margin-top:40px;

}

.heroStats{

display:flex;

gap:35px;

margin-top:55px;

}

.stat{

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

padding:18px 22px;

border-radius:18px;

border:1px solid var(--border);

min-width:120px;

}

.stat h2{

font-size:2rem;

margin-bottom:6px;

}

.stat span{

color:var(--muted);

font-size:.95rem;

}

/* Hero Card */

.heroCard{

position:relative;

padding:35px;

border-radius:28px;

background:var(--card);

border:1px solid var(--border);

backdrop-filter:blur(20px);

box-shadow:0 25px 60px rgba(0,0,0,.35);

overflow:hidden;

}

.heroGlow{

position:absolute;

width:260px;

height:260px;

border-radius:50%;

background:radial-gradient(circle,
var(--primary),
transparent);

right:-100px;

top:-100px;

filter:blur(60px);

opacity:.4;

}

.heroCard img{

width:140px;

height:140px;

border-radius:50%;

display:block;

margin:auto;

object-fit:cover;

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

}

.heroCard h2{

text-align:center;

margin-top:18px;

}

.heroCard p{

text-align:center;

color:var(--muted);

margin-top:8px;

}

.miniGrid{

margin-top:30px;

display:grid;

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

gap:15px;

}

.miniGrid div{

padding:18px;

border-radius:18px;

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

border:1px solid var(--border);

text-align:center;

}

.miniGrid span{

display:block;

color:var(--muted);

font-size:.9rem;

margin-bottom:6px;

}

.miniGrid strong{

font-size:1.1rem;

}

/* Ad Sections */

.adBanner{

width:min(1200px,92%);

margin:70px auto;

height:120px;

display:flex;

justify-content:center;

align-items:center;

border-radius:22px;

border:2px dashed rgba(255,255,255,.15);

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

color:var(--muted);

font-weight:700;

font-size:1.1rem;

}

/* Features */

.features{

width:min(1200px,92%);

margin:90px auto;

}

.sectionHeading{

text-align:center;

margin-bottom:50px;

}

.sectionHeading h2{

font-size:2.8rem;

margin-bottom:12px;

}

.sectionHeading p{

color:var(--muted);

max-width:700px;

margin:auto;

line-height:1.8;

}

.featureGrid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:24px;

}

.featureCard{

padding:30px;

border-radius:24px;

background:var(--card);

border:1px solid var(--border);

backdrop-filter:blur(18px);

transition:var(--transition);

}

.featureCard:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.featureCard .icon{

font-size:2rem;

margin-bottom:18px;

}

.featureCard h3{

margin-bottom:10px;

}

.featureCard p{

color:var(--muted);

line-height:1.7;

}
/* ==========================================
   GameCards Pro
   style.css (Part 3)
========================================== */

/* Generator */

.generator{

width:min(1250px,92%);

margin:100px auto;

}

.generatorContainer{

display:grid;

grid-template-columns:420px 1fr;

gap:35px;

align-items:flex-start;

}

.editorPanel{

position:sticky;

top:100px;

padding:30px;

border-radius:28px;

background:var(--card);

border:1px solid var(--border);

backdrop-filter:blur(20px);

box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.panelTitle h2{

font-size:2rem;

margin-bottom:8px;

}

.panelTitle p{

color:var(--muted);

margin-bottom:25px;

}

.panelHeading{

margin:30px 0 15px;

font-size:1.1rem;

}

.inputGrid{

display:grid;

gap:18px;

}

.field{

display:flex;

flex-direction:column;

gap:8px;

}

.field label{

font-size:.9rem;

font-weight:600;

color:var(--muted);

}

.field input,
.field textarea,
.field select{

width:100%;

padding:14px 16px;

border-radius:14px;

border:1px solid var(--border);

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

color:#fff;

font-family:inherit;

outline:none;

transition:.3s;

}

.field textarea{

resize:vertical;

min-height:90px;

}

.field input:focus,
.field textarea:focus,
.field select:focus{

border-color:var(--primary);

box-shadow:0 0 20px rgba(108,99,255,.3);

}

.field input[type=color]{

padding:5px;

height:55px;

cursor:pointer;

}

.field input[type=range]{

padding:0;

}

.actionButtons{

display:grid;

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

gap:15px;

margin-top:30px;

}

.actionButtons button{

padding:14px;

border:none;

border-radius:14px;

font-weight:700;

cursor:pointer;

color:#fff;

background:linear-gradient(135deg,var(--primary),var(--secondary));

transition:.3s;

}

.actionButtons button:hover{

transform:translateY(-4px);

}

.previewPanel{

display:flex;

flex-direction:column;

gap:25px;

}

.previewHeader{

display:flex;

justify-content:space-between;

align-items:center;

}

.previewActions{

display:flex;

gap:12px;

}

.previewActions button{

padding:12px 18px;

border-radius:12px;

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

border:1px solid var(--border);

color:#fff;

cursor:pointer;

transition:.3s;

}

.previewActions button:hover{

border-color:var(--primary);

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

}

/* Game Card */

.gameCard{

position:relative;

max-width:760px;

width:100%;

min-height:520px;

margin:auto;

padding:32px;

border-radius:30px;

background:linear-gradient(
135deg,
rgba(108,99,255,.15),
rgba(59,130,246,.10));

border:2px solid rgba(255,255,255,.12);

backdrop-filter:blur(22px);

overflow:hidden;

box-shadow:0 25px 60px rgba(0,0,0,.4);

}

.cardGlow{

position:absolute;

width:300px;

height:300px;

border-radius:50%;

background:radial-gradient(circle,var(--primary),transparent);

top:-130px;

right:-120px;

opacity:.35;

filter:blur(60px);

}

.cardTop{

display:flex;

align-items:center;

gap:25px;

margin-bottom:30px;

}

.avatarBox{

position:relative;

}

.avatarBox img{

width:130px;

height:130px;

border-radius:50%;

object-fit:cover;

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

}

.onlineDot{

position:absolute;

right:8px;

bottom:8px;

width:18px;

height:18px;

border-radius:50%;

background:#22c55e;

border:3px solid #0b1020;

}

.identity h2{

display:flex;

align-items:center;

gap:8px;

font-size:2rem;

}

.identity p{

margin-top:8px;

color:var(--muted);

line-height:1.7;

}

#verifiedBadge{

color:#38bdf8;

}
/* ==========================================
   GameCards Pro
   style.css (Part 4 - Final)
========================================== */

.infoGrid{

display:grid;

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

gap:16px;

margin-top:25px;

}

.info{

padding:18px;

border-radius:18px;

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

border:1px solid var(--border);

}

.info span{

display:block;

font-size:.82rem;

color:var(--muted);

margin-bottom:8px;

}

.info strong{

font-size:1.05rem;

}

.badgeArea{

margin-top:30px;

padding:22px;

border-radius:20px;

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

border:1px solid var(--border);

}

.badgeArea h4{

margin-bottom:12px;

}

#cardBadges{

font-size:2rem;

letter-spacing:8px;

}

/* CTA */

.ctaSection{

width:min(1200px,92%);

margin:100px auto;

padding:70px 40px;

text-align:center;

border-radius:30px;

background:linear-gradient(
135deg,
rgba(108,99,255,.15),
rgba(59,130,246,.10));

border:1px solid var(--border);

}

.ctaSection h2{

font-size:2.6rem;

margin-bottom:18px;

}

.ctaSection p{

max-width:700px;

margin:auto auto 35px;

color:var(--muted);

line-height:1.8;

}

/* FAQ */

.faq{

width:min(1000px,92%);

margin:90px auto;

}

.faq h2{

text-align:center;

margin-bottom:40px;

font-size:2.4rem;

}

.faqItem{

padding:22px;

margin-bottom:18px;

border-radius:18px;

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

border:1px solid var(--border);

}

.faqItem h3{

margin-bottom:10px;

}

.faqItem p{

color:var(--muted);

line-height:1.8;

}

/* Footer */

footer{

margin-top:80px;

padding:60px 0;

border-top:1px solid var(--border);

background:#05070d;

}

.footerContent{

width:min(1200px,92%);

margin:auto;

text-align:center;

}

.footerContent h2{

font-size:2rem;

margin-bottom:15px;

}

.footerContent p{

color:var(--muted);

}

.footerLinks{

display:flex;

justify-content:center;

gap:30px;

margin:30px 0;

}

.footerLinks a{

text-decoration:none;

color:#fff;

transition:.3s;

}

.footerLinks a:hover{

color:var(--primary);

}

.copyright{

font-size:.9rem;

color:var(--muted);

}

/* Responsive */

@media(max-width:1000px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.heroButtons,
.heroStats{

justify-content:center;

}

.hero p{

margin:auto;

}

.generatorContainer{

grid-template-columns:1fr;

}

.editorPanel{

position:relative;

top:0;

}

.cardTop{

flex-direction:column;

text-align:center;

}

.infoGrid{

grid-template-columns:1fr;

}

}

@media(max-width:700px){

.navLinks{

display:none;

}

.hero{

padding:60px 0;

}

.hero h1{

font-size:2.8rem;

}

.heroStats{

flex-direction:column;

align-items:center;

}

.actionButtons{

grid-template-columns:1fr;

}

.previewHeader{

flex-direction:column;

gap:16px;

}

.previewActions{

flex-wrap:wrap;

justify-content:center;

}

.gameCard{

padding:22px;

}

.avatarBox img{

width:100px;

height:100px;

}

.identity h2{

font-size:1.5rem;

}

.ctaSection{

padding:45px 22px;

}

.ctaSection h2{

font-size:2rem;

}

}
