/* =========================================================
   ENERAY WEBSITE — CLIPS
========================================================= */

.clips-page {
    min-height: 100vh;
    overflow-x: hidden;
    background: #08050f;
}

.clips-page .background {
    position: fixed;
    inset: -30px;
    background: url("../images/bg.jpg") center / cover no-repeat;
    filter: blur(5px);
    transform: scale(1.05);
    z-index: -3;
}

.background-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(10, 5, 20, .65), rgba(5, 5, 15, .82));
    z-index: -2;
}

.background-shape {
    position: fixed;
    width: 45vw;
    height: 45vw;
    background: rgba(140, 70, 255, .08);
    clip-path: polygon(0 0, 100% 20%, 70% 100%, 10% 70%);
    z-index: -1;
}

.background-shape--purple {
    top: -15vw;
    left: -10vw;
}

.background-shape--cyan {
    right: -10vw;
    bottom: -20vw;
    background: rgba(50, 220, 255, .08);
}

.page-container {
    width: min(92vw, 1100px);
    margin: 50px auto;
    padding: 40px 50px;

    background: rgba(15, 10, 25, .48);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(180, 100, 255, .55);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);

    animation: pageAppear .8s ease;
}

.page-header {
    text-align: center;
}

.page-logo {
    width: min(55%, 360px);
    margin-bottom: 20px;
    transition: transform .35s ease, filter .35s ease;
}

.page-logo:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 0 20px rgba(150, 80, 255, .45));
}

.header-divider {
    width: 65%;
    height: 2px;
    margin: 0 auto 18px;
    background: linear-gradient(90deg, #8f4cff, #36d9ff);
    border-radius: 10px;
}

.page-title {
    margin-bottom: 6px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
}

.page-subtitle {
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    font-weight: 500;
}

.clips-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 25px;
}

.clip-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .2);
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.clip-card:hover {
    transform: translateY(-4px);
    border-color: rgba(180, 120, 255, .35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
}

.clip-video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 8, 18, .95), rgba(25, 15, 40, .9));
}

.clip-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, .35);
}

.clip-video-wrapper--portrait .clip-video {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.clip-info {
    padding: 16px 18px 18px;
}

.clip-title {
    margin-bottom: 6px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.clip-description {
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    line-height: 1.55;
}

.page-footer {
    margin-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
    letter-spacing: .08em;
}

@media (max-width: 700px) {
    .page-container {
        width: 92vw;
        margin: 25px auto;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .page-logo {
        width: 75%;
    }

    .header-divider {
        width: 80%;
    }

    .page-title {
        font-size: 27px;
    }

    .clips-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}


/* =========================================================
   ENERAY WEBSITE — PROFILES
========================================================= */

.profiles-page {
    min-height: 100vh;
    padding: 60px 0;
    overflow-x: hidden;
    background:
        linear-gradient(rgba(5, 3, 10, .65), rgba(5, 3, 10, .65)),
        url("../images/bg.jpg") center / cover fixed;
}

.profiles-page::before,
.profiles-page::after {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
}

.profiles-page::before {
    top: -150px;
    left: -150px;
    background: rgba(160, 80, 255, .12);
}

.profiles-page::after {
    right: -150px;
    bottom: -150px;
    background: rgba(0, 220, 220, .1);
}

.profiles-page .container {
    width: min(92vw, 1000px);
    margin: 0 auto;
    padding: 50px 60px;

    background: rgba(15, 10, 25, .48);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(180, 100, 255, .55);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);

    animation: pageAppear .8s ease;
}

.profiles-page .title {
    margin-bottom: 15px;
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 1px;
}

.profiles-page .line {
    width: 65%;
    height: 2px;
    margin: 0 auto 35px;
    background: linear-gradient(90deg, #8f4cff, #36d9ff);
    border-radius: 10px;
}

.profiles-page section {
    margin-bottom: 40px;
}

.profiles-page section h2 {
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 800;
}

.profiles-page section p {
    color: rgba(255, 255, 255, .76);
    font-size: 15px;
    line-height: 1.7;
}

.fursona {
    margin-top: 25px;
    padding: 25px;

    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.fursona:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .075);
    border-color: rgba(180, 120, 255, .3);
}

.fursona h3 {
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: 800;
}

.fursona-image {
    width: 100%;
    margin-bottom: 22px;
    text-align: center;
}

.fursona-image img {
    display: block;
    width: min(100%, 600px);
    max-height: 600px;
    margin: 0 auto;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
    transition: transform .3s ease;
}

.fursona-image img:hover {
    transform: scale(1.015);
}

.profiles-page footer {
    margin-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
    letter-spacing: .08em;
}

@media (max-width: 700px) {
    .profiles-page {
        padding: 25px 0;
    }

    .profiles-page .container {
        width: 92vw;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .profiles-page .title {
        font-size: 28px;
    }

    .fursona {
        padding: 18px;
    }
}


/* =========================================================
   ENERAY WEBSITE — IMPRESSUM & DATENSCHUTZ
========================================================= */

.legal-page {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: #08050f;
}

.legal-page .background {
    position: fixed;
    inset: -30px;
    background: url("../images/bg.jpg") center / cover no-repeat;
    filter: blur(5px);
    transform: scale(1.05);
    z-index: -3;
}

.legal-page .overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(10, 5, 20, .6), rgba(5, 5, 15, .75));
    z-index: -2;
}

.legal-page .shape {
    position: fixed;
    width: 45vw;
    height: 45vw;
    background: rgba(140, 70, 255, .08);
    clip-path: polygon(0 0, 100% 20%, 70% 100%, 10% 70%);
    z-index: -1;
}

.legal-page .shape.one {
    top: -15vw;
    left: -10vw;
}

.legal-page .shape.two {
    right: -10vw;
    bottom: -20vw;
    background: rgba(50, 220, 255, .08);
}

.legal-page .container {
    width: min(92vw, 850px);
    margin: 70px auto;
    padding: 40px 55px;

    background: rgba(15, 10, 25, .48);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(180, 100, 255, .55);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);

    animation: pageAppear .8s ease;
}

.legal-page h1 {
    margin-bottom: 35px;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
}

.legal-page h2 {
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: .5px;
}

.legal-page .content {
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.7;
}

.legal-page .section {
    margin-bottom: 40px;
}

.legal-page .section:last-child {
    margin-bottom: 0;
}

.legal-page .section h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.legal-page .section p {
    margin-bottom: 5px;
}

.legal-page .value {
    color: rgba(255, 255, 255, .9);
}

.legal-page .divider {
    width: 100%;
    height: 1px;
    margin: 45px 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(180, 100, 255, .5),
        rgba(54, 217, 255, .5),
        transparent
    );
}

.legal-page .content a {
    color: rgba(255, 255, 255, .85);
    text-decoration: underline;
    text-decoration-color: rgba(143, 76, 255, .6);
    transition: color .2s ease, text-decoration-color .2s ease;
}

.legal-page .content a:hover {
    color: #fff;
    text-decoration-color: #36d9ff;
}

@media (max-width: 700px) {
    .legal-page .container {
        width: 92vw;
        margin: 25px auto;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .legal-page h1 {
        font-size: 27px;
    }
}


/* =========================================================
   ENERAY WEBSITE — UNDER CONSTRUCTION
========================================================= */

.construction-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
    background: radial-gradient(
        circle at 50% 35%,
        #242424 0%,
        #111 45%,
        #080808 100%
    );
}

.construction-page .container {
    width: min(680px, 100%);
    padding: 56px 28px;
    text-align: center;
}

.construction-page .icon {
    display: inline-block;
    margin-bottom: 28px;
    font-size: clamp(64px, 12vw, 100px);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .35));
    animation: float 3s ease-in-out infinite;
}

.construction-page h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 8vw, 76px);
    line-height: .95;
    letter-spacing: -.045em;
    font-weight: 800;
}

.construction-page .accent {
    display: inline-block;
    background: repeating-linear-gradient(
        -45deg,
        #f5c400 0 18px,
        #111 18px 36px
    );
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.construction-page p {
    max-width: 540px;
    margin: 0 auto;
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.65;
}

.construction-page .bar {
    width: min(420px, 90%);
    height: 8px;
    margin: 38px auto 0;
    border-radius: 99px;
    background: repeating-linear-gradient(
        -45deg,
        #f5c400 0 14px,
        #191919 14px 28px
    );
    background-size: 40px 40px;
    animation: move 1.2s linear infinite;
    box-shadow: 0 0 28px rgba(245, 196, 0, .08);
}

.construction-page .small {
    margin-top: 20px;
    color: #666;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-9px) rotate(2deg);
    }
}

@keyframes move {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 40px 0;
    }
}
