@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Anton&display=swap');

/* ============== ROOT & GLOBAL ============== */
:root {
    --primary-red: #ef4444;
    --dark-bg: #0a0a0a;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
}

/* ============== SCROLL PROGRESS ============== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, #ef4444, #f87171);
    z-index: 9999;
    transition: width 0.1s;
}

/* ============== NAVBAR ============== */
header{

    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;

    background:rgba(10,10,10,.82);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.06);

}

.navbar{

    max-width:1400px;

    height:95px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 50px;

}

.logo img{

    width:65px;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:55px;

}

.navbar a{

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.navbar a:hover{

    color:#ee1c1c;

}

.active{

    color:#ff4747!important;

}

.active::after{

    content:"";

    display:block;

    width:100%;

    height:2px;

    margin-top:8px;

    background:#ff4747;

}

.buttons{

    display:flex;

    gap:15px;

}

.discord{

    padding:14px 28px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:999px;

}

.tebex{

    padding:14px 35px;

    background:#ff0000;

    border-radius:999px;

}

.discord:hover{

    background:#ffffff10;

}

.tebex:hover{

    transform:translateY(-3px);

    box-shadow:0 0 35px #ff474770;

}

/* Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.discord-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9999px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .discord-btn { display: flex; }
}

.discord-btn:hover {
    border-color: #ff0000;
    color: #ef4444;
}

.tebex-btn {
    padding: 12px 28px;
    background: #ef4444;
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s;
}

.tebex-btn:hover {
    background: #f87171;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
}

/* ============== HERO ============== */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    margin-left: 3rem;
}

.hero-badge {
    display: inline-block;
    color: #ff0000;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.hero-cta-btn {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    background: #ef4444;
    border-radius: 9999px;
    transition: all 0.4s;
}

.hero-cta-btn:hover {
    background: #ff0000;
    transform: scale(1.05);
}

/* ============== ANIMATIONS ============== */
.hero-glow {
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px #ef4444; }
    to { text-shadow: 0 0 40px #ef4444; }
}

/* ============== VIDEO BACKGROUND ============== */
.hero-section {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
              /* Low opacity - you can adjust this */
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(10, 10, 10, 0.85)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin-left: 3rem;
}



/* Rest of your previous styles remain the same */


/* ================= FOOTER ================= */


.footer{


    position:relative;

    padding:70px 8% 30px;


    background:#080808;


    overflow:hidden;


}



.footer-content{


    position:relative;

    z-index:2;


    display:grid;

    grid-template-columns:
    2fr 1fr 1fr;


    gap:50px;

}



.footer-logo img{

    width:80px;

}



.footer-logo h2{

    font-size:35px;

    letter-spacing:5px;


    color:#ff0033;
   
}



.footer p,
.footer a{

    color:#aaa;

}



.footer a{

    display:block;

    margin:12px 0;

    text-decoration:none;

    transition:.3s;

}


.footer a:hover{

    color:white;

    transform:translateX(10px);

}





.footer-bottom{


    margin-top:50px;

    padding-top:20px;


    border-top:
    1px solid #222;


    display:flex;

    justify-content:space-between;

}





/* ================= MOBILE ================= */


@media(max-width:900px){


.navbar{

    padding:0 20px;

}


.navbar ul{

    display:none;

}



.gallery{

    padding:120px 20px;

}



.title h2{

    font-size:40px;

}



.hex{

    width:220px;

    height:250px;

}



.photos{

    grid-template-columns:1fr;

}



.footer-content{

    grid-template-columns:1fr;

}



.footer-bottom{

    flex-direction:column;

    gap:15px;

}


}

/* ================================
   PREMIUM FOOTER EFFECTS
================================ */


/* RED MOVING GLOW */

.footer::after{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    background:#ff0033;

    filter:blur(160px);

    opacity:.25;


    bottom:-350px;

    left:50%;

    transform:translateX(-50%);


    animation:
    footerPulse 5s infinite alternate;


}



@keyframes footerPulse{


from{

    transform:
    translateX(-50%)
    scale(.8);

    opacity:.15;

}


to{

    transform:
    translateX(-50%)
    scale(1.2);

    opacity:.35;

}


}





/* FLOATING PARTICLES */


.footer::before{


    content:"";


    position:absolute;

    inset:0;


    background-image:


    radial-gradient(
    white 1px,
    transparent 1px
    );


    background-size:
    45px 45px;


    opacity:.08;


    animation:
    particlesMove 15s linear infinite;


    pointer-events:none;

}




@keyframes particlesMove{


from{

    background-position:
    0 0;

}


to{

    background-position:
    300px 500px;

}


}





/* FOOTER LIGHT LINE */


.footer-glow{


    position:absolute;

    top:0;

    left:-100%;


    width:200%;

    height:2px;


    background:

    linear-gradient(
    90deg,
    transparent,
    #ff0033,
    transparent
    );


    animation:
    footerLine 4s infinite;


}



@keyframes footerLine{


0%{

    transform:
    translateX(-50%);

}


100%{

    transform:
    translateX(50%);

}


}





/* LOGO FLOAT */


.footer-logo img{


    animation:

    logoFloat 3s ease-in-out infinite;


}



@keyframes logoFloat{


0%,100%{

    transform:
    translateY(0);

}


50%{

    transform:
    translateY(-12px);

}


}





/* FOOTER TITLE SHINE */


.footer-logo h2{


background:

linear-gradient(
90deg,
white,
#ff0033,
white
);
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: bold;

background-size:
200%;


-webkit-background-clip:text;

-webkit-text-fill-color:transparent;


animation:

footerText 4s linear infinite;


}



@keyframes footerText{


from{

background-position:
0%;

}


to{

background-position:
200%;

}


}





/* SOCIAL ICON GLOW */


.footer-social i{


transition:.3s;


}



.footer-social a:hover i{


color:#ff0033;


filter:

drop-shadow(
0 0 15px #ff0033
);


transform:
scale(1.3);


}




/* FOOTER CONTENT FLOAT */


.footer-content > div{


animation:

footerReveal 1s ease forwards;


}



.footer-content > div:nth-child(2){

animation-delay:.2s;

}



.footer-content > div:nth-child(3){

animation-delay:.4s;

}



@keyframes footerReveal{


from{

opacity:0;

transform:
translateY(40px);

}


to{

opacity:1;

transform:
translateY(0);

}


}

/* =================================
   COZY CITY HOMEPAGE EFFECTS
================================= */


/* HERO */

.hero-section{

position:relative;

overflow:hidden;

}



.hero-video{

filter:

brightness(.35)
contrast(1.2);


transform:

scale(1.15);


animation:

videoZoom 15s infinite alternate;


}



@keyframes videoZoom{

from{

transform:scale(1.15);

}

to{

transform:scale(1.3);

}

}




/* HERO TEXT */

.hero-content{

animation:

heroEnter 1.5s ease;


}



@keyframes heroEnter{


from{

opacity:0;

transform:

translateY(80px);

}


to{

opacity:1;

transform:

translateY(0);

}


}











/* BUTTON */


.hero-cta-btn{


background:

linear-gradient(
90deg,
#ff0033,
#700000
);


border:none;


padding:

18px 40px;


border-radius:50px;


font-weight:bold;


transition:.4s;


}



.hero-cta-btn:hover{


transform:

translateY(-8px)
scale(1.05);


box-shadow:

0 0 40px red;


}







/* SERVER STATUS */


.server-status{


display:flex;

justify-content:center;

gap:30px;

padding:60px;


background:#050505;


}



.status-box{


background:

rgba(255,255,255,.05);


border:

1px solid rgba(255,0,0,.3);


padding:30px;


border-radius:20px;


min-width:250px;


backdrop-filter:blur(10px);


transition:.5s;


}



.status-box:hover{


transform:

translateY(-15px);


box-shadow:

0 15px 25px rgba(255, 0, 0, 0.319);


}



.online-dot{

margin-left: 170px;
width:15px;

height:15px;


background:#07ef03;


border-radius:50%;


box-shadow:

0 0 20px #0dff00;


animation:

pulse 1.5s infinite;


}



@keyframes pulse{


50%{

transform:scale(1.5);

}

}





/* FEATURES */


.features{


display:grid;


grid-template-columns:

repeat(3,1fr);


gap:30px;


padding:100px 8%;


}





.feature-card{


position:relative;


padding:40px;


background:

linear-gradient(
145deg,
#111,
#050505
);



border-radius:25px;


border:

1px solid #222;


overflow:hidden;


transition:.5s;


}





.feature-card i{


font-size:50px;


color:#ff0033;


margin-bottom:20px;


}





.feature-card:hover{


transform:

translateY(-20px)
rotateX(8deg);


box-shadow:

0 10px 40px rgba(255,0,0,.3);


}





.feature-card::before{


content:"";


position:absolute;

inset:0;


background:

linear-gradient(
120deg,
transparent,
rgba(255,0,0,.3),
transparent
);


transform:

translateX(-100%);


transition:.8s;


}



.feature-card:hover::before{


transform:

translateX(100%);


}







/* STATS */


.stats{


display:grid;


grid-template-columns:

repeat(4,1fr);


padding:80px;


background:#000;


text-align:center;


}



.stats h2{


font-size:60px;


color:#ff0033;


}





.stats p{


color:#aaa;


}





/* RESPONSIVE */


@media(max-width:900px){


.server-status,
.stats,
.features{


grid-template-columns:1fr;

display:grid;


}



.hero-title{

font-size:60px;

}



}


.devs {

    color: rgb(212, 0, 255);
    text-shadow:1px 1px 15px rgb(184, 66, 239);
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}


.Lenon {
  color: rgb(249, 2, 2);
  font-weight: bold;
  text-shadow:1px 1px 15px rgb(229, 83, 83);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}






.powered-by {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between text and logo */
    margin: 0;
}


.eqxlogo {
    width: 20px; /* Adjust as needed */
    height: auto;
}