/* ============================= */
/* TRANSPARENCY & CREDITS PAGE */
/* ============================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #2a385a;
}

.transparency-page {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    padding: 100px 0 60px;
    color: #e2e8f0;
    font-family: 'Montserrat', sans-serif;
}

/* HERO / FIRST SECTION */
.transparency-page section:first-child {
    text-align: center;
    padding: 35px 25px;
    margin-bottom: 30px;

    border-radius: 22px;
    border: 1px solid rgba(56, 189, 248, 0.35);

    background:
        radial-gradient(circle at top, rgba(56, 189, 248, 0.16), transparent 45%),
        rgba(15, 23, 42, 0.88);

    box-shadow:
        0 0 25px rgba(56, 189, 248, 0.12),
        0 15px 35px rgba(0, 0, 0, 0.35);
}

.transparency-page h1 {
    color: #38bdf8;
    text-align: center;

    font-family: 'Audiowide', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 4px;
    font-size: 38px;

    margin: 0 0 18px;

    text-shadow:
        0 0 10px rgba(56, 189, 248, 0.45),
        0 0 20px rgba(0, 0, 0, 0.6);
}

.transparency-page section:first-child p {
    max-width: 750px;
    margin: 10px auto 0;

    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
}

/* CONTENT SECTIONS */
.transparency-page section:not(:first-child) {
    margin-bottom: 22px;
    padding: 24px 26px;

    border-radius: 18px;
    border: 1px solid rgba(56, 189, 248, 0.22);

    background: rgba(15, 23, 42, 0.78);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);

    transition: all 0.25s ease;
}

.transparency-page section:not(:first-child):hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.38),
        0 0 18px rgba(56, 189, 248, 0.09);
}

/* SECTION TITLES */
.transparency-page h2 {
    position: relative;

    color: #38bdf8;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;

    margin: 0 0 14px;
    padding-left: 16px;

    letter-spacing: 0.4px;
}

.transparency-page h2::before {
    content: "";
    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 70%;

    transform: translateY(-50%);

    border-radius: 999px;
    background: linear-gradient(180deg, #38bdf8, #0ea5e9);

    box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

/* TEXT */
.transparency-page p {
    color: #cbd5e1;
    font-size: 15.5px;
    line-height: 1.8;

    margin: 0 0 13px;
}

.transparency-page p:last-child {
    margin-bottom: 0;
}

/* LINKS INSIDE THE PAGE */
.transparency-page a {
    color: #38bdf8;
    font-weight: 600;
    text-decoration: none;

    border-bottom: 1px solid rgba(56, 189, 248, 0.45);

    transition: all 0.25s ease;
}

.transparency-page a:hover {
    color: #7dd3fc;
    border-bottom-color: #7dd3fc;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

/* OPTIONAL: IMPORTANT WORDS */
.transparency-page strong {
    color: #f8fafc;
    font-weight: 700;
}

/* OPTIONAL: SMALL LABEL STYLE */
.transparency-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;
    padding: 6px 14px;

    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.45);

    background: rgba(56, 189, 248, 0.08);
    color: #38bdf8;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;

    box-shadow: 0 0 16px rgba(56, 189, 248, 0.12);
}

/* OPTIONAL: CONTACT BUTTON */
.transparency-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 10px;
    padding: 10px 22px;

    border-radius: 999px;

    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #0f172a !important;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    border: none;

    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);

    transition: all 0.25s ease;
}

.transparency-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(56, 189, 248, 0.6);
    text-shadow: none;
}

/* SCROLLBAR - se non vuoi duplicarla, puoi rimuovere questa parte */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.7);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(56, 189, 248, 1);
}

html {
    scroll-behavior: smooth;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .transparency-page {
        width: 92%;
        padding: 85px 0 45px;
    }

    .transparency-page section:first-child {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .transparency-page h1 {
        font-size: 30px;
        letter-spacing: 2.5px;
    }

    .transparency-page section:not(:first-child) {
        padding: 21px 20px;
        border-radius: 16px;
    }

    .transparency-page h2 {
        font-size: 20px;
    }

    .transparency-page p {
        font-size: 15px;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {
    .transparency-page {
        width: 94%;
        padding-top: 80px;
    }

    .transparency-page h1 {
        font-size: 25px;
        letter-spacing: 2px;
    }

    .transparency-page section:first-child p {
        font-size: 14.5px;
    }

    .transparency-page section:not(:first-child) {
        padding: 18px 16px;
    }

    .transparency-page h2 {
        font-size: 18px;
        padding-left: 14px;
    }

    .transparency-page p {
        font-size: 14.5px;
    }
}