/* ===================================
   UONOPAY PROFESSIONAL CSS
   PART 1
=================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Segoe UI',sans-serif;
background:#f4f6f8;
color:#222;
line-height:1.8;
overflow-x:hidden;
}

/* Container */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* Header */

header{
position:sticky;
top:0;
z-index:999;
padding:15px 0;
background:linear-gradient(
135deg,
#081a15,
#173d32
);
border-bottom:2px solid #d4af37;
box-shadow:0 5px 20px rgba(0,0,0,.25);
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

/* Logo */

.logo-area{
display:flex;
align-items:center;
gap:12px;
}

.logo-area img{
width:55px;
height:55px;
border-radius:50%;
border:2px solid #d4af37;
background:#fff;
padding:2px;
}

.logo-area h1{
font-size:24px;
font-weight:700;
color:#f7d774;
letter-spacing:1px;
text-shadow:
0 0 5px rgba(212,175,55,.5),
0 0 15px rgba(212,175,55,.3);
}
/* ===================================
   MOBILE MENU
=================================== */

.menu-btn{
font-size:32px;
color:#f7d774;
cursor:pointer;
transition:.3s;
}

.menu-btn:hover{
transform:scale(1.1);
}

#mobileMenu{
position:fixed;
top:0;
right:-320px;
width:300px;
height:100%;
background:#0f2d24;
padding:30px 25px;
transition:.4s;
z-index:1000;
overflow-y:auto;
box-shadow:-5px 0 25px rgba(0,0,0,.4);
border-left:2px solid #d4af37;
}

.close-btn{
font-size:30px;
color:#f7d774;
text-align:right;
cursor:pointer;
margin-bottom:25px;
}

#mobileMenu a{
display:block;
text-decoration:none;
color:#ffffff;
padding:14px 0;
font-size:16px;
font-weight:600;
border-bottom:1px solid rgba(255,255,255,.08);
transition:.3s;
}

#mobileMenu a:hover{
color:#f7d774;
padding-left:10px;
}

/* Desktop Menu Support */

nav{
display:flex;
gap:20px;
}

nav a{
text-decoration:none;
color:#ffffff;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#f7d774;
}

/* Mobile */

@media(max-width:768px){

nav{
display:block;
}

}
/* ===================================
   HERO SECTION
=================================== */

.hero{
padding:80px 20px;
text-align:center;
background:
linear-gradient(
rgba(8,26,21,.95),
rgba(15,45,36,.95)
);
position:relative;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:
radial-gradient(
circle at center,
rgba(212,175,55,.12),
transparent 70%
);
pointer-events:none;
}

/* Hero Content */

.hero-content{
max-width:1000px;
margin:auto;
position:relative;
z-index:2;
}

/* Hero Image */

.hero-image{
width:100%;
max-width:350px;
border-radius:25px;
border:3px solid #d4af37;
box-shadow:
0 0 20px rgba(212,175,55,.35),
0 0 40px rgba(212,175,55,.25);
margin-bottom:30px;
transition:.4s;
}

.hero-image:hover{
transform:scale(1.03);
}

/* Heading */

.hero h2{
font-size:42px;
font-weight:800;
color:#f7d774;
margin-bottom:20px;
line-height:1.3;
text-shadow:
0 0 8px rgba(212,175,55,.4),
0 0 20px rgba(212,175,55,.25);
}

/* Paragraph */

.hero p{
max-width:850px;
margin:auto;
font-size:18px;
color:#d8d8d8;
margin-bottom:30px;
}

/* Hero Buttons */

.hero-buttons{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
flex-wrap:wrap;
margin-top:25px;
}

/* Premium Button */

.btn{
display:inline-block;
padding:15px 35px;
text-decoration:none;
font-weight:700;
font-size:16px;
border-radius:10px;
transition:.3s;
background:
linear-gradient(
135deg,
#d4af37,
#f7d774
);
color:#0f2d24;
box-shadow:
0 5px 15px rgba(212,175,55,.30);
}

.btn:hover{
transform:translateY(-3px);
box-shadow:
0 8px 25px rgba(212,175,55,.50);
}

/* Secondary Button */

.btn-secondary{
background:transparent;
border:2px solid #d4af37;
color:#f7d774;
}

.btn-secondary:hover{
background:#d4af37;
color:#0f2d24;
}

/* Mobile */

@media(max-width:768px){

.hero{
padding:60px 15px;
}

.hero h2{
font-size:28px;
}

.hero p{
font-size:16px;
}

.hero-image{
max-width:280px;
}

.btn{
width:100%;
max-width:320px;
}

}
/* ===================================
   REFERRAL SECTION
=================================== */

.refer-section{
padding:60px 20px;
background:#f8fafb;
}

.refer-box{
max-width:750px;
margin:auto;
background:#ffffff;
padding:35px;
border-radius:20px;
text-align:center;
border-top:5px solid #d4af37;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.refer-box h2{
font-size:30px;
margin-bottom:15px;
color:#173d32;
font-weight:700;
}

.refer-text{
color:#666;
margin-top:15px;
font-size:15px;
}

/* Copy Box */

.copy-box{
display:flex;
justify-content:center;
align-items:center;
gap:12px;
flex-wrap:wrap;
margin-top:20px;
}

.copy-box span{
background:#f8f4e7;
color:#173d32;
padding:14px 25px;
font-size:24px;
font-weight:700;
border-radius:10px;
border:2px solid #d4af37;
letter-spacing:1px;
}

.copy-box button{
padding:14px 25px;
border:none;
cursor:pointer;
border-radius:10px;
font-weight:700;
font-size:15px;
background:linear-gradient(
135deg,
#173d32,
#0f2d24
);
color:#f7d774;
transition:.3s;
}

.copy-box button:hover{
transform:translateY(-2px);
}

/* ===================================
   INFO CARDS
=================================== */

.quick-info{
max-width:1200px;
margin:auto;
padding:70px 20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.info-card{
background:#ffffff;
padding:30px;
border-radius:20px;
text-align:center;
transition:.3s;
border-top:4px solid #d4af37;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.info-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.info-card h3{
font-size:22px;
margin-bottom:12px;
color:#173d32;
}

.info-card p{
color:#555;
font-size:15px;
}

/* ===================================
   REGISTER DOWNLOAD BOX
=================================== */

.register-download{
max-width:1200px;
margin:auto;
padding:30px 20px 70px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
}

.action-box{
background:#ffffff;
padding:35px;
text-align:center;
border-radius:20px;
border-top:5px solid #d4af37;
box-shadow:0 8px 20px rgba(0,0,0,.08);
transition:.3s;
}

.action-box:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.action-box h2{
font-size:28px;
color:#173d32;
margin-bottom:15px;
}

.action-box p{
color:#666;
margin-bottom:20px;
}

/* Action Button */

.action-btn{
display:inline-block;
padding:15px 35px;
border-radius:10px;
text-decoration:none;
font-weight:700;
background:linear-gradient(
135deg,
#d4af37,
#f7d774
);
color:#0f2d24;
transition:.3s;
box-shadow:0 5px 15px rgba(212,175,55,.30);
}

.action-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(212,175,55,.50);
}

/* Mobile */

@media(max-width:768px){

.refer-box{
padding:25px;
}

.refer-box h2{
font-size:24px;
}

.copy-box span{
font-size:20px;
width:100%;
}

.copy-box button{
width:100%;
}

.action-box h2{
font-size:24px;
}

}
/* ===================================
   CONTENT SECTION
=================================== */

.content{
max-width:1200px;
margin:0 auto 60px;
padding:50px 30px;
background:#ffffff;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.content h2{
font-size:32px;
color:#173d32;
margin:35px 0 15px;
padding-left:15px;
border-left:5px solid #d4af37;
line-height:1.4;
}

.content h3{
font-size:24px;
color:#b8860b;
margin:25px 0 12px;
}

.content p{
font-size:16px;
color:#444;
margin-bottom:18px;
text-align:justify;
}

/* ===================================
   LIST DESIGN
=================================== */

.content ul{
margin:20px 0;
padding-left:25px;
}

.content li{
margin-bottom:10px;
color:#444;
font-size:16px;
}

.content ol{
margin:20px 0;
padding-left:25px;
}

.content ol li{
margin-bottom:12px;
}

/* ===================================
   FAQ SECTION
=================================== */

.faq-box{
background:#f9fafb;
padding:25px;
margin-bottom:20px;
border-radius:15px;
border-left:4px solid #d4af37;
transition:.3s;
}

.faq-box:hover{
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.faq-box h3{
margin-bottom:10px;
color:#173d32;
font-size:20px;
}

.faq-box p{
margin-bottom:0;
}

/* ===================================
   TABLE DESIGN
=================================== */

.content table{
width:100%;
border-collapse:collapse;
margin:25px 0;
overflow:hidden;
border-radius:10px;
}

.content table th{
background:#173d32;
color:#f7d774;
padding:15px;
text-align:left;
font-size:16px;
}

.content table td{
padding:15px;
border:1px solid #e5e5e5;
font-size:15px;
}

.content table tr:nth-child(even){
background:#f8f8f8;
}

/* ===================================
   HIGHLIGHT BOX
=================================== */

.highlight-box{
background:#f8f4e7;
border-left:5px solid #d4af37;
padding:20px;
margin:25px 0;
border-radius:10px;
}

.highlight-box strong{
color:#173d32;
}

/* ===================================
   QUOTE BOX
=================================== */

.quote-box{
background:#173d32;
color:#ffffff;
padding:25px;
margin:30px 0;
border-radius:15px;
font-style:italic;
position:relative;
}

.quote-box::before{
content:"❝";
font-size:50px;
color:#d4af37;
position:absolute;
top:10px;
left:15px;
}

/* ===================================
   SEO HEADING SECTION
=================================== */

.seo-heading{
text-align:center;
padding:60px 20px 30px;
}

.seo-heading h2{
font-size:36px;
color:#173d32;
margin-bottom:15px;
}

.seo-heading p{
max-width:850px;
margin:auto;
font-size:18px;
color:#555;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:768px){

.content{
padding:30px 20px;
}

.content h2{
font-size:24px;
}

.content h3{
font-size:20px;
}

.seo-heading h2{
font-size:28px;
}

.content table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

}
/* ===================================
   FOOTER
=================================== */

footer{
background:linear-gradient(
135deg,
#081a15,
#173d32
);
color:#ffffff;
padding-top:60px;
margin-top:50px;
border-top:3px solid #d4af37;
}

.footer-container{
max-width:1200px;
margin:auto;
padding:0 20px 40px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:35px;
}

.footer-box h3{
color:#f7d774;
font-size:22px;
margin-bottom:18px;
position:relative;
}

.footer-box h3::after{
content:"";
display:block;
width:50px;
height:3px;
background:#d4af37;
margin-top:8px;
border-radius:10px;
}

.footer-box p{
color:#d9d9d9;
font-size:15px;
line-height:1.8;
}

.footer-box a{
display:block;
color:#eaeaea;
text-decoration:none;
margin-bottom:10px;
transition:.3s;
font-size:15px;
}

.footer-box a:hover{
color:#f7d774;
padding-left:6px;
}

/* ===================================
   FOOTER BOTTOM
=================================== */

.footer-bottom{
border-top:1px solid rgba(255,255,255,.12);
text-align:center;
padding:20px;
margin-top:20px;
}

.footer-bottom p{
font-size:14px;
color:#d8d8d8;
}

/* ===================================
   TELEGRAM FLOAT BUTTON
=================================== */

.telegram-float{
position:fixed;
bottom:25px;
left:25px;
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
text-decoration:none;
font-size:28px;
background:#229ED9;
color:#fff;
z-index:9999;
box-shadow:0 8px 25px rgba(0,0,0,.25);
transition:.3s;
}

.telegram-float:hover{
transform:scale(1.1);
}

/* ===================================
   SCROLL TOP BUTTON STYLE
=================================== */

#scrollTopBtn{
background:#d4af37 !important;
color:#081a15 !important;
font-weight:bold;
border:2px solid #f7d774 !important;
}

#scrollTopBtn:hover{
transform:translateY(-3px);
}

/* ===================================
   PREMIUM GOLD GLOW
=================================== */

.logo-area h1,
.hero h2{
text-shadow:
0 0 5px rgba(212,175,55,.5),
0 0 15px rgba(212,175,55,.3),
0 0 25px rgba(212,175,55,.2);
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.footer-box h3::after{
margin:8px auto 0;
}

.telegram-float{
width:55px;
height:55px;
font-size:24px;
left:15px;
bottom:15px;
}

}