/* ========================================================================== */
/* 1. SHARED ANIMATIONS & CORE */
/* ========================================================================== */

@keyframes floatUp {
0% { transform: translateY(100vh) scale(0); opacity: 0; }
50% { opacity: 0.5; }
100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

@keyframes floating {
0%,100% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
}

/* ========================================================================== */
/* HERO SECTION */
/* ========================================================================== */

.modern-gaming-hero{
background-size:cover;
background-position:center;
padding:120px 0;
position:relative;
background-color:#000;
}

.modern-gaming-hero::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(to bottom,rgba(0,0,0,1) 0%,rgba(0,0,0,0.4) 20%,rgba(0,0,0,0.4) 80%,rgba(0,0,0,1) 100%);
z-index:1;
}

.hero-particles{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:2;
overflow:hidden;
pointer-events:none;
}

.particle{
position:absolute;
background:rgba(255,0,85,0.3);
border-radius:50%;
animation:floatUp 15s infinite linear;
}

.gh-hero-left .display-3{
text-shadow:0 4px 10px rgba(0,0,0,0.5);
}

.text-gradient{
background:linear-gradient(90deg,#ff0055,#ffcc00);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
filter:drop-shadow(0 0 15px rgba(255,0,85,0.5));
}

.gh-badge{
display:inline-block;
padding:6px 16px;
background:rgba(255,0,85,0.15);
border:1px solid #ff0055;
color:#ff0055;
font-size:11px;
font-weight:800;
letter-spacing:2px;
border-radius:50px;
box-shadow:0 0 10px rgba(255,0,85,0.2);
}

.gh-hero-list li{
margin-bottom:20px;
font-size:1.15rem;
font-weight:500;
display:flex;
align-items:center;
transition:0.3s;
}

.icon-box{
width:36px;
height:36px;
background:rgba(255,0,85,0.1);
border-radius:8px;
display:flex;
align-items:center;
justify-content:center;
margin-right:15px;
border:1px solid rgba(255,0,85,0.2);
}

.neon-icon{
color:#ff0055;
font-size:0.9rem;
filter:drop-shadow(0 0 5px #ff0055);
}

.floating-hero-img{
animation:floating 5s ease-in-out infinite;
filter:drop-shadow(0 0 40px rgba(0,0,0,0.8));
transition:transform 0.6s cubic-bezier(0.165,0.84,0.44,1),filter 0.6s;
cursor:pointer;
}

.floating-hero-img:hover{
transform:scale(1.05) translateY(-10px);
filter:drop-shadow(0 0 60px rgba(255,0,85,0.3));
}

.glass-card{
background:rgba(10,10,10,0.7)!important;
backdrop-filter:blur(15px);
-webkit-backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,0.1);
padding:15px 20px;
border-radius:12px;
position:absolute;
bottom:30px;
left:10px;
z-index:10;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

/* ========================================================================== */
/* SERVER GRID */
/* ========================================================================== */

.gh-server-modern{
background:#050505;
padding:100px 0;
}

.cyber-card{
background:#111;
border:1px solid rgba(255,255,255,0.05);
border-radius:12px;
overflow:hidden;
position:relative;
transition:all 0.4s cubic-bezier(0.165,0.84,0.44,1);
height:420px;
}

.cyber-card:hover{
transform:translateY(-10px);
border-color:#ff0055;
box-shadow:0 15px 35px rgba(255,0,85,0.25);
}

.card-image-wrap{
height:100%;
width:100%;
position:relative;
}

.card-image-wrap img{
height:100%;
width:100%;
object-fit:cover;
transition:0.5s ease;
filter:brightness(0.7);
}

.cyber-card:hover img{
transform:scale(1.1);
filter:brightness(0.3) blur(2px);
}

.card-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:25px 15px;
background:linear-gradient(to top,#000 0%,rgba(0,0,0,0.7) 60%,transparent 100%);
z-index:2;
transition:0.3s ease;
}

.game-title{
font-size:1.15rem;
font-weight:800;
color:#fff;
margin-bottom:4px;
text-shadow:0 2px 4px rgba(0,0,0,0.5);
}

.game-category{
font-size:10px;
color:#ff0055;
text-transform:uppercase;
letter-spacing:1px;
font-weight:700;
display:block;
margin-bottom:8px;
}

.card-actions{
max-height:0;
opacity:0;
overflow:hidden;
transition:all 0.4s ease;
}

.cyber-card:hover .card-actions{
max-height:100px;
opacity:1;
margin-top:15px;
}

.hot-ribbon{
position:absolute;
top:15px;
left:15px;
background:#ff0055;
color:#fff;
font-size:9px;
font-weight:900;
padding:3px 10px;
border-radius:4px;
z-index:3;
box-shadow:0 0 10px rgba(255,0,85,0.5);
}

/* ========================================================================== */
/* BUTTONS */
/* ========================================================================== */

.gh-btn-primary{
background:#ff0055;
color:#fff;
padding:14px 32px;
font-weight:700;
border-radius:6px;
text-decoration:none;
letter-spacing:1px;
transition:0.4s;
box-shadow:0 4px 15px rgba(255,0,85,0.3);
display:inline-block;
}

.gh-btn-primary:hover{
background:#ff1a6b;
box-shadow:0 0 25px rgba(255,0,85,0.6);
transform:translateY(-3px);
color:#fff;
}

.gh-btn-glass{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.2);
color:#fff;
padding:14px 32px;
font-weight:700;
border-radius:6px;
backdrop-filter:blur(5px);
transition:0.4s;
}

.gh-btn-glass:hover{
background:rgba(255,255,255,0.15);
border-color:#fff;
color:#fff;
}

/* ========================================================================== */
/* SEARCH */
/* ========================================================================== */

.gh-search-input{
background:#111;
border:1px solid rgba(255,255,255,0.05);
color:#ffffff;
font-size:1rem;
padding:16px 24px;
border-radius:12px;
outline:none;
box-shadow:inset 0 2px 5px rgba(0,0,0,0.5);
transition:all 0.4s cubic-bezier(0.165,0.84,0.44,1);
}

.gh-search-input::placeholder{
color:rgba(255,255,255,0.3);
letter-spacing:1px;
}

.gh-search-input:focus{
background:#151515;
border-color:#ff0055;
box-shadow:0 0 20px rgba(255,0,85,0.15),inset 0 2px 5px rgba(0,0,0,0.5);
}

/* ========================================================================== */
/* FILTERS */
/* ========================================================================== */

#category-filters{
display:flex;
flex-wrap:wrap;
gap:35px;
border-bottom:1px solid rgba(255,255,255,0.05);
padding-bottom:0;
margin-bottom:50px;
}

.gh-filter-btn{
background:transparent!important;
border:none!important;
color:rgba(255,255,255,0.5);
padding:0 0 20px 0;
margin:0;
border-radius:0;
font-size:0.85rem;
font-weight:700;
text-transform:uppercase;
letter-spacing:1.5px;
position:relative;
transition:color 0.3s ease;
}

.gh-filter-btn:hover,
.gh-filter-btn.active{color:#ffffff;}

.gh-filter-btn::after{
content:'';
position:absolute;
bottom:-2px;
left:0;
width:100%;
height:2px;
background:#ff0055;
box-shadow:0 0 10px rgba(255,0,85,0.8);
transform:scaleX(0);
transition:transform 0.3s ease;
transform-origin:left;
}

.gh-filter-btn.active::after,
.gh-filter-btn:hover::after{transform:scaleX(1);}

/* ========================================================================== */
/* BATCH LOADING */
/* ========================================================================== */

.game-batch-2,.game-batch-3{display:none!important;}

.show-batch-2 .game-batch-2,
.show-batch-3 .game-batch-3,
.search-active .game-batch-1,
.search-active .game-batch-2,
.search-active .game-batch-3{display:block!important;}

.search-active .d-none-search{display:none!important;}

.gh-server-modern .row.align-items-end{margin-bottom:60px!important;}

/* ========================================================================== */
/* FEATURES SECTION */
/* ========================================================================== */

.owrbit-features-section{
background:#050505;
padding-top:120px!important;
padding-bottom:120px!important;
position:relative;
}

.owrbit-features-section::after{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background-image:linear-gradient(rgba(255,0,85,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,0,85,0.03) 1px,transparent 1px);
background-size:50px 50px;
pointer-events:none;
z-index:1;
}

.owrbit-features-section .container{position:relative;z-index:5;}

.gh-section-title h2{text-transform:none!important;text-shadow:0 4px 10px rgba(0,0,0,0.5);color:#fff;}

.gh-heading-gradient{
background:linear-gradient(90deg,#ff0055,#ffcc00);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
filter:drop-shadow(0 0 10px rgba(255,0,85,0.3));
}

/* ========================================================================== */
/* COUNTER SECTION */
/* ========================================================================== */

.gh-counter-polished{padding:70px 0!important;}

.counter-item-inner{
padding:20px 15px!important;
min-width:170px!important;
margin-bottom:10px!important;
}

.counter-item-inner .iconify{font-size:35px!important;}

.counter-item-inner .gh-heading{
font-size:1.4rem!important;
margin-top:8px!important;
}

.mini-shield-hud{
background:rgba(237,35,94,0.05);
border:1px solid rgba(237,35,94,0.2);
padding:10px 20px;
border-radius:8px;
display:inline-flex;
align-items:center;
gap:10px;
}

/* ========================================================================== */
/* FAQ */
/* ========================================================================== */

.gh-faq-refined{
padding:100px 0;
background:#050505;
position:relative;
}

.faq-nav-boxes .nav-pills .nav-link{
background:rgba(255,255,255,0.02);
border:1px solid rgba(255,255,255,0.08);
color:#fff;
border-radius:10px;
padding:15px 25px;
font-weight:600;
display:flex;
align-items:center;
transition:0.3s ease;
margin-bottom:10px;
font-size:0.9rem;
text-transform:none;
}

.faq-nav-boxes .nav-pills .nav-link iconify-icon{
font-size:22px;
margin-right:12px;
color:rgba(255,255,255,0.5);
}

.faq-nav-boxes .nav-pills .nav-link.active{
background:#ed235e!important;
border-color:#ed235e;
box-shadow:0 10px 25px rgba(237,35,94,0.2);
}

.faq-main-card{
background:rgba(15,15,15,0.6);
border:1px solid rgba(255,255,255,0.05);
border-radius:20px;
padding:40px;
backdrop-filter:blur(15px);
margin-top:40px;
}

.refined-accordion .accordion-item{
background:transparent!important;
border:none;
border-bottom:1px solid rgba(255,255,255,0.06);
}

.refined-accordion .accordion-button{
background:transparent!important;
color:#fff!important;
padding:28px 0;
font-weight:700;
font-size:1.15rem;
box-shadow:none!important;
display:flex;
justify-content:space-between;
align-items:center;
border:none;
text-align:left;
}

.faq-num{color:#ed235e;margin-right:12px;font-family:monospace;}

.refined-accordion .accordion-body{
padding:0 0 30px 32px;
color:rgba(255,255,255,0.65);
line-height:1.8;
font-size:1rem;
}

.owrbit-text{color:#ed235e;font-weight:bold;}

/* ========================================================================== */
/* CTA */
/* ========================================================================== */

.gh-cta-polished{
padding:120px 0;
background:#050505;
position:relative;
}

.cta-glass-card{
background:rgba(255,255,255,0.02);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,0.08);
border-radius:24px;
padding:60px 40px;
position:relative;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,0.5);
}

.cta-glass-card::before{
content:'';
position:absolute;
top:-50px;
right:-50px;
width:150px;
height:150px;
background:radial-gradient(circle,rgba(237,35,94,0.2) 0%,transparent 70%);
filter:blur(20px);
}

.gh-cta-btns .gh-primary-btn{
background:#ed235e!important;
border:none;
color:#fff;
padding:15px 35px;
font-weight:700;
border-radius:8px;
text-transform:none;
transition:all 0.3s ease;
box-shadow:0 0 15px rgba(237,35,94,0.3);
}

.gh-cta-btns .gh-primary-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(237,35,94,0.5);
background:#ff2d6d!important;
}

.gh-cta-btns .gh-outline-btn{
background:transparent;
border:1px solid rgba(255,255,255,0.3);
color:#fff;
padding:15px 35px;
font-weight:700;
border-radius:8px;
transition:all 0.3s ease;
}

.gh-cta-btns .gh-outline-btn:hover{
background:#fff;
color:#000;
transform:translateY(-3px);
}

.owrbit-brand{
color:#ed235e;
font-weight:800;
letter-spacing:1px;
}
/* Fix feature section layout */

.gh-feature-section-updated {
    background: #050505;
    padding: 120px 0 !important;
}

/* fix feature list spacing */
.gh-feature-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.gh-feature-list li {
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all .3s ease;
}

/* prevent stretched text */
.gh-feature-list li span {
    flex-shrink: 0;
}

/* icon alignment */
.check-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}

/* center server visual properly */
.gh-node-visual {
    max-width: 520px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* fix node image */
.gh-node-visual img {
    display: block;
    width: 100%;
    height: auto;
}

/* status badge */
.node-status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
}

/* pulse dot */
.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    box-shadow: 0 0 8px #00ff88;
}

/* ddos stats spacing */
.ddos-shield-stats {
    margin-top: 15px;
}
/* FIX: Feature grid section */

.owrbit-features-section {
    background: #050505;
    padding: 120px 0 !important;
    position: relative;
}

/* prevent background grid breaking layout */
.owrbit-features-section::after {
    pointer-events: none;
    opacity: .4;
}

/* fix row spacing */
.owrbit-features-section .row {
    row-gap: 40px;
}

/* feature cards */
.gh-about-item {
    background: rgba(10, 10, 10, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    transition: .35s ease;
}

/* hover glow */
.gh-about-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 0, 85, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* icon container fix */
.icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid rgba(255, 0, 85, 0.25);
    border-radius: 10px;
    margin-bottom: 20px;
}

/* icon sizing */
.icon-wrapper .iconify {
    font-size: 30px;
    color: #ff0055;
}

/* headings */
.gh-about-item .gh-heading {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #fff;
}

/* paragraph text */
.gh-about-item .gh-text {
    font-size: .95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

/* fix responsive stacking */
@media (max-width:992px) {
    .gh-about-item {
        padding: 30px 25px;
    }
}