/*
==========================================================================
   1. Ustawienia Globalne i Reset
========================================================================== 
*/
* { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #EAEAEA;
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
}

/*
==========================================================================
   2. Globalne Style dla Linków i Typografii
========================================================================== 
*/
a, a:visited { color: #EAEAEA; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #FFFFFF; }
a.active { color: #FFFFFF; font-weight: 600; }

h1, h2, h3 { font-weight: 600; color: #FFFFFF; }
h1 { font-size: 2.5rem; margin-top: 0; }

/*
==========================================================================
   3. Główny Layout Strony
========================================================================== 
*/
.page-container { display: flex; flex-direction: column; min-height: 100vh; }
.main-content {
    flex-grow: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/*
==========================================================================
   4. Nagłówek i Nawigacja (Wersja Desktop)
========================================================================== 
*/
.main-header {
    background-color: rgba(18, 18, 18, 0.8);
    border-bottom: 1px solid #2a2a2a;
    padding: 20px;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo { font-weight: 700; font-size: 24px; }
.main-nav-desktop a { margin-left: 25px; font-weight: 400; }

/*
==========================================================================
   5. Stopka
========================================================================== 
*/
.main-footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #2a2a2a;
    font-size: 14px;
    color: #888888;
}