/* ===========================
   COZY MEME COIN
   STYLE.CSS
===========================*/

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

html{
scroll-behavior:smooth;
}

body{

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

background:#05070c;

color:white;

overflow-x:hidden;

}

/* Background */

.stars{

position:fixed;

width:100%;

height:100%;

top:0;

left:0;

background:url("https://www.transparenttextures.com/patterns/stardust.png");

opacity:.35;

z-index:-3;

animation:starsMove 90s linear infinite;

}

@keyframes starsMove{

from{

transform:translateY(0);

}

to{

transform:translateY(-1000px);

}

}

/* Aurora */

.aurora{

position:fixed;

width:700px;

height:700px;

background:#00ff88;

filter:blur(220px);

opacity:.18;

top:-200px;

left:-150px;

animation:aurora 8s ease-in-out infinite alternate;

z-index:-2;

}

@keyframes aurora{

0%{

transform:translateX(0) translateY(0);

}

100%{

transform:translateX(350px) translateY(200px);

}

}

/* Loader */

.loader{

position:fixed;

background:#05070c;

width:100%;

height:100%;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

z-index:999;

}

.loader-logo{

width:140px;

animation:spin 8s linear infinite;

}

.loading-bar{

margin-top:20px;

width:250px;

height:8px;

background:#222;

border-radius:20px;

overflow:hidden;

}

.progress{

width:0%;

height:100%;

background:#00ff88;

animation:loading 3s forwards;

}

@keyframes loading{

to{

width:100%;

}

}

@keyframes spin{

from{

transform:rotate(0);

}

to{

transform:rotate(360deg);

}

}

/* Navbar */

header{

position:fixed;

width:100%;

top:0;

left:0;

padding:18px 7%;

backdrop-filter:blur(18px);

background:rgba(10,10,10,.45);

z-index:100;

}

nav{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

display:flex;

align-items:center;

gap:12px;

font-weight:700;

font-size:24px;

}

.logo img{

width:48px;

}

nav ul{

display:flex;

list-style:none;

gap:35px;

}

nav a{

text-decoration:none;

color:white;

transition:.3s;

}

nav a:hover{

color:#00ff88;

}

.buy-btn{

padding:12px 26px;

border-radius:40px;

background:#00ff88;

color:black;

font-weight:700;

box-shadow:0 0 25px #00ff88;

}

/* Hero */

.hero{

padding:180px 8% 100px;

display:flex;

justify-content:space-between;

align-items:center;

gap:60px;

}

.hero-left{

max-width:650px;

}

.hero h1{

font-size:72px;

line-height:1.1;

}

.hero h1 span{

color:#00ff88;

}

.hero p{

margin-top:25px;

font-size:22px;

color:#cfcfcf;

}

.buttons{

margin-top:40px;

display:flex;

gap:20px;

}

.primary{

background:#00ff88;

padding:18px 36px;

border-radius:50px;

text-decoration:none;

color:black;

font-weight:700;

box-shadow:0 0 35px #00ff88;

transition:.35s;

}

.primary:hover{

transform:translateY(-5px);

}

.secondary{

border:2px solid white;

padding:18px 36px;

border-radius:50px;

text-decoration:none;

color:white;

transition:.35s;

}

.secondary:hover{

background:white;

color:black;

}

.coin{

width:420px;

animation:float 5s ease-in-out infinite;

filter:drop-shadow(0 0 40px gold);

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-25px);

}

100%{

transform:translateY(0);

}

}

/* Sections */

section{

padding:100px 8%;

}

section h2{

font-size:42px;

margin-bottom:30px;

}

.glass{

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

backdrop-filter:blur(20px);

padding:45px;

border-radius:25px;

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

}

.glass p{

font-size:20px;

line-height:1.8;

color:#ddd;

}

/* Contract */

.contract{

display:flex;

gap:15px;

margin-top:30px;

}

.contract input{

flex:1;

padding:18px;

background:#111;

border:none;

border-radius:14px;

color:white;

font-size:17px;

}

.contract button{

padding:18px 30px;

background:#00ff88;

border:none;

border-radius:14px;

cursor:pointer;

font-weight:700;

}

/* Roadmap */

.roadmap{

display:grid;

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

gap:25px;

}

.card{

padding:40px;

background:#111;

border-radius:20px;

font-size:22px;

transition:.35s;

text-align:center;

}

.card:hover{

transform:translateY(-10px);

box-shadow:0 0 25px #00ff88;

}

/* Footer */

footer{

padding:80px;

text-align:center;

}

footer img{

width:120px;

margin-bottom:20px;

}

footer p{

margin-top:15px;

color:#aaa;

}

/* Responsive */

@media(max-width:900px){

.hero{

flex-direction:column;

text-align:center;

}

.hero h1{

font-size:48px;

}

.hero p{

font-size:18px;

}

.coin{

width:280px;

}

nav ul{

display:none;

}

.contract{

flex-direction:column;

}

.buttons{

justify-content:center;

}

}
/* Shooting Star */

.shooting-star{

position:fixed;

width:3px;

height:120px;

background:linear-gradient(white,transparent);

transform:rotate(45deg);

animation:shoot 2.2s linear;

pointer-events:none;

z-index:-1;

}

@keyframes shoot{

0%{

transform:translate(0,0) rotate(45deg);

opacity:1;

}

100%{

transform:translate(-700px,700px) rotate(45deg);

opacity:0;

}

}
.stats-grid{

display:grid;

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

gap:25px;

margin-top:40px;

}

.stat-card{

padding:35px;

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

backdrop-filter:blur(18px);

border-radius:20px;

text-align:center;

transition:.35s;

}

.stat-card:hover{

transform:translateY(-10px);

box-shadow:0 0 25px #00ff88;

}

.stat-card h3{

margin-bottom:15px;

font-size:20px;

color:#00ff88;

}

.stat-card span{

font-size:24px;

font-weight:bold;

}

.community-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

margin-top:30px;

}

.community-buttons a{

padding:18px 35px;

background:#00ff88;

color:black;

font-weight:bold;

border-radius:50px;

text-decoration:none;

transition:.3s;

}

.community-buttons a:hover{

transform:scale(1.05);

}
