/* =========================================================
   PARADISE MINECRAFT — STYLE.CSS COMPLETO E ORDINATO
   ========================================================= */

/* =========================
   1. RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: #020508;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
    font: inherit;
}

/* =========================
   2. NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: 82px;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8, 12, 18, 0.18);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.logo {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.logo img {
    display: block;

    height: 74px;
    width: auto;

    margin-right: 20px;

    filter:
        drop-shadow(0 5px 12px rgba(0,0,0,.95))
        drop-shadow(0 0 10px rgba(95,255,55,.18));
}

.logo-text {
    display: flex;
    flex-direction: column;

    margin-left: 12px;

    line-height: 0.88;
    text-align: left;
}

.logo-text strong {
    color: #eeeeee;

    font-size: 28px;
    font-weight: 1000;
    letter-spacing: 1px;

    text-shadow:
        0 2px 0 #999999,
        0 5px 8px rgba(0, 0, 0, 0.95);
}

.logo-text small {
    margin-top: 8px;

    color: #58df32;

    font-size: 16px;
    font-weight: 1000;
    letter-spacing: 4px;

    text-shadow:
        0 2px 0 #1c650e,
        0 0 10px rgba(88, 223, 50, 0.42);
}

/* Menu centrale */

.main-nav {
    position: absolute;
    top: 10px;
    left: 50%;

    height: 58px;

    transform: translateX(-50%);

    background: rgba(255, 255, 255, 0.018);

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 0 12px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.main-nav ul {
    height: 100%;

    display: flex;
    align-items: stretch;
    justify-content: center;

    list-style: none;
}

.main-nav li {
    display: flex;
}

.main-nav a {
    min-width: 135px;
    height: 100%;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    position: relative;

    color: rgba(238, 238, 238, 0.88);

    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    background: transparent;

    border-right: 1px solid rgba(255, 255, 255, 0.045);

    transition:
        color 0.25s ease,
        background 0.25s ease,
        text-shadow 0.25s ease;
}

.main-nav li:last-child a {
    border-right: none;
}

.main-nav a i {
    color: #eeeeee;
    font-size: 15px;

    transition:
        color 0.25s ease,
        filter 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #78ff50;

    background:
        linear-gradient(
            180deg,
            rgba(43, 115, 38, 0.28),
            rgba(12, 40, 14, 0.08)
        );

    text-shadow: 0 0 10px rgba(99, 242, 63, 0.45);
}

.main-nav a:hover i,
.main-nav a.active i {
    color: #78ff50;

    filter: drop-shadow(0 0 7px rgba(99, 242, 63, 0.65));
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;

    height: 3px;

    background: transparent;

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    background: #63f23f;

    box-shadow:
        0 0 10px rgba(99, 242, 63, 0.95),
        0 0 20px rgba(99, 242, 63, 0.45);
}

/* =========================
   3. HERO
========================= */

.hero {
    position: relative;

    min-height: 820px;

    background:
        linear-gradient(
            180deg,
            rgba(3, 6, 10, 0.18) 0%,
            rgba(3, 6, 10, 0.30) 52%,
            rgba(2, 5, 8, 0.78) 100%
        ),
        url("assets/images/sfondo.png") center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 50% 40%,
            transparent 0 32%,
            rgba(0, 0, 0, 0.18) 62%,
            rgba(0, 0, 0, 0.48) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(1120px, 92%);
    min-height: 820px;
    margin: 0 auto;
    padding: 70px 0 28px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* Logo centrale PNG */

.hero-logo {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: -45px;
    margin-bottom: -145px;
}

.hero-logo img {
    display: block;

    width: 760px;
    max-width: 82%;
    height: auto;
    margin: 0 auto;
}

/* Sottotitolo */

.hero-subtitle {
    margin-top: 0;

    color: #f5f5f5;

    font-size: clamp(12px, 1.15vw, 17px);
    font-weight: 900;
    letter-spacing: 1.5px;

    text-shadow:
        0 3px 8px rgba(0, 0, 0, 1),
        0 0 15px rgba(0, 0, 0, 0.88);
}

.hero-subtitle i {
    margin: 0 7px;

    color: #65e83d;
    font-style: normal;
}

.hero-subtitle em {
    color: #ffd13d;
    font-style: normal;
}

/* =========================
   4. PULSANTE PRINCIPALE
========================= */

.main-button {
    width: 440px;
    height: 70px;
    margin-top: 28px;
    padding: 0 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    position: relative;

    border: 1px solid #72ff45;
    border-radius: 2px;

    background:
        linear-gradient(
            180deg,
            rgba(23, 126, 29, 0.96) 0%,
            rgba(10, 83, 16, 0.98) 52%,
            rgba(4, 43, 10, 1) 100%
        );

    color: #ffffff;

    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.8px;

    cursor: pointer;

    clip-path:
        polygon(
            8px 0,
            calc(100% - 8px) 0,
            100% 8px,
            100% calc(100% - 8px),
            calc(100% - 8px) 100%,
            8px 100%,
            0 calc(100% - 8px),
            0 8px
        );

    box-shadow:
        0 0 6px rgba(108, 255, 67, 0.95),
        0 0 18px rgba(62, 235, 38, 0.45),
        inset 0 1px 0 rgba(200, 255, 190, 0.18),
        inset 0 -14px 24px rgba(0, 25, 4, 0.32);

    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.85);

    transition:
        transform 0.22s ease,
        filter 0.22s ease,
        box-shadow 0.22s ease;
}
.main-button-icon {
    width: 38px;
    height: 38px;

    object-fit: contain;
    flex-shrink: 0;

    margin-right: 10px;

    image-rendering: pixelated;

    transform: none;

    filter:
        drop-shadow(0 0 4px rgba(115, 255, 65, 0.55));
}

.main-button::before {
    content: "";

    position: absolute;
    inset: 3px;

    border: 1px solid rgba(158, 255, 126, 0.16);
    clip-path: inherit;

    pointer-events: none;
}

.main-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);

    box-shadow:
        0 0 9px rgba(108, 255, 67, 1),
        0 0 26px rgba(62, 235, 38, 0.62),
        inset 0 1px 0 rgba(200, 255, 190, 0.23),
        inset 0 -14px 24px rgba(0, 25, 4, 0.28);
}

/* =========================
   5. PULSANTI SECONDARI
========================= */

.secondary-buttons {
    margin-top: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.secondary-buttons > a {
    width: 280px;
    min-height: 78px;
    padding: 13px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    border-radius: 5px;

    transition:
        transform 0.25s ease,
        filter 0.25s ease,
        box-shadow 0.25s ease;
}

.secondary-buttons > a:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.button-icon {
    font-size: 35px;
    line-height: 1;
}

.button-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.button-text strong {
    font-size: 20px;
    font-weight: 1000;
    letter-spacing: 1px;
}

.button-text small {
    margin-top: 7px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.75px;
}

.discord-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 18px 28px;

    border: 2px solid #756cff;
    border-radius: 22px;

    background: linear-gradient(
        180deg,
        rgba(40, 34, 130, 0.98),
        rgba(14, 12, 60, 0.98)
    );

    color: #ffffff;

    box-shadow:
        0 0 20px rgba(111, 93, 255, .45),
        inset 0 0 20px rgba(255,255,255,.05);

    transition: .25s ease;
}
.discord-button:hover {

    transform: translateY(-4px);

    border-color: #9f98ff;

    box-shadow:
        0 0 35px rgba(122,108,255,.75),
        0 12px 35px rgba(0,0,0,.35);

    background: linear-gradient(
        180deg,
        rgb(58,48,170),
        rgb(26,20,95)
    );
}

.radio-button {
    width: 340px;
    min-height: 78px;
    padding: 13px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border: 2px solid #ffb238;
    border-radius: 22px;

    background: linear-gradient(
        180deg,
        rgba(140, 90, 10, 0.98),
        rgba(70, 42, 5, 0.98)
    );

    color: #ffffff;

    box-shadow:
        0 0 20px rgba(255, 180, 60, 0.45),
        inset 0 0 20px rgba(255, 255, 255, 0.05);

    transition: 0.25s ease;
}

.radio-button .button-text strong {
    white-space: nowrap;
    font-size: 20px;
}

.radio-button:hover {
    transform: translateY(-4px);
    border-color: #ffd27d;

    box-shadow:
        0 0 35px rgba(255, 180, 60, 0.75),
        0 12px 35px rgba(0, 0, 0, 0.35);

    background: linear-gradient(
        180deg,
        rgb(180, 115, 18),
        rgb(95, 57, 8)
    );
}
.donazioni-button {
    width: 340px;
    min-height: 78px;
    padding: 13px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border: 2px solid #ff5fa2;
    border-radius: 22px;

    background: linear-gradient(
        180deg,
        rgba(150, 28, 88, 0.98),
        rgba(76, 10, 42, 0.98)
    );

    color: #ffffff;

    box-shadow:
        0 0 20px rgba(255, 95, 162, 0.45),
        inset 0 0 20px rgba(255, 255, 255, 0.05);

    transition: 0.25s ease;
}

.donazioni-button:hover {
    transform: translateY(-4px);
    border-color: #ff9fc7;

    box-shadow:
        0 0 35px rgba(255, 95, 162, 0.75),
        0 12px 35px rgba(0, 0, 0, 0.35);

    background: linear-gradient(
        180deg,
        rgb(190, 46, 112),
        rgb(105, 17, 59)
    );
}

/* =========================
   6. BARRA STATO SERVER
========================= */

.server-status {
    width: 100%;
    margin-top: 24px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border: 1px solid rgba(83, 240, 57, 0.68);
    border-radius: 4px;

    background:
        linear-gradient(
            180deg,
            rgba(4, 14, 18, 0.97),
            rgba(1, 6, 9, 0.99)
        );

    box-shadow:
        0 0 30px rgba(0, 0, 0, 0.88),
        0 0 18px rgba(70, 255, 45, 0.08),
        inset 0 0 28px rgba(27, 93, 20, 0.10);
}

.status-item {
    min-height: 118px;
    padding: 18px 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    border-right: 1px solid rgba(255, 255, 255, 0.035);

    text-align: left;
}

.status-item:last-child {
    border-right: none;
}

.status-icon {
    color: #65e83d;
    font-size: 36px;

    text-shadow:
        0 0 10px rgba(101, 232, 61, 0.65),
        0 0 20px rgba(101, 232, 61, 0.28);
}

.status-item small {
    display: block;

    color: #ffffff;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.status-item strong {
    display: block;
    margin: 7px 0;

    color: #61df3b;

    font-size: 25px;
    font-weight: 1000;
    letter-spacing: 1px;

    text-shadow: 0 0 12px rgba(93, 230, 57, 0.32);
}

.status-item p {
    color: #d9d9d9;
    font-size: 10px;
}

/* =========================
   7. FEATURES
========================= */

.features {
    padding: 48px 30px 62px;

    background:
        radial-gradient(
            circle at top,
            rgba(39, 109, 28, 0.15),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #071017,
            #020508
        );

    border-top: 1px solid rgba(90, 255, 65, 0.28);
}

.features-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.section-heading {
    margin-bottom: 32px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.section-heading span {
    width: 82px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #6ce840
        );

    box-shadow: 0 0 8px rgba(108, 232, 64, 0.45);
}

.section-heading span:last-child {
    background:
        linear-gradient(
            90deg,
            #6ce840,
            transparent
        );
}

.section-heading h2 {
    color: #ffffff;

    font-size: clamp(26px, 3vw, 39px);
    font-weight: 1000;
    letter-spacing: 2px;

    text-align: center;
    text-transform: uppercase;

    text-shadow:
        0 4px 12px rgba(0, 0, 0, 0.90),
        0 0 20px rgba(80, 230, 50, 0.15);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card {
    min-height: 145px;
    padding: 20px 16px;

    display: flex;
    align-items: center;
    gap: 16px;

    border: 1px solid;
    border-radius: 4px;

    background:
        linear-gradient(
            180deg,
            rgba(12, 20, 27, 0.97),
            rgba(4, 8, 12, 0.99)
        );

    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.feature-card:hover {
    transform: translateY(-7px);
}

.feature-icon {
    min-width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border: 1px solid currentColor;
    border-radius: 6px;

    font-size: 31px;

    filter: drop-shadow(0 0 10px currentColor);
}

.feature-card h3 {
    margin-bottom: 8px;

    font-size: 15px;
    font-weight: 1000;
    letter-spacing: 0.7px;
}

.feature-card p {
    color: #d4d8dc;

    font-size: 12px;
    line-height: 1.5;
}

.feature-card.green {
    color: #67e747;
    border-color: rgba(87, 225, 52, 0.60);
}

.feature-card.gold {
    color: #f4c147;
    border-color: rgba(245, 186, 43, 0.60);
}

.feature-card.purple {
    color: #9d87ff;
    border-color: rgba(137, 102, 255, 0.62);
}

.feature-card.blue {
    color: #63b3ff;
    border-color: rgba(65, 160, 255, 0.60);
}

/* =========================
   8. RESPONSIVE
========================= */

@media (max-width: 1450px) {
    .main-nav a {
        min-width: 118px;
        padding: 0 12px;
    }
}

@media (max-width: 1180px) {
    .navbar {
        padding: 0 20px;
    }

    .main-nav a {
        min-width: auto;
        padding: 0 10px;
        font-size: 11px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .navbar {
        height: auto;
        min-height: 82px;
        padding: 10px 18px;

        flex-direction: column;
        gap: 8px;
    }

    .main-nav {
        position: static;

        width: 100%;
        height: auto;

        transform: none;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav a {
        min-height: 40px;
    }

    .hero-content {
        padding-top: 185px;
    }

    .main-button {
        width: 100%;
        max-width: 500px;
    }

    .server-status {
        grid-template-columns: repeat(2, 1fr);
    }

    .status-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 620px) {
    .logo img {
        height: 58px;
    }

    .logo-text strong {
        font-size: 21px;
    }

    .logo-text small {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .hero-logo img {
        width: 94%;
        max-width: 94%;
    }

    .hero-subtitle {
        line-height: 1.8;
    }

    .main-button {
        width: 100%;
        height: 64px;
        padding: 0 18px;
        font-size: 18px;
    }

    .secondary-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.secondary-buttons > a {
    width: 340px;
}

    .server-status {
        grid-template-columns: 1fr;
    }

    .status-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .status-item:last-child {
        border-bottom: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .section-heading span {
        width: 34px;
    }
}
/* =========================
   FOOTER
========================= */

.footer {
    padding: 35px 20px;

    text-align: center;

    border-top: 1px solid rgba(255,255,255,.08);

    background:
        linear-gradient(
            180deg,
            rgba(4,8,12,.98),
            rgba(2,5,8,1)
        );

    color: #cfd6dc;

    font-size: 14px;
    line-height: 1.8;
}

.footer p {
    margin: 8px 0;
}

.footer p:first-child {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
}

.footer strong {
    color: #68e83f;
    font-weight: 800;
}
/* =========================
   LOGIN / REGISTRATI
========================= */

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 25px;
}

.login-button,
.register-button {

    padding: 11px 22px;

    border-radius: 14px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: .8px;

    transition: .25s ease;
}

.login-button {

    border: 2px solid #5cff3d;

    color: #ffffff;

    background:
        linear-gradient(
            180deg,
            rgba(28,120,30,.95),
            rgba(10,60,12,.98)
        );

    box-shadow:
        0 0 15px rgba(92,255,61,.35);
}

.login-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 0 28px rgba(92,255,61,.70);
}

.register-button {

    border: 2px solid #756cff;

    color: #ffffff;

    background:
        linear-gradient(
            180deg,
            rgba(60,50,170,.98),
            rgba(20,18,90,.98)
        );

    box-shadow:
        0 0 15px rgba(117,108,255,.35);
}

.register-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 0 28px rgba(117,108,255,.70);
}
/* ========================================
   PROFILO UTENTE - PARADISE MINECRAFT
======================================== */

.profile-page {
    min-height: 100vh;
    padding: 120px 25px 70px;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(
            rgba(2, 6, 10, 0.65),
            rgba(2, 6, 10, 0.96)
        ),
        url("assets/images/sfondo.png")
        center center / cover fixed no-repeat;
}

.profile-card {
    width: min(900px, 100%);

    overflow: hidden;

    border: 2px solid rgba(101, 232, 61, 0.55);
    border-radius: 25px;

    background: rgba(5, 12, 18, 0.97);

    box-shadow:
        0 0 45px rgba(0, 0, 0, 0.85),
        0 0 30px rgba(101, 232, 61, 0.14);
}

.profile-banner {
    height: 170px;

    background:
        linear-gradient(
            135deg,
            rgba(101, 232, 61, 0.85),
            rgba(43, 125, 255, 0.65),
            rgba(111, 93, 255, 0.80)
        );

    box-shadow:
        inset 0 -30px 60px rgba(0, 0, 0, 0.35);
}

.profile-content {
    position: relative;

    padding:
        0 45px
        45px;
}

.profile-avatar-container {
    margin-top: -75px;
    margin-bottom: 18px;
}

.profile-avatar {
    width: 145px;
    height: 145px;

    object-fit: cover;

    border: 5px solid #081018;
    border-radius: 50%;

    box-shadow:
        0 0 0 3px #69e63f,
        0 0 28px rgba(101, 232, 61, 0.45);
}

.profile-avatar-default {
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #69e63f,
            #756cff
        );

    color: white;

    font-size: 55px;
    font-weight: 1000;
}

.profile-header {
    margin-bottom: 32px;

    display: flex;
    align-items: center;
    gap: 18px;

    flex-wrap: wrap;
}

.profile-header h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 5vw, 50px);
    font-weight: 1000;

    letter-spacing: 1px;
}

.profile-badge {
    padding: 8px 14px;

    border: 1px solid rgba(101, 232, 61, 0.60);
    border-radius: 50px;

    background: rgba(101, 232, 61, 0.10);

    color: #69e63f;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1px;
}

.profile-info-grid {
    margin-bottom: 22px;

    display: grid;
    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.profile-info-box,
.profile-bio {
    padding: 22px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.035);
}

.profile-info-box {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.profile-info-label {
    color: #69e63f;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.profile-info-box strong {
    color: #ffffff;

    font-size: 16px;
}

.profile-bio {
    margin-bottom: 30px;
}

.profile-bio p {
    margin:
        12px 0
        0;

    color: #cbd3d9;

    line-height: 1.7;
}

.profile-actions {
    display: flex;
    gap: 14px;

    flex-wrap: wrap;
}

.profile-actions a {
    padding: 14px 20px;

    border-radius: 14px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 0.7px;

    text-decoration: none;

    transition: 0.25s ease;
}

.profile-edit-button {
    border: 2px solid #69e63f;

    background:
        linear-gradient(
            180deg,
            #4dbf28,
            #287712
        );

    box-shadow:
        0 0 18px rgba(101, 232, 61, 0.25);
}

.profile-home-button {
    border: 2px solid #756cff;

    background:
        linear-gradient(
            180deg,
            #5147c9,
            #29236e
        );
}

.profile-logout-button {
    border: 2px solid #ff5a67;

    background:
        linear-gradient(
            180deg,
            #c63b47,
            #731d25
        );
}

.profile-actions a:hover {
    transform: translateY(-3px);

    filter: brightness(1.12);
}

@media (max-width: 650px) {

    .profile-content {
        padding:
            0 22px
            30px;
    }

    .profile-info-grid {
        grid-template-columns: 1fr;
    }

    .profile-banner {
        height: 140px;
    }

    .profile-avatar {
        width: 125px;
        height: 125px;
    }

}
/* ========================================
   MODIFICA PROFILO - PARADISE MINECRAFT
======================================== */

.edit-profile-page {
    min-height: 100vh;
    padding: 120px 25px 70px;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(
            rgba(2, 6, 10, 0.65),
            rgba(2, 6, 10, 0.96)
        ),
        url("assets/images/sfondo.png")
        center center / cover fixed no-repeat;
}

.edit-profile-card {
    width: min(900px, 100%);

    overflow: hidden;

    border: 2px solid rgba(101, 232, 61, 0.55);
    border-radius: 25px;

    background: rgba(5, 12, 18, 0.97);

    box-shadow:
        0 0 45px rgba(0, 0, 0, 0.85),
        0 0 30px rgba(101, 232, 61, 0.14);
}

.edit-profile-banner {
    height: 170px;

    background:
        linear-gradient(
            135deg,
            rgba(101, 232, 61, 0.85),
            rgba(43, 125, 255, 0.65),
            rgba(111, 93, 255, 0.80)
        );

    box-shadow:
        inset 0 -30px 60px rgba(0, 0, 0, 0.35);
}

.edit-profile-content {
    position: relative;

    padding:
        0 45px
        45px;
}

.edit-profile-avatar-area {
    margin-top: -75px;
    margin-bottom: 18px;
}

.edit-profile-avatar {
    width: 145px;
    height: 145px;

    object-fit: cover;

    border: 5px solid #081018;
    border-radius: 50%;

    box-shadow:
        0 0 0 3px #69e63f,
        0 0 28px rgba(101, 232, 61, 0.45);
}

.edit-profile-avatar-default {
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #69e63f,
            #756cff
        );

    color: #ffffff;

    font-size: 55px;
    font-weight: 1000;
}

.edit-profile-header {
    margin-bottom: 28px;
}

.edit-profile-header h1 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: clamp(32px, 5vw, 48px);
    font-weight: 1000;

    letter-spacing: 1px;
}

.edit-profile-header p {
    margin: 0;

    color: #aeb7bf;

    font-size: 15px;
}

.edit-profile-message {
    margin-bottom: 22px;
    padding: 15px 18px;

    border: 1px solid rgba(101, 232, 61, 0.45);
    border-radius: 14px;

    background: rgba(101, 232, 61, 0.08);

    color: #dfffd5;

    font-weight: 800;
}

.edit-profile-form {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.edit-profile-field {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.edit-profile-field label {
    color: #69e63f;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.3px;
}

.edit-profile-field input[type="file"],
.edit-profile-field textarea {
    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.04);

    color: #ffffff;

    font-size: 15px;

    outline: none;

    transition: 0.25s ease;
}

.edit-profile-field input[type="file"] {
    padding: 14px;
}

.edit-profile-field textarea {
    padding: 16px;

    resize: vertical;

    line-height: 1.6;
}

.edit-profile-field input[type="file"]:focus,
.edit-profile-field textarea:focus {
    border-color: #69e63f;

    box-shadow:
        0 0 0 3px rgba(101, 232, 61, 0.10),
        0 0 18px rgba(101, 232, 61, 0.12);
}

.edit-profile-field small {
    color: #818b94;

    font-size: 12px;
}

.edit-profile-actions {
    margin-top: 6px;

    display: flex;
    gap: 14px;

    flex-wrap: wrap;
}

.edit-profile-save,
.edit-profile-back {
    padding: 14px 20px;

    border-radius: 14px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 0.7px;

    text-decoration: none;

    transition: 0.25s ease;
}

.edit-profile-save {
    border: 2px solid #69e63f;

    background:
        linear-gradient(
            180deg,
            #4dbf28,
            #287712
        );

    cursor: pointer;

    box-shadow:
        0 0 18px rgba(101, 232, 61, 0.25);
}

.edit-profile-back {
    border: 2px solid #756cff;

    background:
        linear-gradient(
            180deg,
            #5147c9,
            #29236e
        );
}

.edit-profile-save:hover,
.edit-profile-back:hover {
    transform: translateY(-3px);

    filter: brightness(1.12);
}

@media (max-width: 650px) {

    .edit-profile-content {
        padding:
            0 22px
            30px;
    }

    .edit-profile-banner {
        height: 140px;
    }

    .edit-profile-avatar {
        width: 125px;
        height: 125px;
    }

}
/* ========================================
   LOGIN - PARADISE MINECRAFT
======================================== */

.login-page {
    min-height: 100vh;
    padding: 90px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            rgba(2, 6, 10, 0.68),
            rgba(2, 6, 10, 0.96)
        ),
        url("assets/images/sfondo.png")
        center center / cover fixed no-repeat;
}

.login-card {
    width: min(520px, 100%);
    padding: 42px;

    text-align: center;

    border: 2px solid rgba(101, 232, 61, 0.55);
    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(8, 18, 25, 0.97),
            rgba(2, 7, 11, 0.99)
        );

    box-shadow:
        0 0 45px rgba(0, 0, 0, 0.85),
        0 0 30px rgba(101, 232, 61, 0.15);
}

.login-logo img {
    width: 115px;
    margin-bottom: 18px;

    filter:
        drop-shadow(0 0 18px rgba(101, 232, 61, 0.28));
}

.login-header {
    margin-bottom: 28px;
}

.login-header h1 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: clamp(30px, 5vw, 42px);
    font-weight: 1000;

    letter-spacing: 1px;
}

.login-header p {
    margin: 0;

    color: #aeb7bf;

    line-height: 1.6;
}

.login-message {
    margin-bottom: 22px;
    padding: 14px 18px;

    border: 1px solid rgba(101, 232, 61, 0.45);
    border-radius: 14px;

    background: rgba(101, 232, 61, 0.08);

    color: #dfffd5;

    font-weight: 800;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;

    text-align: left;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.login-field label {
    color: #69e63f;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.3px;
}

.login-field input {
    width: 100%;
    padding: 15px 16px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.04);

    color: #ffffff;

    font-size: 15px;

    outline: none;

    transition: 0.25s ease;
}

.login-field input:focus {
    border-color: #69e63f;

    box-shadow:
        0 0 0 3px rgba(101, 232, 61, 0.10),
        0 0 18px rgba(101, 232, 61, 0.12);
}

.login-submit {
    margin-top: 6px;
    padding: 15px 20px;

    border: 2px solid #69e63f;
    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            #4dbf28,
            #287712
        );

    color: #ffffff;

    font-size: 14px;
    font-weight: 900;

    letter-spacing: 1px;

    cursor: pointer;

    box-shadow:
        0 0 20px rgba(101, 232, 61, 0.25);

    transition: 0.25s ease;
}

.login-submit:hover {
    transform: translateY(-3px);

    filter: brightness(1.12);
}

.login-footer {
    margin-top: 26px;

    color: #aeb7bf;

    font-size: 14px;
}

.login-footer a {
    margin-left: 6px;

    color: #69e63f;

    font-weight: 900;

    text-decoration: none;
}

.login-home {
    display: inline-block;

    margin-top: 20px;

    color: #8e86ff;

    font-size: 13px;
    font-weight: 900;

    text-decoration: none;
}

.login-home:hover,
.login-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 550px) {

    .login-card {
        padding: 32px 22px;
    }

}
/* ========================================
   REGISTRAZIONE - PARADISE MINECRAFT
======================================== */

.register-page {
    min-height: 100vh;
    padding: 70px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            rgba(2, 6, 10, 0.68),
            rgba(2, 6, 10, 0.96)
        ),
        url("assets/images/sfondo.png")
        center center / cover fixed no-repeat;
}

.register-card {
    width: min(520px, 100%);
    padding: 42px;

    text-align: center;

    border: 2px solid rgba(101, 232, 61, 0.55);
    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(8, 18, 25, 0.97),
            rgba(2, 7, 11, 0.99)
        );

    box-shadow:
        0 0 45px rgba(0, 0, 0, 0.85),
        0 0 30px rgba(101, 232, 61, 0.15);
}

.register-logo img {
    width: 115px;
    margin-bottom: 18px;

    filter:
        drop-shadow(0 0 18px rgba(101, 232, 61, 0.28));
}

.register-header {
    margin-bottom: 28px;
}

.register-header h1 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: clamp(28px, 5vw, 40px);
    font-weight: 1000;

    letter-spacing: 1px;
}

.register-header p {
    margin: 0;

    color: #aeb7bf;

    line-height: 1.6;
}

.register-message {
    margin-bottom: 22px;
    padding: 14px 18px;

    border: 1px solid rgba(101, 232, 61, 0.45);
    border-radius: 14px;

    background: rgba(101, 232, 61, 0.08);

    color: #dfffd5;

    font-weight: 800;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 18px;

    text-align: left;
}

.register-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.register-field label {
    color: #69e63f;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.3px;
}

.register-field input {
    width: 100%;
    padding: 15px 16px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.04);

    color: #ffffff;

    font-size: 15px;

    outline: none;

    transition: 0.25s ease;
}

.register-field input:focus {
    border-color: #69e63f;

    box-shadow:
        0 0 0 3px rgba(101, 232, 61, 0.10),
        0 0 18px rgba(101, 232, 61, 0.12);
}

.register-submit {
    margin-top: 6px;
    padding: 15px 20px;

    border: 2px solid #69e63f;
    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            #4dbf28,
            #287712
        );

    color: #ffffff;

    font-size: 14px;
    font-weight: 900;

    letter-spacing: 1px;

    cursor: pointer;

    box-shadow:
        0 0 20px rgba(101, 232, 61, 0.25);

    transition: 0.25s ease;
}

.register-submit:hover {
    transform: translateY(-3px);

    filter: brightness(1.12);
}

.register-footer {
    margin-top: 26px;

    color: #aeb7bf;

    font-size: 14px;
}

.register-footer a {
    margin-left: 6px;

    color: #69e63f;

    font-weight: 900;

    text-decoration: none;
}

.register-home {
    display: inline-block;

    margin-top: 20px;

    color: #8e86ff;

    font-size: 13px;
    font-weight: 900;

    text-decoration: none;
}

.register-home:hover,
.register-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 550px) {

    .register-card {
        padding: 32px 22px;
    }

}
.register-login-button {
    display: inline-block;

    margin-bottom: 22px;
    padding: 14px 22px;

    border: 2px solid #756cff;
    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            #5147c9,
            #29236e
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 0.8px;

    text-decoration: none;

    box-shadow:
        0 0 18px rgba(117, 108, 255, 0.25);

    transition: 0.25s ease;
}

.register-login-button:hover {
    transform: translateY(-3px);
    filter: brightness(1.12);
}
/* ========================================
   COOKIE NOTICE - PARADISE MINECRAFT
======================================== */

.cookie-notice {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;

    z-index: 9999;

    display: flex;
    justify-content: center;
}

.cookie-notice-content {
    width: min(900px, 100%);
    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border: 2px solid rgba(101, 232, 61, 0.55);
    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            rgba(8, 18, 25, 0.98),
            rgba(2, 7, 11, 0.99)
        );

    box-shadow:
        0 0 35px rgba(0, 0, 0, 0.75),
        0 0 22px rgba(101, 232, 61, 0.14);
}

.cookie-notice-content p {
    margin: 0;

    color: #cbd3d9;

    font-size: 14px;
    line-height: 1.6;
}

.cookie-notice-content a {
    color: #69e63f;

    font-weight: 900;
    text-decoration: none;
}

.cookie-notice-content a:hover {
    text-decoration: underline;
}

#cookie-notice-close {
    flex-shrink: 0;

    padding: 12px 18px;

    border: 2px solid #69e63f;
    border-radius: 12px;

    background:
        linear-gradient(
            180deg,
            #4dbf28,
            #287712
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 900;

    cursor: pointer;

    transition: 0.25s ease;
}

#cookie-notice-close:hover {
    transform: translateY(-2px);

    filter: brightness(1.12);
}

@media (max-width: 700px) {

    .cookie-notice-content {
        flex-direction: column;
        align-items: stretch;
    }

    #cookie-notice-close {
        width: 100%;
    }

}
/* PRIVACY REGISTRAZIONE */

.register-privacy {
    margin-top: 4px;
}

.register-privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: #cbd3d9;

    font-size: 13px;
    line-height: 1.6;

    cursor: pointer;
}

.register-privacy-label input[type="checkbox"] {
    width: 18px;
    height: 18px;

    margin-top: 2px;

    accent-color: #69e63f;

    cursor: pointer;
}

.register-privacy-label a {
    color: #69e63f;

    font-weight: 900;
    text-decoration: none;
}

.register-privacy-label a:hover {
    text-decoration: underline;
}
.profile-delete-button {
    border: 2px solid #ff2f3d;

    background:
        linear-gradient(
            180deg,
            #e53945,
            #8f1821
        );
}
.delete-account-section {
    width: min(620px, calc(100% - 40px));
    margin: 80px auto;
    padding: 40px;

    border: 2px solid rgba(255, 70, 85, 0.65);
    border-radius: 24px;

    background: rgba(5, 12, 18, 0.97);

    box-shadow:
        0 0 45px rgba(0, 0, 0, 0.85),
        0 0 30px rgba(255, 60, 75, 0.14);

    color: #ffffff;
}
.delete-account-section form {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-top: 25px;
}
.delete-account-section input[type="password"] {
    width: 100%;
    padding: 14px 16px;

    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;

    background: #101820;
    color: #ffffff;

    font-size: 16px;
    outline: none;

    box-sizing: border-box;
}

.delete-account-section input[type="password"]:focus {
    border-color: #ff4655;
}
.delete-account-section button[type="submit"] {
    width: 100%;
    padding: 14px 18px;

    border: 2px solid #ff5a67;
    border-radius: 12px;

    background: linear-gradient(
        180deg,
        #d83b49,
        #851c27
    );

    color: #ffffff;

    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.6px;

    cursor: pointer;

    transition: 0.25s ease;
}

.delete-account-section button[type="submit"]:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}
.delete-account-section > a {
    display: inline-block;

    margin-top: 14px;
    padding: 12px 18px;

    border: 2px solid #6f5cff;
    border-radius: 12px;

    background: linear-gradient(
        180deg,
        #5142c7,
        #2f277d
    );

    color: #ffffff;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.5px;

    text-decoration: none;

    transition: 0.25s ease;
}

.delete-account-section > a:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}
.delete-account-warning {
    margin-top: 12px;
    padding: 14px 16px;

    border: 1px solid rgba(255, 90, 103, 0.45);
    border-radius: 12px;

    background: rgba(255, 70, 85, 0.08);

    color: #ffd7db;

    line-height: 1.5;
}
.delete-account-error {
    margin: 16px 0 0;
    padding: 12px 14px;

    border: 1px solid #ff5a67;
    border-radius: 10px;

    background: rgba(255, 70, 85, 0.12);

    color: #ff8a94;

    font-weight: 700;
}
.bluemap-frame {
    width: 100%;
    height: 75vh;

    border: none;
    border-radius: 18px;

    display: block;
}
.map-offline-message p {
    width: 100%;
    text-align: center;
    margin: 14px auto 0;
}