html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #ff007f;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    cursor: url('../img/kursor1.cur'), auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Obsługa kursora na elementach klikalnych */
a, area, button, summary {
    cursor: url('../img/kursor1.cur'), pointer;
}

.banner {
    width: 100%;
    height: auto;
    display: block;
}

.social-container {
    width: 100%;
    max-width: 600px; /* Zabezpieczenie przed rozlaniem na cały ekran */
    display: flex;
    justify-content: center; /* Zamiast psującego się space-around */
    gap: 20px; /* Sztywny, równomierny odstęp */
    flex-wrap: wrap; /* Pozwala na zawijanie ikon na małych ekranach */
    margin-top: 4vw; 
    box-sizing: border-box;
}

.social-icon {
    width: 50px; 
    height: 50px;
    display: block;
    transition: transform 0.1s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.1);
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center; 
}

h1 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 6px;
    text-align: center;
    color: #00ff00;

    /* delikatniejszy neon */
    text-shadow:
        0 0 6px #00ff00,
        0 0 12px #00ff00,
        2px 2px 0px #000,
        3px 3px 0px #ff0000;

    margin: 0 0 12px 0; /* Zmniejszone o ~50% (z 25px) */
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #c8ffc8; 
    letter-spacing: 3px;
    margin-bottom: 16px; /* Zmniejszone o 20% (z 20px) */
}

h3 {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    color: #e0e0e0;
    max-width: 800px;
    line-height: 1.55;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* --- MENU GŁÓWNE --- */

.main-menu {
    margin: 30px 0 10px 0;
    text-align: center;
    position: relative;
    display: inline-block;
}

.main-menu summary {
    font-size: 1.2rem;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 3px;
    list-style: none;
    outline: none;
    padding: 10px 30px;
    border: 1px solid #00ff00;
    background: #000;
    transition: all 0.3s ease;
}

.main-menu summary:hover {
    background: #00ff00;
    color: #000;
}

.main-menu summary::-webkit-details-marker {
    display: none; /* Czysty wygląd dla starych przeglądarek WebKit */
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #050505;
    border: 1px solid #1a1a1a;
    padding: 15px;
    margin-top: 10px;
    min-width: 150px;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.dropdown-content a {
    color: #c8ffc8;
    text-decoration: none;
    padding: 8px;
    font-size: 1rem;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.dropdown-content a:hover {
    color: #ff007f;
}

/* --- STOPKA I MANIFEST --- */

.manifest-wrapper {
    text-align: center;
    background: #000;
    padding: 40px 20px 10px 20px;
    width: 100%;
    box-sizing: border-box;
}

footer {
    padding: 0 20px 40px 20px;
    text-align: center;
    background: #000;
}

details.manifest-footer {
    display: inline-block;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

details.manifest-footer summary {
    font-size: 0.85rem;
    color: #e20022; /* Dyskretny szary */
    list-style: none;
    outline: none;
    margin-bottom: 5px;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

details.manifest-footer summary:hover {
    color: #ff007f;
}

details.manifest-footer summary::-webkit-details-marker {
    display: none;
}

.manifest-content {
    text-align: left;
    font-size: 0.9rem;
    color: #999;
    padding: 30px;
    border: 1px solid #1a1a1a;
    margin: 20px 0;
    line-height: 1.7;
    background-color: #050505;
}

.manifest-content h2 {
    color: #ff007f;
    font-size: 1.2rem;
    margin-top: 0;
    border-bottom: 2px solid #ff007f;
    display: inline-block;
    margin-bottom: 10px;
}

.manifest-content h3 {
    color: #00ff00;
    font-size: 1rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.manifest-content p {
    margin-bottom: 10px;
}

.email-line {
    display: block;
    font-size: 0.75rem;
    color: #0db221;
    text-decoration: none;
    margin-top: 10px;
    letter-spacing: 1px;
}

.email-line:hover {
    color: #00ff00;
}

.llm-content {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Responsywność */
@media (max-width: 1800px) {
    h1 { font-size: 3rem; }
}

@media (max-width: 800px) {
    h1 { font-size: 2rem; }
}