/*=========================================
WINPAY WEBSITE
Premium Blue Theme
=========================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

:root{

--primary:#1E3A8A;
--secondary:#28A9F8;
--dark:#0F172A;
--light:#F8FAFC;
--white:#ffffff;
--text:#222;
--gray:#666;
--border:#e5e7eb;

}

body{

font-family:Arial,Helvetica,sans-serif;
background:var(--light);
color:var(--text);
line-height:1.8;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

/*=========================================
HEADER
=========================================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
background:rgba(255,255,255,.96);
backdrop-filter:blur(12px);
box-shadow:0 8px 25px rgba(0,0,0,.08);
z-index:9999;

}

.header{

height:80px;
display:flex;
align-items:center;
justify-content:space-between;

}

/*=========================================
LOGO
=========================================*/

.logo{

display:flex;
align-items:center;
gap:15px;
color:var(--primary);

}

.logo img{

width:60px;
height:60px;
object-fit:contain;

}

.logo h2{

font-size:24px;
font-weight:700;

}

.logo span{

display:block;
font-size:13px;
color:#555;

}

/*=========================================
MENU
=========================================*/

nav{

display:flex;
align-items:center;
gap:25px;

}

nav a{

color:var(--dark);
font-size:16px;
font-weight:600;
transition:.3s;

}

nav a:hover{

color:var(--secondary);

}

.menu-btn{

display:none;
font-size:32px;
cursor:pointer;
color:var(--primary);

}

.close-btn{

display:none;

}

/*=========================================
HERO
=========================================*/

.hero{

padding-top:140px;
padding-bottom:80px;
text-align:center;
background:linear-gradient(180deg,#eef7ff,#ffffff);

}

.hero-image{

width:100%;
max-width:900px;
margin:auto;
border-radius:25px;
box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.hero h1{

margin-top:35px;
font-size:48px;
color:var(--primary);
font-weight:700;

}

.hero p{

margin-top:20px;
font-size:19px;
color:#555;
max-width:850px;
margin-left:auto;
margin-right:auto;

}

/*=========================================
BUTTONS
=========================================*/

.hero-buttons{

margin-top:35px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;

}

.btn{

padding:16px 38px;
border-radius:50px;
font-size:17px;
font-weight:bold;
transition:.35s;

}

.register-btn{

background:var(--primary);
color:#fff;

}

.download-btn{

background:var(--secondary);
color:#fff;

}

.btn:hover{

transform:translateY(-5px);
box-shadow:0 18px 35px rgba(0,0,0,.15);

}

/*=========================================
REFER SECTION
=========================================*/

.refer-section{

padding:70px 0;
text-align:center;

}

.refer-section h2{

font-size:34px;
margin-bottom:30px;
color:var(--primary);

}

.refer-box{

display:inline-flex;
align-items:center;
gap:20px;
padding:20px 35px;
background:#fff;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

}

#referCode{

font-size:28px;
font-weight:bold;
letter-spacing:3px;
color:var(--primary);

}

.refer-box button{

padding:12px 25px;
background:var(--secondary);
border:none;
border-radius:10px;
color:#fff;
cursor:pointer;
font-size:16px;
font-weight:bold;
transition:.3s;

}

.refer-box button:hover{

background:var(--primary);

}

.telegram-btn{

display:inline-block;
margin-top:30px;
padding:15px 40px;
background:#229ED9;
color:#fff;
font-weight:bold;
border-radius:50px;
transition:.3s;

}

.telegram-btn:hover{

transform:translateY(-4px);

}

/*=========================================
CONTENT
=========================================*/

.content{

padding:80px 0;

}

.content h2{

font-size:34px;
color:var(--primary);
margin-bottom:20px;
margin-top:55px;

}

.content p{

font-size:18px;
color:#444;
text-align:justify;

}

.more-content{

margin-top:60px;
padding:35px;
background:#fff;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/*=========================================
FOOTER
=========================================*/

footer{

background:linear-gradient(135deg,#102A72,#2196F3);
color:#fff;
padding:70px 0;
margin-top:80px;

}

footer h2{

font-size:34px;
margin-bottom:15px;

}

footer p{

color:#f5f5f5;

}

.footer-links{

margin:35px 0;
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:18px;

}

.footer-links a{

color:#fff;
font-weight:600;

}

.social{

display:flex;
justify-content:center;
gap:25px;
margin-bottom:30px;

}

.social a{

color:#fff;
font-weight:bold;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.menu-btn{

display:block;

}

nav{

position:fixed;
top:0;
right:-100%;
width:300px;
height:100vh;
background:#102A72;
flex-direction:column;
align-items:flex-start;
padding:90px 30px;
gap:28px;
transition:.35s;

}

nav.active{

right:0;

}

nav a{

color:#fff;
font-size:18px;

}

.close-btn{

display:block;
position:absolute;
top:25px;
right:25px;
font-size:32px;
color:#fff;
cursor:pointer;

}

.hero h1{

font-size:35px;

}

.hero p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

}

.btn{

width:100%;

}

.refer-box{

flex-direction:column;

}

.content h2{

font-size:28px;

}

.footer-links{

flex-direction:column;

}

.social{

flex-direction:column;

}

}