* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #141e30, #243b55);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.page {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.profile h1 {
    margin-bottom: 10px;
    text-align: center;
    word-break: break-word;
}

.profile p {
    opacity: 0.7;
    font-size: 14px;
    text-align: center;
    word-break: break-word;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.avatar:hover {
    transform: scale(1.05);
}

/* Links */

.link {
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    transition: 0.2s ease;
    word-break: break-word;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
}

/* Projekt */

.projekt {
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: 0.2s ease;
    word-break: break-word;
}

.projekts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leaks {
    width: 100%;
    height: auto;
    border-radius: 5%;
    border: 4px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    margin-top: 20px;
    transition: 0.3s ease;
}

.projekt-link {
    color: white;
    text-decoration: none;
    word-break: break-word;
}

/* Footer */

.footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    opacity: 0.7;
    flex-wrap: wrap;
    text-align: center;
}

.footer a {
    text-decoration: none;
    color: white;
    transition: 0.2s ease;
    word-break: break-word;
}

.footer a:hover {
    opacity: 1;
}

.back-btn {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 30px auto 0 auto;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: 0.2s ease;
    text-align: center;
}

.back-btn:hover {
    transform: scale(1.05);
}

.card p {
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 10px;
    word-break: break-word;
}

.card ul {
    margin-left: 20px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.card h1 {
    margin-bottom: 20px;
    word-break: break-word;
}

.card h2 {
    margin-bottom: 30px;
    margin-top: 15px;
    word-break: break-word;
}

.legal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    body {
        align-items: flex-start;
        padding: 20px 0;
    }

    .page {
        padding: 20px 16px;
    }

    .profile h1 {
        font-size: 32px;
    }

    .profile p {
        font-size: 16px;
    }

    .link,
    .projekt {
        padding: 16px;
        font-size: 18px;
    }
}