/* ==========================================================
   AR1EK.PL
   Modern Minecraft Landing Page
   Part 1
========================================================== */

:root{

    --bg:#06070d;
    --bg2:#0d1324;
    --bg3:#111827;

    --card:rgba(255,255,255,.06);

    --border:rgba(255,255,255,.08);

    --text:#ffffff;
    --text2:#bfc8d8;

    --blue:#00d4ff;
    --green:#22c55e;
    --purple:#7c3aed;

    --shadow:0 20px 60px rgba(0,0,0,.35);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:Inter,sans-serif;

    background:linear-gradient(180deg,var(--bg),var(--bg2));

    color:var(--text);

    overflow-x:hidden;

}

/* Scroll */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#050608;

}

::-webkit-scrollbar-thumb{

    background:var(--blue);
    border-radius:30px;

}

/* Background */

#background{

    position:fixed;

    inset:0;

    overflow:hidden;

    z-index:-10;

    background:
    radial-gradient(circle at top,var(--bg3),transparent 65%),
    radial-gradient(circle at bottom right,#02152a,transparent 60%),
    linear-gradient(var(--bg),#090e18);

}

/* Gwiazdy */

#background::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    radial-gradient(#ffffff 1px,transparent 1px),
    radial-gradient(#00d4ff 1px,transparent 1px);

    background-size:

    90px 90px,
    170px 170px;

    opacity:.18;

    animation:stars 70s linear infinite;

}

@keyframes stars{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(-500px);

    }

}

/* Header */

header{

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    width:min(1200px,95%);

    height:72px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 35px;

    border:1px solid var(--border);

    background:rgba(10,12,20,.45);

    backdrop-filter:blur(18px);

    border-radius:18px;

    z-index:1000;

    box-shadow:var(--shadow);

}

.logo{

    font-size:30px;

    font-weight:800;

    letter-spacing:2px;

}

.logo span{

    color:var(--blue);

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:var(--text2);

    text-decoration:none;

    font-weight:600;

    transition:.3s;

    position:relative;

}

nav a:hover{

    color:white;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--blue);

    transition:.3s;

}

nav a:hover::after{

    width:100%;

}

/* Hero */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:130px 20px;

}

.hero-content{

    max-width:900px;

}

.badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(0,212,255,.10);

    border:1px solid rgba(0,212,255,.35);

    color:var(--blue);

    margin-bottom:30px;

    font-weight:600;

}

.hero h1{

    font-size:clamp(60px,8vw,110px);

    line-height:1;

    font-weight:800;

}

.hero h1 span{

    color:var(--blue);

    text-shadow:

    0 0 15px rgba(0,212,255,.4),

    0 0 35px rgba(0,212,255,.4);

}

.hero p{

    margin:35px auto;

    max-width:700px;

    color:var(--text2);

    font-size:22px;

    line-height:1.8;

}

/* Buttons */

.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.buttons button,
.buttons a{

    border:none;

    text-decoration:none;

    color:white;

    padding:18px 38px;

    border-radius:15px;

    cursor:pointer;

    font-size:17px;

    font-weight:700;

    transition:.35s;

}

#copyIP{

    background:linear-gradient(90deg,#00d4ff,#008cff);

    box-shadow:

    0 0 25px rgba(0,212,255,.4);

}

.discord{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

}

.buttons button:hover,
.buttons a:hover{

    transform:translateY(-5px);

}

.server-ip{

    margin-top:45px;

}

.server-ip span{

    display:inline-block;

    padding:16px 30px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    font-size:26px;

    font-weight:700;

    letter-spacing:2px;

}

/* Scroll */

.scroll{

    position:absolute;

    left:50%;

    bottom:25px;

    transform:translateX(-50%);

    font-size:40px;

    color:var(--blue);

    animation:scroll 2s infinite;

}

@keyframes scroll{

    0%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,10px);

    }

    100%{

        transform:translate(-50%,0);

    }

}

/* Sekcje */

section{

    padding:120px 8%;

}

footer{

    padding:40px;

    text-align:center;

    color:#9aa7bf;

    border-top:1px solid rgba(255,255,255,.08);

}

/* Responsive */

@media(max-width:900px){

nav{

display:none;

}

.hero h1{

font-size:62px;

}

.hero p{

font-size:18px;

}

header{

padding:0 20px;

}

.server-ip span{

font-size:20px;

}

}
/* ==========================================================
   FEATURES SECTION
========================================================== */

.section-title{

    max-width:750px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    color:var(--blue);

    font-weight:700;

    letter-spacing:3px;

    font-size:14px;

    margin-bottom:20px;

}


.section-title h2{

    font-size:clamp(38px,5vw,60px);

    font-weight:800;

    margin-bottom:20px;

}


.section-title p{

    color:var(--text2);

    font-size:18px;

    line-height:1.8;

}


/* Grid kart */

.features-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



/* Karta */

.feature-card{

    position:relative;

    padding:40px 35px;

    border-radius:25px;

    background:

    linear-gradient(
        145deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    overflow:hidden;

    transition:.45s;

    animation:fadeUp .8s ease both;

}


/* świecenie */

.feature-card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:var(--blue);

    filter:blur(100px);

    opacity:0;

    top:-80px;

    right:-80px;

    transition:.5s;

}


.feature-card:hover::before{

    opacity:.45;

}



.feature-card:hover{

    transform:translateY(-12px);

    border-color:rgba(0,212,255,.5);

    box-shadow:

    0 20px 50px rgba(0,0,0,.5),

    0 0 30px rgba(0,212,255,.15);

}



.feature-card .icon{

    font-size:45px;

    margin-bottom:25px;

}


.feature-card h3{

    font-size:26px;

    margin-bottom:15px;

}


.feature-card p{

    color:var(--text2);

    line-height:1.7;

    font-size:16px;

}



/* ==========================================================
   STATUS SECTION
========================================================== */


.status-section{

    position:relative;

}



.status-grid{

    max-width:1100px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.status-box{

    padding:35px 25px;

    text-align:center;

    border-radius:25px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    transition:.35s;

}


.status-box:hover{

    transform:translateY(-8px);

    border-color:rgba(34,197,94,.5);

}



.status-icon{

    font-size:40px;

    margin-bottom:20px;

}


.status-box h3{

    font-size:32px;

    margin-bottom:10px;

}



.status-box p{

    color:var(--text2);

}



/* animacja online */

.status-box:first-child .status-icon{

    animation:pulse 2s infinite;

}



@keyframes pulse{

    0%{

        transform:scale(1);

    }


    50%{

        transform:scale(1.15);

    }


    100%{

        transform:scale(1);

    }

}



/* ==========================================================
   ANIMACJE
========================================================== */


@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}



/* ==========================================================
   RESPONSIVE
========================================================== */


@media(max-width:1100px){


.features-grid{

    grid-template-columns:repeat(2,1fr);

}


.status-grid{

    grid-template-columns:repeat(2,1fr);

}


}



@media(max-width:650px){


.features-grid{

    grid-template-columns:1fr;

}


.status-grid{

    grid-template-columns:1fr;

}


.feature-card{

    padding:30px 25px;

}


}