/*=========================================
METEORPAY WEBSITE
Premium Purple Theme
=========================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

:root{

--primary:#5B21B6;
--secondary:#7C3AED;
--dark:#18082F;
--light:#F8F6FF;
--white:#ffffff;
--text:#222;
--gray:#666;

--shadow:0 15px 40px rgba(0,0,0,.15);

--radius:18px;

}

body{

font-family:Arial,sans-serif;
background:var(--light);
color:var(--text);
line-height:1.7;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

/*=========================================
HEADER
=========================================*/

header{

position:sticky;
top:0;
left:0;
width:100%;
z-index:9999;

background:linear-gradient(90deg,#2E1065,#5B21B6,#7C3AED);

box-shadow:0 5px 25px rgba(0,0,0,.25);

}

.header-flex{

display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;

}

.logo{

display:flex;
align-items:center;
gap:12px;

font-size:28px;
font-weight:700;

color:#fff;

}

.logo img{

width:58px;
height:58px;
border-radius:15px;

box-shadow:0 10px 20px rgba(255,255,255,.15);

}

nav ul{

display:flex;
gap:28px;
list-style:none;

}

nav ul li a{

color:#fff;

font-weight:600;

transition:.3s;

}

nav ul li a:hover{

color:#FFD54F;

}

.menu-btn,
.close-btn{

display:none;
align-items:center;
justify-content:center;

width:45px;
height:45px;

font-size:30px;

cursor:pointer;

color:#fff;

border-radius:8px;

transition:.3s;

}

.menu-btn:hover,
.close-btn:hover{

background:rgba(255,255,255,.15);

}

/*=========================================
HERO
=========================================*/

.hero{

padding:70px 0;

text-align:center;

background:linear-gradient(180deg,#F6F2FF,#FFFFFF);

}

.hero img{

width:100%;

max-width:950px;

margin:auto;

border-radius:25px;

box-shadow:var(--shadow);

transition:.4s;

}

.hero img:hover{

transform:scale(1.02);

}

.hero h1{

margin-top:40px;

font-size:45px;

color:var(--primary);

}

.hero p{

margin:20px auto;

max-width:900px;

font-size:19px;

color:#555;

}

/*=========================================
BUTTONS
=========================================*/

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

margin-top:35px;

}

.btn{

padding:16px 38px;

background:linear-gradient(90deg,#5B21B6,#7C3AED);

color:#fff;

font-weight:bold;

border-radius:50px;

transition:.4s;

box-shadow:0 15px 30px rgba(91,33,182,.25);

}

.btn:hover{

transform:translateY(-4px);

}

.secondary{

background:linear-gradient(90deg,#7C3AED,#9333EA);

}

/*=========================================
REFER CODE
=========================================*/

.refer-box{

padding:70px 0;

text-align:center;

}

.refer-box h2{

font-size:34px;

color:var(--primary);

margin-bottom:30px;

}

.copy-box{

display:flex;

justify-content:center;

align-items:center;

gap:15px;

flex-wrap:wrap;

}

.copy-box input{

width:250px;

padding:16px;

font-size:22px;

text-align:center;

border:none;

border-radius:12px;

background:#fff;

box-shadow:var(--shadow);

}

.copy-box button{

padding:16px 35px;

border:none;

background:var(--primary);

color:#fff;

font-size:17px;

border-radius:12px;

cursor:pointer;

transition:.3s;

}

.copy-box button:hover{

background:#3B0764;

}

/*=========================================
TELEGRAM
=========================================*/

.telegram{

padding-bottom:70px;

text-align:center;

}

.telegram-btn{

display:inline-block;

padding:18px 45px;

background:#229ED9;

color:#fff;

font-size:20px;

font-weight:bold;

border-radius:50px;

transition:.3s;

}

.telegram-btn:hover{

transform:scale(1.05);

}

/*=========================================
CONTENT
=========================================*/

.intro,
.seo{

padding:70px 0;

}

.intro h2,
.seo h2{

font-size:35px;

color:var(--primary);

margin-bottom:18px;

}

.intro p,
.seo p{

font-size:18px;

margin-bottom:30px;

}

/*=========================================
FOOTER
=========================================*/

footer{

margin-top:80px;

background:#18082F;

color:#fff;

padding:60px 0;

text-align:center;

}

.footer-logo{

display:flex;

align-items:center;

justify-content:center;

gap:15px;

margin-bottom:30px;

}

.footer-logo img{

width:60px;

border-radius:15px;

}

.footer-links{

display:flex;

justify-content:center;

gap:25px;

flex-wrap:wrap;

margin-bottom:25px;

}

.footer-links a{

color:#fff;

transition:.3s;

}

.footer-links a:hover{

color:#FFD54F;

}

.social{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

margin-bottom:25px;

}

.social a{

background:#5B21B6;

padding:12px 24px;

border-radius:30px;

color:#fff;

transition:.3s;

}

.social a:hover{

background:#7C3AED;

}

footer p{

opacity:.85;

}

/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:#5B21B6;

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#EEE;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

nav{

position:fixed;

top:0;

right:-100%;

width:280px;

height:100vh;

background:#2E1065;

padding-top:80px;

transition:.4s;

}

nav ul{

flex-direction:column;

align-items:center;

gap:30px;

}

.menu-btn{

display:flex;

}

.close-btn{

display:none;

position:absolute;

top:18px;

right:18px;

z-index:10001;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:17px;

}

}

@media(max-width:768px){

.hero{

padding:50px 0;

}

.hero img{

height:260px;

object-fit:cover;

border-radius:18px;

}

.btn{

width:100%;

max-width:320px;

}

.copy-box input{

width:100%;

}

}