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

body {
    font-family: 'Inter', sans-serif;
    background: #070b14;
    color: white;
    scroll-behavior: smooth;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.nav-box {
    display: flex;
    gap: 40px;
    padding: 16px 40px;
    background: rgba(10,15,25,0.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,195,255,0.25);
    border-radius: 14px;
}

.nav-box a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-box a span {
    margin-right: 8px;
}

.nav-box a:hover {
    color: #00c3ff;
}

.nav-brand {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.nav-container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.nav-logo {
    width: 45px;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #aaa;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00c3ff;
}

/* HERO */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Sophisticated background layers */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,195,255,0.1), transparent 40%, rgba(124,58,237,0.1));
    pointer-events: none;
}
.hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00c3ff, transparent);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0,123,255,0.3), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(140,0,255,0.2), transparent 40%),
        linear-gradient(180deg, #0a1020, #05070c);
    z-index: 0;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 260px;
    margin-bottom: 50px;
    filter: drop-shadow(0 0 25px rgba(0,195,255,0.4));
}


.hero h1 {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00c3ff, #ffffff, #7c3aed);
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* IMAGES */
.bg-mg::before {
    background-image: url("../images/mg.jpg");
}

.bg-jb::before {
    background-image: url("../images/jb.jpg");
}

.bg-balkan::before {
    background-image: url("../images/balkan.jpg");
}
.bg-surf::before {
    background-image: url("../images/894.jpg");
}
.bg-awp::before {
    background-image: url("../images/743.jpg");
}

/* continue hero */

.hero h2 {
	font-size: 20px;
    font-weight: 400;
    color: #aaa;
    letter-spacing: 2px;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-light {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,195,255,0.15), transparent 70%);
    filter: blur(120px);
    animation: floatLight 12s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes floatLight {
    0% { transform: translate(-10%, -10%); }
    100% { transform: translate(10%, 10%); }
}

/* SCROLL ANIMATION */

.scroll-indicator {
    margin-top: 60px;
    width: 30px;
    height: 50px;
    border: 2px solid #00c3ff;
    border-radius: 25px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #00c3ff;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 30px; }
}
.scroll-wrapper {
    margin-top: 60px;
    text-align: center;
}

.scroll-text {
    margin-top: 15px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
}

/* SECTION */

.section {
    padding: 120px 10%;
    background: #0d1424;
}

.section-title h2 {
    font-size: 38px;
    margin-bottom: 60px;
}

/* SERVERS */

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

.server-card {
    position: relative;
    padding: 50px 35px;
    border-radius: 16px;
    overflow: hidden;
    background: #111a2e;
    border: 1px solid rgba(0,195,255,0.15);
    transition: 0.4s;
}

.server-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    transition: 0.4s;
}

.server-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #111a2e 0%,
        rgba(17,26,46,0.95) 20%,
        rgba(17,26,46,0.7) 50%,
        rgba(17,26,46,0.4) 70%,
        rgba(17,26,46,0.2) 85%,
        transparent 100%
    );
}

.server-card * {
    position: relative;
    z-index: 2;
}

.server-card:hover {
    transform: translateY(-8px);
    border-color: #00c3ff;
}

.server-ip {
    color: #9aa4c3;
    margin-top: 6px;
    margin-bottom: 18px;   /* ← spacing added */
    font-size: 14px;
}


.second-title {
    margin-top: 100px;
}

/* FAQ */

.faq-section {
    padding: 120px 10%;
    background: #0a0f1c;
}

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

.faq-item {
    background: #111a2e;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #00c3ff;
    transition: 0.3s;
}

.faq-item:hover {
    border-left-color: #7c3aed;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 40px;
    background: #05070c;
    color: #666;
}
/* TRANSLATION */
.translate-wrapper {
    margin-top: 25px;
}

.translate-label {
    font-size: 14px;
    color: #aaa;
    margin-right: 10px;
}

#languageSwitcher {
    padding: 6px 12px;
    background: rgba(20,30,50,0.8);
    border: 1px solid rgba(0,195,255,0.3);
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

#languageSwitcher:hover {
    border-color: #00c3ff;
}
