/* ==========================================
   METEORPAY PREMIUM CSS
   Part 1
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{

--primary:#2b0a59;
--secondary:#4c1d95;
--dark:#17032f;
--light:#ffffff;
--text:#e5e7eb;
--accent:#a855f7;
--accent2:#7c3aed;
--border:rgba(255,255,255,.08);
--shadow:0 20px 50px rgba(0,0,0,.35);
--radius:18px;

}

html{
scroll-behavior:smooth;
}

body{

font-family:"Segoe UI",sans-serif;

background:linear-gradient(180deg,#14042a 0%,#20053f 45%,#2c0758 100%);

color:var(--text);

line-height:1.8;

overflow-x:hidden;

}


/* Scrollbar */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#1a0936;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(180deg,#7c3aed,#a855f7);

border-radius:20px;

}


/* Container */

.container{

width:92%;

max-width:1250px;

margin:auto;

}


/* =====================
HEADER
===================== */

header{

position:sticky;

top:0;

left:0;

width:100%;

z-index:999;

background:rgba(18,5,36,.90);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(255,255,255,.08);

box-shadow:0 15px 35px rgba(0,0,0,.30);

transition:.35s;

}

header .container{

display:flex;

justify-content:space-between;

align-items:center;

padding:15px 0;

}


/* Logo */

.logo-area{

display:flex;

align-items:center;

gap:15px;

}

.logo-area img{

width:58px;

height:58px;

border-radius:18px;

background:#fff;

padding:4px;

box-shadow:

0 0 18px rgba(168,85,247,.45),

0 10px 30px rgba(0,0,0,.35);

transition:.4s;

}

.logo-area img:hover{

transform:rotate(-5deg) scale(1.08);

}

.logo-area h1{

font-size:24px;

font-weight:700;

color:#fff;

letter-spacing:.5px;

}


/* Menu Button */

.menu-btn{

font-size:34px;

color:#fff;

cursor:pointer;

transition:.35s;

}

.menu-btn:hover{

color:#c084fc;

transform:scale(1.1);

}


/* =====================
MOBILE MENU
===================== */

#mobileMenu{

position:fixed;

top:0;

right:-340px;

width:320px;

height:100vh;

background:linear-gradient(180deg,#1b0636,#2f065d);

padding:30px;

display:flex;

flex-direction:column;

transition:.45s ease;

box-shadow:-10px 0 35px rgba(0,0,0,.45);

z-index:10000;

}

#mobileMenu.active{

right:0;

}

.close-btn{

text-align:right;

font-size:32px;

cursor:pointer;

color:#fff;

margin-bottom:25px;

transition:.3s;

}

.close-btn:hover{

color:#c084fc;

}

#mobileMenu a{

text-decoration:none;

color:#fff;

font-size:17px;

padding:15px 0;

border-bottom:1px solid rgba(255,255,255,.08);

transition:.35s;

font-weight:500;

}

#mobileMenu a:hover{

padding-left:15px;

color:#c084fc;

}


/* =====================
HERO SECTION
===================== */

.hero{

padding:70px 20px;

text-align:center;

}

.hero img{

width:100%;

max-width:1050px;

border-radius:30px;

box-shadow:

0 25px 60px rgba(0,0,0,.45),

0 0 35px rgba(168,85,247,.35);

transition:.4s;

}

.hero img:hover{

transform:translateY(-8px);

}

.hero h2{

font-size:42px;

margin-top:40px;

color:#fff;

font-weight:800;

}

.hero p{

max-width:850px;

margin:20px auto;

font-size:18px;

color:#d8d8d8;

}


/* Hero Buttons */

.hero-buttons{

display:flex;

justify-content:center;

align-items:center;

gap:20px;

margin-top:35px;

flex-wrap:wrap;

}

.btn{

display:inline-block;

padding:16px 38px;

border-radius:14px;

background:linear-gradient(135deg,#7c3aed,#a855f7);

color:#fff;

text-decoration:none;

font-size:17px;

font-weight:700;

box-shadow:

0 15px 35px rgba(124,58,237,.45);

transition:.35s;

}

.btn:hover{

transform:translateY(-6px);

box-shadow:

0 20px 45px rgba(168,85,247,.55);

background:linear-gradient(135deg,#8b5cf6,#c084fc);

}
/* ==========================================
   METEORPAY PREMIUM CSS
   Part 2
==========================================*/


/* =====================
REFER CODE BOX
===================== */

.refer-box{

margin:60px auto;

max-width:650px;

background:rgba(255,255,255,.06);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

padding:35px;

text-align:center;

box-shadow:

0 25px 60px rgba(0,0,0,.35),

0 0 25px rgba(168,85,247,.18);

transition:.4s;

}

.refer-box:hover{

transform:translateY(-8px);

box-shadow:

0 30px 70px rgba(0,0,0,.45),

0 0 35px rgba(168,85,247,.35);

}

.refer-box h2{

font-size:30px;

margin-bottom:25px;

color:#fff;

font-weight:700;

}

.copy-box{

display:flex;

justify-content:center;

align-items:center;

gap:18px;

flex-wrap:wrap;

}

#referCode{

padding:16px 35px;

background:#fff;

border-radius:14px;

font-size:30px;

font-weight:800;

letter-spacing:2px;

color:#6d28d9;

box-shadow:0 8px 25px rgba(0,0,0,.25);

}

.copy-box button{

padding:16px 35px;

border:none;

border-radius:14px;

cursor:pointer;

background:linear-gradient(135deg,#7c3aed,#a855f7);

color:#fff;

font-size:17px;

font-weight:700;

transition:.35s;

box-shadow:0 15px 35px rgba(124,58,237,.45);

}

.copy-box button:hover{

transform:translateY(-4px);

background:linear-gradient(135deg,#8b5cf6,#c084fc);

}



/* =====================
CONTENT BOX
===================== */

.content{

width:92%;

max-width:1150px;

margin:70px auto;

padding:50px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

border-radius:28px;

box-shadow:

0 25px 60px rgba(0,0,0,.35);

}

.content h1{

font-size:42px;

margin-bottom:30px;

color:#fff;

font-weight:800;

text-align:center;

}

.content h2{

margin-top:45px;

margin-bottom:18px;

font-size:30px;

color:#c084fc;

font-weight:700;

}

.content h3{

margin-top:30px;

margin-bottom:12px;

font-size:24px;

color:#ffffff;

}

.content p{

font-size:17px;

line-height:1.9;

margin-bottom:20px;

color:#d8d8d8;

}

.content strong{

color:#fff;

}

.content a{

color:#c084fc;

text-decoration:none;

}

.content a:hover{

text-decoration:underline;

}



/* =====================
LIST DESIGN
===================== */

.content ul{

padding-left:25px;

margin-top:15px;

margin-bottom:25px;

}

.content li{

margin-bottom:15px;

color:#e4e4e4;

}

.content li::marker{

color:#a855f7;

}



/* =====================
TABLE DESIGN
===================== */

table{

width:100%;

border-collapse:collapse;

margin:35px 0;

background:rgba(255,255,255,.04);

border-radius:15px;

overflow:hidden;

}

table th{

background:#6d28d9;

padding:18px;

color:#fff;

font-size:17px;

}

table td{

padding:16px;

border-bottom:1px solid rgba(255,255,255,.08);

color:#ddd;

}

table tr:hover{

background:rgba(255,255,255,.05);

}



/* =====================
INFO BOX
===================== */

.info-box{

margin:35px 0;

padding:25px;

background:rgba(124,58,237,.12);

border-left:5px solid #a855f7;

border-radius:15px;

}

.info-box h3{

margin-bottom:10px;

color:#fff;

}

.info-box p{

margin:0;

}



/* =====================
CARDS
===================== */

.card-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:25px;

margin-top:35px;

}

.card{

background:rgba(255,255,255,.05);

padding:30px;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

box-shadow:0 15px 40px rgba(0,0,0,.25);

}

.card:hover{

transform:translateY(-8px);

border-color:#a855f7;

box-shadow:

0 25px 60px rgba(0,0,0,.35),

0 0 30px rgba(168,85,247,.25);

}

.card h3{

color:#fff;

margin-bottom:15px;

font-size:22px;

}

.card p{

margin:0;

}



/* =====================
SECTION DIVIDER
===================== */

.section-divider{

width:120px;

height:5px;

margin:35px auto;

border-radius:50px;

background:linear-gradient(90deg,#7c3aed,#c084fc);

}
/* ==========================================
   METEORPAY PREMIUM CSS
   Part 3 (Final)
==========================================*/


/* ===========================
FOOTER
=========================== */

footer{

margin-top:80px;

background:linear-gradient(180deg,#17032f,#0d021d);

border-top:1px solid rgba(255,255,255,.08);

}

.footer-container{

width:92%;

max-width:1250px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

padding:60px 0;

}

.footer-box h3{

color:#ffffff;

font-size:22px;

margin-bottom:20px;

position:relative;

}

.footer-box h3::after{

content:"";

display:block;

width:70px;

height:3px;

margin-top:8px;

border-radius:20px;

background:linear-gradient(90deg,#7c3aed,#c084fc);

}

.footer-box a{

display:block;

color:#d1d5db;

text-decoration:none;

margin-bottom:14px;

transition:.35s;

font-size:16px;

}

.footer-box a:hover{

color:#c084fc;

padding-left:10px;

}

.footer-box p{

color:#d1d5db;

font-size:16px;

line-height:1.8;

}

.copyright{

padding:22px;

text-align:center;

color:#bbb;

border-top:1px solid rgba(255,255,255,.08);

font-size:15px;

}



/* ===========================
TELEGRAM BUTTON
=========================== */

.telegram-btn{

display:inline-block;

padding:16px 38px;

border-radius:14px;

background:linear-gradient(135deg,#229ED9,#0088cc);

color:#fff;

font-weight:700;

text-decoration:none;

transition:.35s;

box-shadow:0 15px 35px rgba(0,136,204,.35);

}

.telegram-btn:hover{

transform:translateY(-5px);

box-shadow:0 20px 40px rgba(0,136,204,.45);

}



/* ===========================
ANIMATION
=========================== */

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.hero,
.content,
.refer-box,
.card{

animation:fadeUp .8s ease;

}



/* Floating */

@keyframes floating{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}

}

.logo-area img{

animation:floating 4s ease-in-out infinite;

}



/* Glow */

@keyframes glow{

0%{

box-shadow:0 0 15px rgba(168,85,247,.25);

}

50%{

box-shadow:0 0 35px rgba(168,85,247,.55);

}

100%{

box-shadow:0 0 15px rgba(168,85,247,.25);

}

}

.btn{

animation:glow 3s infinite;

}



/* Selection */

::selection{

background:#a855f7;

color:#fff;

}



/* ===========================
RESPONSIVE
=========================== */

@media(max-width:991px){

.logo-area h1{

font-size:20px;

}

.hero{

padding:50px 20px;

}

.hero h2{

font-size:34px;

}

.content{

padding:35px;

}

.content h1{

font-size:34px;

}

.content h2{

font-size:27px;

}

#referCode{

font-size:24px;

}

}



@media(max-width:768px){

.menu-btn{

font-size:30px;

}

.logo-area img{

width:50px;

height:50px;

}

.logo-area h1{

font-size:18px;

}

.hero h2{

font-size:28px;

}

.hero p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

}

.btn{

width:100%;

max-width:320px;

text-align:center;

}

.content{

padding:25px;

margin:40px auto;

}

.content h1{

font-size:30px;

}

.content h2{

font-size:24px;

}

.content p{

font-size:16px;

}

.refer-box{

padding:25px;

}

.copy-box{

flex-direction:column;

}

#referCode{

width:100%;

font-size:22px;

text-align:center;

}

.copy-box button{

width:100%;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-box h3::after{

margin:auto;

margin-top:10px;

}

}



@media(max-width:480px){

.container{

width:95%;

}

.logo-area img{

width:45px;

height:45px;

}

.logo-area h1{

font-size:16px;

}

.hero{

padding:40px 15px;

}

.hero h2{

font-size:24px;

}

.hero p{

font-size:15px;

}

.content{

padding:20px;

}

.content h1{

font-size:26px;

}

.content h2{

font-size:22px;

}

.content p{

font-size:15px;

}

.footer-box h3{

font-size:20px;

}

.copyright{

font-size:13px;

padding:18px;

}

}



/* ===========================
END
=========================== */