

/*==================================================
 GOMU707 - Premium Gaming UI
 Part 1 : Reset + Header + Hero
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b1020;
    color:#fff;
    line-height:1.7;
    overflow-x:hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#0b1020;
}

::-webkit-scrollbar-thumb{
    background:#00d9ff;
    border-radius:20px;
}

/* Global */

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Background */

body{
    background:
    radial-gradient(circle at top left,#512da822,transparent 35%),
    radial-gradient(circle at bottom right,#00d9ff22,transparent 35%),
    #0b1020;
}

/* ==========================
HEADER
========================== */

.header{

position:sticky;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(11,16,32,.90);
backdrop-filter:blur(15px);
border-bottom:1px solid rgba(255,255,255,.08);

}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    display:flex;
    align-items:center;
}

.logo-img{
    width:250px !important;
    height:auto;
    max-width:none;
    display:block;
}

@media (max-width:768px){
    .logo img{
        height:50px;
    }
}

@media (max-width:480px){
    .logo img{
        height:45px;
    }
}

/* ==========================
NAVBAR
========================== */

.navbar{

display:flex;
align-items:center;
gap:35px;

}

.navbar ul{

display:flex;
gap:25px;

}

.navbar a{

color:#d8d8d8;
font-weight:500;
transition:.3s;

}

.navbar a:hover{

color:#00d9ff;

}

.active{

color:#00d9ff !important;

}

/* Button */

.btn-nav{

padding:12px 24px;
border-radius:50px;
background:linear-gradient(90deg,#00d9ff,#6d4aff);
color:white;
font-weight:600;

}

/* Menu */

.menu-toggle{

display:none;
background:none;
border:none;
color:white;
font-size:36px;
cursor:pointer;

}

/* ==========================
HERO
========================== */

.hero{

padding:70px 0;

}

.hero-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
align-items:center;
gap:50px;

}

.badge{

display:inline-block;
padding:8px 18px;
border-radius:30px;
background:#00d9ff20;
color:#00d9ff;
margin-bottom:20px;
font-size:14px;

}

.hero h1{

font-size:56px;
line-height:1.2;
margin-bottom:20px;

}

.hero p{

color:#bdbdbd;
margin-bottom:30px;
font-size:18px;

}

.hero-button{

display:flex;
gap:20px;
flex-wrap:wrap;

}

.btn-primary{

padding:15px 35px;
border-radius:50px;
background:linear-gradient(90deg,#00d9ff,#6d4aff);
color:white;
font-weight:600;
transition:.3s;

}

.btn-primary:hover{

transform:translateY(-5px);

}

.btn-secondary{

padding:15px 35px;
border-radius:50px;
border:1px solid #00d9ff;
color:#00d9ff;
transition:.3s;

}

.btn-secondary:hover{

background:#00d9ff;
color:#111;

}

.hero-image{

display:flex;
justify-content:center;

}

.hero-image img{

width:100%;
max-width:500px;

}

.hero-feature{

display:flex;
gap:35px;
margin-top:35px;

}

.hero-feature strong{

display:block;
font-size:22px;

}

.hero-feature span{

color:#bdbdbd;

}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;
text-align:center;

}

.hero-image{

order:-1;

}

.hero-button{

justify-content:center;

}

.hero-feature{

justify-content:center;
flex-wrap:wrap;

}

.navbar{

display:none;

}

.menu-toggle{

display:block;

}

.navbar.show{

display:flex;
position:absolute;
top:85px;
left:0;
right:0;
background:#111827;
padding:25px;
flex-direction:column;
gap:20px;

}

.navbar ul{

flex-direction:column;
text-align:center;

}

}

@media(max-width:768px){

.hero{

padding:50px 0;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.logo{

font-size:24px;

}

.hero-image img{

max-width:320px;

}

}

/*==================================================
 GOMU707 - Premium Gaming UI
 Part 2 : Section, Category & Article
==================================================*/

/* ==========================
SECTION
========================== */

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#00d9ff;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    max-width:720px;
    margin:auto;
    color:#bdbdbd;
}

/* ==========================
CATEGORY GRID
========================== */

.category-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;

}

.category-card{

background:#141b2d;
padding:35px 30px;
border-radius:20px;
border:1px solid rgba(255,255,255,.08);
transition:.35s;
position:relative;
overflow:hidden;

}

.category-card::before{

content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(
90deg,
transparent,
rgba(0,217,255,.15),
transparent);

transition:.5s;

}

.category-card:hover::before{

left:100%;

}

.category-card:hover{

transform:translateY(-8px);
border-color:#00d9ff;
box-shadow:0 15px 35px rgba(0,217,255,.15);

}

.category-card .icon{

font-size:55px;
margin-bottom:25px;

}

.category-card h3{

font-size:24px;
margin-bottom:15px;

}

.category-card p{

color:#bdbdbd;
font-size:15px;

}

/* ==========================
ARTICLE
========================== */

.article-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
gap:35px;

}

.article-card{

background:#141b2d;
border-radius:20px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
transition:.35s;

}

.article-card:hover{

transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,217,255,.15);

}

.article-card img{

width:100%;
height:240px;
object-fit:cover;

}

.article-content{

padding:28px;

}

.tag{

display:inline-block;
padding:7px 16px;
border-radius:30px;
background:#00d9ff22;
color:#00d9ff;
font-size:13px;
margin-bottom:18px;

}

.article-content h3{

font-size:24px;
margin-bottom:15px;

}

.article-content h3 a{

color:#fff;
transition:.3s;

}

.article-content h3 a:hover{

color:#00d9ff;

}

.article-content p{

color:#bdbdbd;
margin-bottom:20px;

}

.read-more{

display:inline-flex;
align-items:center;
gap:8px;
font-weight:600;
color:#00d9ff;
transition:.3s;

}

.read-more:hover{

transform:translateX(8px);

}

/* ==========================
SEARCH BOX
========================== */

.search-box{

display:flex;
align-items:center;
background:#1b2438;
border-radius:50px;
padding:5px;

}

.search-box input{

width:180px;
background:none;
border:none;
outline:none;
padding:10px 15px;
color:white;

}

.search-box input::placeholder{

color:#888;

}

.search-box button{

border:none;
background:none;
color:#00d9ff;
font-size:18px;
cursor:pointer;
padding:10px;

}

/* ==========================
CONTENT BOX
========================== */

.content-box{

background:#141b2d;
padding:35px;
border-radius:20px;
border:1px solid rgba(255,255,255,.08);

}

.content-box h2{

margin-bottom:20px;

}

.content-box p{

color:#bdbdbd;
margin-bottom:18px;

}

/* ==========================
PAGE HEADER
========================== */

.page-header{

padding:100px 0 70px;
text-align:center;

}

.page-header h1{

font-size:48px;
margin-bottom:20px;

}

.page-header p{

max-width:700px;
margin:auto;
color:#bdbdbd;

}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:768px){

.section{

padding:70px 0;

}

.section-title h2{

font-size:32px;

}

.article-grid{

grid-template-columns:1fr;

}

.category-grid{

grid-template-columns:1fr;

}

.page-header h1{

font-size:34px;

}

.search-box{

display:none;

}

} 

/*==================================================
 GOMU707 - Premium Gaming UI
 Part 3 : FAQ + Footer + Animation
==================================================*/

/* ==========================
   FAQ
========================== */

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#141b2d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    margin-bottom:20px;
    overflow:hidden;
    transition:.3s;
}

.faq-item:hover{
    border-color:#00d9ff;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    color:#fff;
    padding:22px 25px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    font-weight:600;
}

.faq-question span{
    font-size:24px;
    color:#00d9ff;
}

.faq-answer{
    display:none;
    padding:0 25px 25px;
    color:#bdbdbd;
}

.faq-item.active .faq-answer{
    display:block;
}

/* ==========================
   FOOTER
========================== */

.footer{
    background:#080c16;
    border-top:1px solid rgba(255,255,255,.08);
    padding:70px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:40px;
}

.footer h3{
    margin-bottom:20px;
    color:#fff;
}

.footer p,
.footer li{
    color:#9ca3af;
}

.footer ul li{
    margin-bottom:12px;
}

.footer a{
    color:#9ca3af;
    transition:.3s;
}

.footer a:hover{
    color:#00d9ff;
}

.social-links{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.social-links a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#141b2d;
    transition:.3s;
}

.social-links a:hover{
    background:#00d9ff;
    color:#111827;
}

.footer hr{
    margin:40px 0 20px;
    border:none;
    height:1px;
    background:rgba(255,255,255,.08);
}

.footer-bottom{
    text-align:center;
    color:#8b93a7;
    font-size:14px;
}

/* ==========================
   BACK TO TOP
========================== */

#backToTop{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    display:none;
    color:#fff;
    font-size:22px;
    background:linear-gradient(135deg,#00d9ff,#6d4aff);
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    transition:.3s;
    z-index:999;
}

#backToTop:hover{
    transform:translateY(-5px);
}

/* ==========================
   CARD ANIMATION
========================== */

.category-card,
.article-card,
.faq-item{
    transition:.35s ease;
}

.category-card:hover,
.article-card:hover{
    transform:translateY(-8px);
}

/* ==========================
   FADE ANIMATION
========================== */

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/* ==========================
   IMAGE EFFECT
========================== */

.article-card img{
    transition:.5s;
}

.article-card:hover img{
    transform:scale(1.05);
}

/* ==========================
   BUTTON EFFECT
========================== */

.btn-primary,
.btn-secondary,
.btn-nav{
    transition:.3s ease;
}

.btn-primary:hover,
.btn-nav:hover{
    box-shadow:0 10px 25px rgba(0,217,255,.35);
}

.btn-secondary:hover{
    box-shadow:0 10px 25px rgba(255,255,255,.15);
}

/* ==========================
   SELECTION
========================== */

::selection{
    background:#00d9ff;
    color:#111827;
}

/*==================================================
 GOMU707 - Premium Gaming UI
 Part 4 : Responsive + Utilities
==================================================*/

/* ============ Desktop Besar ============ */

@media (min-width:1400px){

.container{
    max-width:1320px;
}

.hero h1{
    font-size:64px;
}

.hero p{
    font-size:20px;
}

}

/* ============ Laptop ============ */

@media (max-width:1200px){

.container{
    width:95%;
}

.hero-grid{
    gap:40px;
}

.hero h1{
    font-size:48px;
}

}

/* ============ Tablet ============ */

@media (max-width:992px){

.header .container{
    height:75px;
}

.hero{
    padding:50px 0;
}

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:40px;
}

.hero-image{
    order:-1;
}

.hero-image img{
    max-width:380px;
    margin:auto;
}

.hero-feature{
    justify-content:center;
    flex-wrap:wrap;
}

.hero-button{
    justify-content:center;
    flex-wrap:wrap;
}

.navbar{
    display:none;
    width:100%;
}

.navbar.show{
    display:flex;
    position:absolute;
    top:75px;
    left:0;
    right:0;
    background:#131a29;
    flex-direction:column;
    padding:25px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar ul{
    flex-direction:column;
    gap:18px;
    text-align:center;
}

.nav-action{
    width:100%;
}

.search-box{
    width:100%;
}

.search-box input{
    width:100%;
}

.menu-toggle{
    display:block;
}

}

/* ============ Smartphone ============ */

@media (max-width:768px){

.section{
    padding:70px 0;
}

.page-header{
    padding:70px 0;
}

.page-header h1{
    font-size:34px;
}

.section-title h2{
    font-size:30px;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.article-grid,
.category-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.hero-feature{
    gap:20px;
}

.hero-feature strong{
    font-size:18px;
}

.hero-image img{
    max-width:280px;
}

.btn-primary,
.btn-secondary{
    width:100%;
}

.search-box{
    display:none;
}

}

/* ============ HP Kecil ============ */

@media (max-width:480px){

.logo{
    font-size:22px;
}

.logo img{
    width:38px;
    height:38px;
}

.hero{
    padding:40px 0;
}

.hero h1{
    font-size:28px;
}

.hero p{
    font-size:15px;
}

.badge{
    font-size:12px;
}

.section-title h2{
    font-size:26px;
}

.article-content{
    padding:20px;
}

.category-card{
    padding:25px;
}

.faq-question{
    font-size:16px;
    padding:18px;
}

.faq-answer{
    padding:0 18px 18px;
}

.footer{
    text-align:center;
}

.social-links{
    justify-content:center;
}

#backToTop{
    width:48px;
    height:48px;
    font-size:18px;
}

}

/* ============ Utility ============ */

.text-center{
    text-align:center;
}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}

.rounded{
    border-radius:20px;
}

.shadow{
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.hidden{
    display:none;
}

.show{
    display:block;
}

.w-100{
    width:100%;
}

/* Smooth Hover */

a,
button,
.category-card,
.article-card{
    transition:.3s ease;
}

/* Prevent image overflow */

img{
    height:auto;
    max-width:100%;
}

/* ===== CONTACT FORM ===== */

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input,
.form-group textarea{

width:100%;
padding:15px;
border:1px solid rgba(255,255,255,.08);
background:#1a2235;
border-radius:12px;
color:#fff;
font-size:16px;
outline:none;
transition:.3s;

}

.form-group input:focus,
.form-group textarea:focus{

border-color:#00d9ff;
box-shadow:0 0 15px rgba(0,217,255,.2);

}

textarea{

resize:vertical;

}

/* 404 PAGE */

.page-header{
    min-height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.page-header h1{
    font-size:120px;
    color:#00d9ff;
    line-height:1;
    margin-bottom:20px;
}

.page-header p{
    max-width:650px;
    margin:0 auto 35px;
    color:#bdbdbd;
}

@media(max-width:768px){

.page-header h1{
    font-size:80px;
}

}

/* End CSS */