body {
    font-family: 'Geist', sans-serif;
    margin: 0; 
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/bg.gif') no-repeat center center fixed;
    background-size: cover;
    user-select: none;
}

.card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #fff;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 40px auto 20px auto;
    border: 3px solid #aaa8a8;
    display: block;
}

.glow-title {
    position: relative;
    font-size: 2.5em;
    font-weight: bold;
    color: #fff;
    z-index: 2;
    text-shadow: 0 0 5px #ffffffff;
}

#particles {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 235px;
    width: 140px;
    height: 120px;
    pointer-events: none;
    z-index: 1;
}

.subtitle {
    color: #bbb;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
    font-size: 1.5em; /* zmień tu rozmiar czcionki */
}

.social {
    margin-top: 20px;
    z-index: 2;
    position: relative;
}

.social a {
    margin: 0 10px;
    font-size: 1.5em;
    color: #fff;
    transition: transform 0.2s, color 0.2s;
}

.social a:hover { transform: scale(1.2); }

.paypal:hover { color: #003087; }
.github:hover { color: #6cc644; }
.discord:hover { color: #7289da; }

.back-button {
    margin-top: 15px;
    z-index: 2;
    position: relative;
}

.back-button a {
    display: inline-block;
    padding: 10px 20px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.3s, transform 0.2s;
}

.back-button a:hover {
    background: #444;
    transform: scale(1.05);
}

.stats {
    margin-top: 15px;
    font-size: 0.9em;
    color: #aaa;
    z-index: 2;
    position: relative;
}


.tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px; /* odstęp między tagami */
    margin-top: 15px;
    z-index: 2;
    position: relative;
}

.tag {
    display: inline-block;
    padding: 8px 18px;
    background: #1a1a1a; /* ciemny box jak back-button */
    color: #fff;
    text-decoration: none;
    border-radius: 10px; /* zaokrąglone rogi jak back-button */
    font-size: 0.95em;
    font-weight: 400;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 3px 8px rgba(0,0,0,0.4);
    cursor: default;
}

.tag:hover {
    background: #2c2c2c; /* jaśniejszy przy hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.5);
}

