/* Definicja zmiennych kolorystycznych i globalnych ustawień */
:root {
    --color-darker: #0a0a0a;
    --color-blue: #4682B4; 
    --color-purple: #9400D3;
    --color-text: #f0f0f0;
    --color-text-muted: rgba(240, 240, 240, 0.7);
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
}

/* Resetowanie domyślnych stylów przeglądarki */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-darker);
    color: var(--color-text);
    text-align: center;
    overflow-x: hidden; /* <--- Zmienione, aby umożliwić przewijanie w pionie */
}

/* Kontener, który centruje tylko główną treść */
.center-wrapper {
    display: flex;
    flex-direction: column; /* Upewnia się, że padding działa zgodnie z oczekiwaniami */
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 40px 15px 80px 15px; /* Dodane odstępy: góra, boki, dół */
}

/* Kontener na animowane tło */
#background-container { 
    position: fixed; 
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0; 
    z-index: 1; 
    background: var(--color-darker); 
}

#particles-js { 
    height: 100%; 
}

/* Główna treść strony */
#page-content { 
    background-color: transparent; 
    padding: 20px;
    max-width: 680px;
    width: 100%;
}

/* Zdjęcie profilowe */
.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--color-purple);
    margin-bottom: 20px;
    object-fit: cover;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-button {
    display: block;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 100%);
    color: white;
    text-decoration: none;
    border: none;
    box-shadow: 0 5px 20px rgba(148, 0, 211, 0.4);
}

.link-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 30px rgba(148, 0, 211, 0.5);
}

#footer {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: var(--color-text-muted);
    z-index: 2;
}
