:root {
    --bg-dark: #070708;
    --bg-white: #ffffff;
    --accent: #28d742;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --transition: 0.3s ease;
}

body { 
    margin: 0; 
    font-family: 'Quicksand', sans-serif; 
    background: var(--bg-dark); 
    color: var(--text-light); 
}

.container { 
    max-width: 1300px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* --- HEADER & NAVIGATION --- */
.header-main { 
    background: var(--bg-dark); 
    border-bottom: 1px solid #1a1a1a; 
    padding: 15px 0; 
    position: sticky; 
    top: 0;
    z-index: 1050; 
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

body.is-scrolled .header-main {
    padding: 10px 0;
    background: rgba(7, 7, 8, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.nav-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo a { 
    font-size: 2rem; 
    font-weight: 900; 
    letter-spacing: 4px; 
    color: #fff; 
    text-decoration: none; 
}

/* --- STYLE MENU WEYWOT --- */
.weywot-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.weywot-nav .nav-item {
    position: relative;
}

.weywot-nav .nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: block;
}

.weywot-nav .nav-link:hover,
.weywot-nav .nav-link.active {
    color: var(--accent);
}

.weywot-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.weywot-nav .nav-link:hover::after,
.weywot-nav .nav-link.active::after {
    width: 100%;
}

/* User Login/Access Area */
.user-access { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.user-welcome { 
    font-size: 0.8rem; 
    color: #888; 
    font-weight: bold; 
}

.login-btn { 
    border: 1px solid var(--accent); 
    color: var(--accent); 
    padding: 8px 15px; 
    text-decoration: none; 
    font-size: 0.8rem; 
    font-weight: bold; 
    transition: var(--transition);
}

.login-btn:hover { 
    background: var(--accent); 
    color: #000; 
}

.logout-link { 
    color: #ff4141; 
    text-decoration: none; 
    font-size: 0.8rem; 
    font-weight: bold; 
}

/* --- WEATHER BAR (STICKY) --- */
.weather-bar { 
    background: #000; 
    padding: 10px 0; 
    border-bottom: 1px solid #111; 
    font-size: 0.8rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.weather-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.green-text { 
    color: var(--accent); 
    font-weight: bold; 
    text-transform: uppercase; 
}

.weather-data { 
    display: flex; 
    align-items: center; 
}

.label { 
    color: #555; 
    margin-right: 10px; 
}

.w-day { 
    margin-left: 15px; 
    color: #888; 
}

.white { 
    color: #fff; 
}

body.is-scrolled .weather-bar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* --- SECTIONS --- */
.hero-wrapper { 
    background: #000; 
    min-height: 200px; 
}

/* GŁÓWNA STREFA TREŚCI - Pełna szerokość, szare tło Premium */
.white-zone { 
    background: #eef0f2; 
    color: var(--text-dark); 
    padding: 80px 0; 
    min-height: 400px; 
    width: 100%; 
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.white-zone h1, .white-zone h2 { 
    color: var(--bg-dark); 
    border-left: 5px solid var(--accent); 
    padding-left: 15px; 
}

.dark-panels { 
    background: #000; 
    padding: 80px 0; 
    border-top: 1px solid #1a1a1a; 
}

.grid-system { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); /* Sztywno wymusza max 3 kolumny obok siebie */
    gap: 15px; 
	margin-bottom: 30px;
}

/* --- RWD: Dopasowanie na laptopy i tablety (poniżej 1024px) --- */
@media (max-width: 1024px) {
    .grid-system {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny na średnich ekranach */
    }
}

/* --- RWD: Dopasowanie na telefony (poniżej 768px) --- */
@media (max-width: 768px) {
    .grid-system {
        grid-template-columns: 1fr; /* 1 kolumna na małych ekranach */
    }
}

/* --- KARTY (PANELE DYNAMICZNE Z KOLORAMI) --- */
.panel-item { 
    background: linear-gradient(145deg, #0d0d0d, #050505); 
    border: 1px solid #1a1a1a; 
    padding: 50px 40px; 
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    
    /* DOMYŚLNY KOLOR (ZIELONY) - nadpisywany przez klasy poniżej */
    --p-color: var(--accent); 
}

/* DEFINICJE MOTYWÓW KOLORYSTYCZNYCH (Module Class Suffix) */
.panel-item.color-gold   { --p-color: #ffb700; } /* Recenzje / Premium */
.panel-item.color-blue   { --p-color: #00d2ff; } /* IT / Technologie */
.panel-item.color-purple { --p-color: #b829ff; } /* Blog / Nowości */
.panel-item.color-red    { --p-color: #ff4141; } /* YouTube / Alerty */

.panel-item::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 2px;
    background: var(--p-color); /* Automatycznie dziedziczy wybrany kolor */
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.panel-item:hover { 
    border-color: var(--p-color); 
    transform: translateY(-12px); 
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); 
}

.panel-item:hover::before { 
    transform: scaleX(1); 
}

.panel-item h3 { 
    color: var(--p-color); 
    font-size: 1.6rem; 
    margin-bottom: 20px; 
    font-weight: 900; 
}

.panel-item p { 
    color: #888; 
    font-size: 0.95rem; 
    line-height: 1.6; 
    margin-bottom: 25px; 
}

.panel-link { 
    color: #fff; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    border-bottom: 1px solid #333;
    padding-bottom: 5px; 
    transition: 0.3s;
}

.panel-item:hover .panel-link { 
    border-color: var(--p-color); 
    color: var(--p-color); 
}

/* WSTĄŻKA W ROGU KAFELKA (ODZNAKA) */
.panel-badge {
    position: absolute;
    top: 25px;
    right: -40px;
    background: var(--p-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

/* --- UTILS & FOOTER --- */
/* --- UTILS & FOOTER --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 15px; /* Odstęp między dymkiem a ikoną */
}

/* CHMURKA (TOOLTIP) WA */
.wa-bubble {
    background: #111;
    color: #fff;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0,255,65,0.1);
    position: relative;
    animation: floatBubble 3s ease-in-out infinite; /* Subtelne unoszenie się w miejscu */
}

/* Mały trójkącik dymku celujący w ikonę */
.wa-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px; /* Wystaje z prawej strony */
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--accent);
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* KONTRASTOWA IKONA WA */
.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent); /* Jasnozielone tło koła */
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float a svg { 
    width: 35px; 
    height: 35px;
    transition: transform 0.3s ease;
    /* Ciemne wnętrze logo tworzy potężny kontrast z zielenią! */
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 255, 65, 0.6);
}

.whatsapp-float a:hover svg {
    transform: scale(1.1);
}

/* Na telefonach mało miejsca – ukrywamy tylko dymek, zostawiamy potężną ikonę */
@media (max-width: 768px) {
    .wa-bubble { display: none; }
}

.footer { 
    background: var(--bg-dark); 
    border-top: 1px solid #1a1a1a; 
    padding: 50px 0; 
    font-size: 0.9rem; 
    color: #666; 
}

.copyright { 
    margin-top: 20px; 
    text-align: center; 
    border-top: 1px solid #111; 
    padding-top: 20px; 
}

/* HERO SLIDER CORE */
.weywot-hero-slider { 
    position: relative; 
    width: 100%; 
    height: 75vh; 
    background: #000; 
    overflow: hidden; 
}

.hero-slide { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
    display: flex; 
    align-items: center; 
}

.hero-slide.active { 
    opacity: 1; 
    z-index: 10; 
}

.hero-bg-image { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center; 
    filter: brightness(0.4); 
}

.hero-letter { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    font-size: 60vh; 
    font-weight: 900; 
    color: rgba(0, 255, 65, 0.05); 
    z-index: 1; 
    pointer-events: none; 
    line-height: 1;
}

.hero-text-box { 
    position: relative; 
    z-index: 5; 
    text-align: center; 
    max-width: 800px; 
    margin: 0 auto; 
}

.hero-text-box h1 { 
    font-size: 4rem; 
    font-weight: 900; 
    margin-bottom: 20px; 
    color: #fff; 
}

.hero-text-box p { 
    font-size: 1.2rem; 
    color: #ccc; 
    margin-bottom: 30px; 
    line-height: 1.6; 
}

.btn-hero { 
    display: inline-block; 
    padding: 15px 45px; 
    border: 2px solid var(--accent); 
    color: var(--accent); 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: 900; 
    letter-spacing: 2px; 
    transition: 0.3s;
}

.btn-hero:hover { 
    background: var(--accent); 
    color: #000; 
    box-shadow: 0 0 30px rgba(0,255,65,0.4); 
}

/* --- STREFA KONTA UŻYTKOWNIKA (COM_USERS) --- */
.dark-profile-zone { 
    background: #0a0b0c; 
    color: #f4f4f4; 
    padding: 80px 0; 
    min-height: 600px; 
}

.dark-profile-zone h1, 
.dark-profile-zone h2 { 
    color: var(--accent); 
    border-left: 5px solid var(--accent); 
    padding-left: 15px; 
    margin-bottom: 30px; 
    font-weight: 900; 
}

.dark-profile-zone fieldset { 
    border: 1px solid #222; 
    background: #111; 
    border-radius: 12px; 
    padding: 30px; 
    margin-bottom: 30px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    border-top-left-radius: 0; 
    margin-top: -30px; 
}

.dark-profile-zone legend { 
    display: none !important; 
}

.dark-profile-zone dt { 
    color: #888; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    font-weight: bold; 
    margin-top: 15px; 
}

.dark-profile-zone dd { 
    color: #fff; 
    font-size: 1.1rem; 
    margin-bottom: 15px; 
    margin-left: 0; 
    padding-bottom: 15px; 
    border-bottom: 1px dashed #333; 
}

.dark-profile-zone dd:last-child { 
    border-bottom: none; 
    margin-bottom: 0; 
    padding-bottom: 0; 
}

.dark-profile-zone a { 
    color: var(--accent); 
    text-decoration: none; 
    font-weight: bold; 
}

.dark-profile-zone a:hover { 
    color: #fff; 
}

.dark-profile-zone .btn { 
    display: inline-block; 
    background: var(--accent); 
    color: #000; 
    border: none; 
    padding: 10px 25px; 
    border-radius: 30px; 
    font-weight: 900; 
    cursor: pointer; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: 0.3s; 
    text-decoration: none; 
    margin-top: 15px; 
}

.dark-profile-zone .btn:hover { 
    background: #00cc33; 
    color: #fff; 
}

/* --- ZAKŁADKI (TABS) W PROFILU --- */
.weywot-tabs { 
    display: flex; 
    flex-wrap: wrap; 
    list-style: none; 
    padding: 0; 
    margin: 0 0 30px 0; 
    border-bottom: 2px solid #222; 
    gap: 5px; 
}

.weywot-tab-btn { 
    padding: 12px 25px; 
    background: #111; 
    color: #888; 
    border-radius: 8px 8px 0 0; 
    cursor: pointer; 
    font-weight: 900; 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    letter-spacing: 1px; 
    transition: 0.3s ease; 
    border: 1px solid #222; 
    border-bottom: none; 
}

.weywot-tab-btn:hover { 
    color: #fff; 
    background: #1a1a1a; 
}

.weywot-tab-btn.active { 
    background: var(--accent); 
    color: #000; 
    border-color: var(--accent); 
}

/* --- CZYSZCZENIE PROFILU UŻYTKOWNIKA (STEALTH) --- */
.dark-profile-zone .page-header { 
    display: none !important; 
}

.dark-profile-zone ul { 
    list-style: none; 
    padding: 0; 
    margin: 0 0 25px 0; 
}

.dark-profile-zone ul li { 
    display: inline-block; 
}

.dark-profile-zone p { 
    color: #ccc; 
    font-size: 0.9rem; 
    line-height: 1.6; 
}

/* --- FORMULARZE EDYCJI PROFILU --- */
.dark-profile-zone label { 
    display: block; 
    color: var(--accent); 
    font-size: 0.85rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 8px; 
    margin-top: 20px; 
}

.dark-profile-zone input[type="text"], 
.dark-profile-zone input[type="password"], 
.dark-profile-zone input[type="email"], 
.dark-profile-zone select { 
    width: 100%; 
    max-width: 450px; 
    background: #0d0d0d; 
    border: 1px solid #333; 
    color: #fff; 
    padding: 12px 15px; 
    border-radius: 8px; 
    font-family: 'Quicksand', sans-serif; 
    font-size: 1rem; 
    transition: all 0.3s ease; 
}

.dark-profile-zone input:focus, 
.dark-profile-zone select:focus { 
    border-color: var(--accent); 
    outline: none; 
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.15); 
}

.dark-profile-zone .form-text, 
.dark-profile-zone small { 
    display: block; 
    color: #777; 
    font-size: 0.8rem; 
    margin-top: 8px; 
    margin-bottom: 10px; 
}

.dark-profile-zone .input-group { 
    display: flex; 
    align-items: stretch; 
    gap: 10px; 
    max-width: 600px; 
}

.dark-profile-zone .input-group input { 
    margin: 0; 
    flex: 1; 
}

.dark-profile-zone .input-group button.btn { 
    background: transparent; 
    border: 1px solid #333; 
    color: #888; 
    padding: 0 20px; 
    font-size: 0.8rem; 
    border-radius: 8px; 
    margin: 0; 
    height: auto; 
}

.dark-profile-zone .input-group button.btn:hover { 
    background: #111; 
    border-color: var(--accent); 
    color: var(--accent); 
}

.dark-profile-zone .form-actions { 
    margin-top: 40px; 
    padding-top: 25px; 
    border-top: 1px dashed #333; 
    display: flex; 
    gap: 15px; 
}

.dark-profile-zone .form-actions button.btn-primary { 
    background: var(--accent); 
    color: #000; 
    border: none; 
    font-weight: 900; 
    padding: 12px 35px; 
    border-radius: 30px; 
}

.dark-profile-zone .form-actions button.btn-primary:hover { 
    background: #00cc33; 
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4); 
}

.dark-profile-zone .form-actions a.btn { 
    background: #111; 
    color: #fff; 
    border: 1px solid #333; 
}

.dark-profile-zone .form-actions a.btn:hover { 
    background: #1a1a1a; 
    border-color: #ff4141; 
    color: #ff4141; 
}

/* --- CHOICES.JS --- */
.dark-profile-zone .choices__inner { 
    background-color: #0d0d0d !important; 
    border: 1px solid #333 !important; 
    border-radius: 8px !important; 
    color: #fff !important; 
    min-height: 44px; 
    padding: 6px 15px !important; 
}

.dark-profile-zone .choices__list--single { 
    padding: 0 !important; 
}

.dark-profile-zone .choices__list--single .choices__item { 
    color: #fff !important; 
    margin-top: 3px; 
}

.dark-profile-zone .choices__list--dropdown { 
    background-color: #111 !important; 
    border: 1px solid var(--accent) !important; 
    color: #fff !important; 
    border-radius: 8px !important; 
    box-shadow: 0 10px 30px rgba(0,255,65,0.1); 
}

.dark-profile-zone .choices__input--cloned { 
    background-color: #000 !important; 
    border: 1px solid #333 !important; 
    color: #fff !important; 
}

.dark-profile-zone .choices__list--dropdown .choices__item { 
    color: #ccc !important; 
    transition: 0.2s ease; 
}

.dark-profile-zone .choices__list--dropdown .choices__item--selectable.is-highlighted { 
    background-color: var(--accent) !important; 
    color: #000 !important; 
}

.dark-profile-zone .choices__button { 
    filter: invert(1) brightness(2); 
    border-left: 1px solid #333 !important; 
    margin-top: 0 !important; 
}

/* --- POWRÓT NA GÓRĘ (BACK TO TOP) --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px; 
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.3);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #00cc33;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 65, 0.5);
}

/* =========================================
   NOWOŚĆ: UKŁAD Z SIDEBAREM (ARTYKUŁY/BLOG)
========================================= */
.layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px; /* Treść zajmuje większość, sidebar ma 350px */
    gap: 50px;
    align-items: start;
}

.sticky-sidebar {
    position: sticky;
    top: 100px; /* Przykleja się do góry podczas przewijania */
}

/* Moduły wewnątrz Sidebaru */
.sidebar-right .panel-item {
    background: #ffffff; /* Jasne tło w szarej strefie */
    border: 1px solid #ddd;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    /* Upewnijmy się, że zachowuje kolor czcionki w szarej strefie */
    color: #333; 
}
.sidebar-right .panel-item h3 { 
    color: #111; 
    font-size: 1.3rem; 
    margin-bottom: 15px; 
    border-left: 3px solid var(--accent); 
    padding-left: 10px; 
}
.sidebar-right .panel-item p { color: #555; font-size: 0.95rem; }

/* RWD Sidebaru (Na telefonach spada pod treść) */
@media (max-width: 992px) {
    .layout-with-sidebar { grid-template-columns: 1fr; }
    .sticky-sidebar { position: static; }
}

/* =========================================
   NOWOŚĆ: REAKCJE FB (OCENY) I REKLAMY
========================================= */
.article-ad-box {
    background: #f9f9f9;
    border: 1px dashed #ccc;
    text-align: center;
    padding: 20px;
    margin: 40px 0;
    color: #999;
    font-size: 0.8rem;
    border-radius: 8px;
}

.reaction-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.reaction-title {
    font-weight: 900;
    color: #111;
    margin-right: 15px;
}

.reaction-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    color: #555;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reaction-btn:hover {
    background: #f0f0f0;
    border-color: #bbb;
}

.reaction-btn.like:hover { color: #1877F2; border-color: #1877F2; } /* Kolor FB */
.reaction-btn.love:hover { color: #F33E58; border-color: #F33E58; } /* Czerwony */
.reaction-btn.wow:hover { color: #F7B125; border-color: #F7B125; }  /* Złoty */

.reaction-count {
    background: #eee;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #333;
}
/* =========================================
   NOWOŚĆ: LICZNIKI STATYSTYK (COUNTERS)
========================================= */
.stats-zone {
    background: #000; /* Mroczne tło, odcinające się od jasnej góry */
    padding: 80px 0;
    border-bottom: 1px solid #111;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 liczniki obok siebie */
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent); /* Zielony Neonowy */
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.3); /* Lekka zielona poświata */
}

.stat-suffix {
    font-size: 2.5rem;
    color: var(--accent);
    margin-left: 2px;
}

.stat-label {
    color: #888;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

/* RWD dla liczników */
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
}
/* =========================================
   NOWOŚĆ: PORTFOLIO (JASNA STREFA)
========================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ddd;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,255,65,0.15); /* Subtelny zielony glow */
    border-color: var(--accent);
}

.portfolio-img {
    width: 100%;
    height: 220px;
    background-color: #111;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--accent);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-category {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.portfolio-title {
    color: #111;
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    font-weight: 900;
}

.portfolio-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-link {
    color: #111;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 3px;
    transition: color 0.3s;
}

.portfolio-link:hover {
    color: var(--accent);
}
/* =========================================
   MEGA-STOPKA (FOOTER 4 KOLUMNY)
========================================= */
.footer { 
    background: #050505; /* Maksymalnie głęboka czerń */
    border-top: 1px solid #1a1a1a; 
    padding: 70px 0 30px; 
    font-size: 0.9rem; 
    color: #888; 
}

.footer-grid-4 { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px; 
    margin-bottom: 40px; 
}

.footer-col h4 { 
    color: #fff; 
    font-size: 1.1rem; 
    margin-bottom: 25px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    border-bottom: 2px solid var(--accent); 
    display: inline-block; 
    padding-bottom: 5px; 
}

.footer-col p { line-height: 1.7; margin-bottom: 15px; }

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { 
    color: #888; 
    text-decoration: none; 
    transition: 0.3s; 
    display: inline-block; 
}

.footer-col ul li a:hover { 
    color: var(--accent); 
    transform: translateX(5px); /* Subtelne przesunięcie w prawo po najechaniu */
}

/* Ikony Social Media w stopce */
.footer-socials { 
    display: flex; 
    gap: 15px; 
    margin-top: 20px; 
}

.footer-socials a { 
    color: #fff; 
    background: #111; 
    width: 40px; 
    height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    transition: 0.3s; 
    text-decoration: none; 
    font-weight: bold; 
    border: 1px solid #222;
}

.footer-socials a:hover { 
    background: var(--accent); 
    color: #000; 
    transform: translateY(-5px); 
    box-shadow: 0 5px 15px rgba(0,255,65,0.3); 
    border-color: var(--accent);
}

/* Responsywność Stopki */
@media (max-width: 992px) { 
    .footer-grid-4 { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 576px) { 
    .footer-grid-4 { grid-template-columns: 1fr; } 
}
/* =========================================
   NOWOŚĆ: KARUZELA LOGOTYPÓW (INFINITE MARQUEE)
========================================= */
.marquee-zone {
    background: #000; /* Utrzymujemy mroczny klimat */
    padding: 50px 0;
    border-bottom: 1px solid #111;
    overflow: hidden;
    position: relative;
    display: flex;
}

/* Cienie na bokach (Fade out effect) */
.marquee-zone::before, 
.marquee-zone::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Żeby nie blokowało klikania */
}
.marquee-zone::before { left: 0; background: linear-gradient(to right, #000 0%, transparent 100%); }
.marquee-zone::after { right: 0; background: linear-gradient(to left, #000 0%, transparent 100%); }

.marquee-content {
    display: flex;
    width: max-content;
    animation: scrollMarquee 35s linear infinite; /* 35s - idealna prędkość czytania */
}

/* Zatrzymanie po najechaniu myszką */
.marquee-content:hover {
    animation-play-state: paused; 
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 50px; /* Odstępy między logo */
    opacity: 0.4;
    transition: all 0.4s ease;
    filter: grayscale(100%); /* Wszystko domyślnie czarno-białe */
    cursor: default;
}

/* Efekt najechania (Hover) - powrót kolorów i wyostrzenie */
.marquee-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Style dla tekstu zastępczego (zanim wgrasz grafiki) */
.marquee-item span {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Klatki kluczowe animacji (przesuwamy o połowę szerokości, bo treść klonujemy) */
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}
/* =========================================
   NOWOŚĆ: AKORDEON FAQ (BEZ JS)
========================================= */
.faq-zone {
    background: #0a0b0c; /* Głęboki, elegancki mrok, idealny przed stopką */
    padding: 100px 0;
    border-top: 1px solid #1a1a1a;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.faq-header p {
    color: #888;
    font-size: 1.1rem;
}

.faq-item {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.05);
}

.faq-item details {
    width: 100%;
}

.faq-item summary {
    padding: 22px 30px;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    list-style: none; /* Ukrywa domyślną strzałkę przeglądarki */
    position: relative;
    outline: none;
    transition: 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Ukrywa strzałkę w Chrome/Safari */
}

/* Customowy plus animowany do minusa */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 400;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

/* Wygląd OTWARTY */
.faq-item details[open] summary {
    color: var(--accent);
    border-bottom: 1px dashed #333;
    padding-bottom: 20px;
}

.faq-item details[open] summary::after {
    content: '−'; /* Zamiana na minus */
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 25px 30px;
    color: #aaa;
    line-height: 1.8;
    font-size: 1rem;
    background: #0d0d0d;
    border-top: 1px solid #1a1a1a;
}
/* =========================================
   NOWOŚĆ: FINALNE CTA (CALL TO ACTION)
========================================= */
.cta-zone {
    background: linear-gradient(135deg, #050505 0%, #0a0b0c 100%);
    padding: 120px 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    border-bottom: 3px solid var(--accent); /* Gruby zielony pasek przed stopką */
    position: relative;
    overflow: hidden;
}

/* Subtelna zielona poświata w tle (Glow effect) */
.cta-zone::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Akcentowanie słów kluczowych na zielono */
.cta-content h2 span {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.cta-content p {
    color: #aaa;
    font-size: 1.2rem;
    margin-bottom: 45px;
    line-height: 1.6;
}

/* MEGA PRZYCISK */
.btn-cta-mega {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 22px 55px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
    border: 2px solid var(--accent);
}

.btn-cta-mega:hover {
    background: #000;
    color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.5);
    transform: translateY(-8px);
}

/* RWD - Telefony */
@media (max-width: 768px) {
    .cta-zone { padding: 80px 0; }
    .cta-content h2 { font-size: 2.2rem; }
    .btn-cta-mega { padding: 18px 40px; font-size: 1rem; }
}
/* =========================================
   PODSTRONA: KONTAKT (WYSOKI KONTRAST)
========================================= */
.contact-wrap { 
    padding: 60px 0; 
}

.contact-grid { 
    display: grid; 
    /* ZMIANA: Formularz ma teraz dużo więcej miejsca (proporcja 5 do 7) */
    grid-template-columns: 5fr 7fr; 
    gap: 60px; 
    /* ZMIANA: Równamy do góry, a nie do środka */
    align-items: start; 
}

.contact-info h1 { 
    font-size: 3.5rem; 
    font-weight: 900; 
    margin-bottom: 20px; 
    color: #111; /* Ciemny tekst dla jasnego tła */
    border-left: 5px solid var(--accent); 
    padding-left: 20px; 
    line-height: 1.1;
}

.contact-info p { 
    color: #555; /* Ciemniejszy szary */
    font-size: 1.2rem; 
    line-height: 1.7; 
    margin-bottom: 40px; 
}

.contact-details { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.contact-details li { 
    display: flex; 
    align-items: center; 
    margin-bottom: 25px; 
    color: #333; /* Ciemny tekst */
    font-size: 1.1rem; 
}

.contact-details li span.c-icon { 
    color: #000; 
    background: var(--accent);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    margin-right: 20px; 
    font-size: 1.2rem;
}

.contact-details li strong {
    display: block;
    font-size: 0.85rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
    font-weight: 900;
}

/* Pancerny Formularz w czerni */
.contact-form-box { 
    background: #0a0b0c; 
    padding: 50px; 
    border-radius: 15px; 
    border: 1px solid #1a1a1a; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.2); 
    position: relative;
}

/* Zielony pasek na górze formularza */
.contact-form-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--accent);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.contact-form-box .form-group { 
    margin-bottom: 25px; 
}

.contact-form-box label { 
    display: block; 
    color: #888; 
    font-size: 0.85rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    margin-bottom: 10px; 
    letter-spacing: 1px; 
}

.contact-form-box input, 
.contact-form-box textarea,
.contact-form-box select { 
    width: 100%; 
    background: #111; 
    border: 1px solid #222; 
    color: #fff; 
    padding: 18px; 
    border-radius: 8px; 
    font-family: 'Quicksand', sans-serif; 
    font-size: 1rem; 
    transition: 0.3s; 
    box-sizing: border-box; 
}

.contact-form-box input:focus, 
.contact-form-box textarea:focus,
.contact-form-box select:focus { 
    border-color: var(--accent); 
    outline: none; 
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.1); 
    background: #000;
}

.contact-form-box button { 
    width: 100%; 
    background: var(--accent); 
    color: #000; 
    border: none; 
    padding: 20px; 
    font-size: 1.1rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: 0.3s; 
    margin-top: 10px; 
}

.contact-form-box button:hover { 
    background: #00cc33; 
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.4); 
    transform: translateY(-3px); 
}

/* Dwa pola obok siebie */
.contact-form-box .form-row {
    display: flex;
    gap: 20px;
}
.contact-form-box .form-row .form-group {
    flex: 1;
}

/* Styl dla Checkboxa Zgody */
.contact-form-box .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 25px;
}
.contact-form-box .checkbox-group input[type="checkbox"] {
    width: 22px; /* Resetujemy domyślne 100% */
    height: 22px;
    margin: 2px 0 0 0;
    cursor: pointer;
    accent-color: var(--accent); /* Zielony kolor po zaznaczeniu */
}
.contact-form-box .checkbox-group label {
    text-transform: none; /* Wyłączamy wielkie litery */
    font-weight: normal;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: normal;
    cursor: pointer;
}

/* RWD dla Kontaktu */
@media (max-width: 992px) { 
    .contact-grid { grid-template-columns: 1fr; gap: 40px; } 
    .contact-info h1 { font-size: 2.5rem; }
    .contact-form-box { padding: 30px; }
}

/* RWD: Na telefonach pola w rzędzie spadają jedno pod drugie */
@media (max-width: 768px) {
    .contact-form-box .form-row { flex-direction: column; gap: 0; }
}
/* Poprawka dla kolorowych paneli w sidebarze */
.sidebar-right .panel-item.color-gold {
    background: #0d0d0d; /* Zmieniamy na ciemne, by złoto "świeciło" */
    color: #fff;
    border: 1px solid #ffb700;
}

.sidebar-right .panel-item.color-gold h3 {
    color: #ffb700;
    border-left: 5px solid #ffb700;
}

.sidebar-right .panel-item.color-gold p {
    color: #ccc;
}
/* =========================================
   WEYWOT COOKIE WALL (RODO)
========================================= */
#cookie-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px); /* Przyciemnienie i rozmycie ekranu */
    z-index: 9999;
    align-items: center;
    justify-content: center;
    /* display: none; usunięto - zarządza tym PHP */
}

.cookie-box {
    background: #0d0d0d;
    border: 1px solid var(--accent);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.2);
    position: relative;
    margin: 20px;
}

.cookie-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
    animation: cookieFloat 3s ease-in-out infinite;
}

@keyframes cookieFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

.cookie-box h2 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 900;
}

.cookie-box p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.btn-cookie-accept {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-cookie-accept:hover {
    background: #00cc33;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.btn-cookie-settings {
    background: transparent;
    color: #888;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: none;
}
/* =========================================
   KOMUNIKATY SYSTEMOWE (JMESSAGE / ALERTY)
========================================= */
#system-message-container {
    margin-bottom: 30px;
    width: 100%;
}

/* Joomla 4/5 używa custom tagów <joomla-alert> lub klas .alert */
joomla-alert,
.alert {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-left: 5px solid #555; /* Domyślny szary dla nieznanych komunikatów */
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: slideInAlert 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Kolory w zależności od typu komunikatu (Sukces, Błąd, Info, Ostrzeżenie) */
joomla-alert[type="success"], .alert-success { border-left-color: var(--accent); } /* Zielony Weywot */
joomla-alert[type="danger"], .alert-error, .alert-danger { border-left-color: #ff4141; } /* Czerwony */
joomla-alert[type="warning"], .alert-warning { border-left-color: #ffb700; } /* Złoty */
joomla-alert[type="info"], .alert-info { border-left-color: #00d2ff; } /* Niebieski */

/* Treść komunikatu */
.alert-heading,
joomla-alert .alert-title {
    font-weight: 900;
    margin: 0 15px 0 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #fff;
}

.alert-message,
joomla-alert .alert-message {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0;
}

/* Animacja wjazdu powiadomienia */
@keyframes slideInAlert {
    from { transform: translateY(-15px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* =========================================
   WEYWOT CASE STUDY (PORTFOLIO)
========================================= */
.weywot-case-study { background: #070708; color: #ccc; padding-bottom: 80px; }

/* Baner górny (Hero) */
.cs-hero { position: relative; width: 100%; height: 50vh; min-height: 400px; background-size: cover; background-position: center; background-attachment: fixed; }
.cs-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, #070708 100%); display: flex; align-items: flex-end; padding-bottom: 50px; }
.cs-hero-no-img { padding: 80px 0 40px; background: #0a0b0c; border-bottom: 1px solid #1a1a1a; }

.cs-badge { background: var(--accent); color: #000; font-size: 0.8rem; font-weight: 900; padding: 5px 15px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; display: inline-block; margin-bottom: 15px; }
.cs-title { color: #fff; font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin: 0; text-transform: uppercase; }

/* Układ Grid (Treść vs Sidebar) */
.cs-content-wrapper { margin-top: 50px; }
.cs-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }

.cs-main-text { font-size: 1.1rem; line-height: 1.8; color: #bbb; }
.cs-main-text h2, .cs-main-text h3 { color: #fff; margin-top: 40px; border-left: 4px solid var(--accent); padding-left: 15px; }

/* Lista technologii w bocznym panelu */
.cs-tech-list { list-style: none; padding: 0; margin: 0; }
.cs-tech-list li { margin-bottom: 15px; position: relative; padding-left: 25px; color: #fff; font-weight: bold; }
.cs-tech-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 900; }

/* Automatyczna Galeria (Generowana przez JS) */
.cs-auto-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 50px; border-top: 1px dashed #333; padding-top: 40px; }
.cs-gallery-item { border-radius: 12px; overflow: hidden; border: 1px solid #1a1a1a; }
.cs-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: 0.4s; }
.cs-gallery-item:hover img { transform: scale(1.05); }

/* RWD */
@media (max-width: 992px) { .cs-grid { grid-template-columns: 1fr; } .cs-title { font-size: 2.5rem; } }
@media (max-width: 768px) { .cs-auto-gallery { grid-template-columns: 1fr; } }

/* =========================================
   SILNIK RWD: WYSUWANE MENU MOBILNE & ZEGAR
========================================= */

/* Ukrywamy hamburger na komputerach desktopowych */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}
.mobile-menu-toggle span {
    display: block;
    width: 35px;
    height: 3px;
    background: var(--accent);
    transition: 0.4s ease;
    border-radius: 2px;
}

/* WŁĄCZENIE TRYBU TABLET / SMARTFON (Poniżej 992px) */
@media (max-width: 992px) {
    /* 1. UKRYWAMY ZEGAR I POGODĘ */
    .weather-bar {
        display: none !important;
    }

    /* 2. ODPALAMY HAMBURGER */
    .mobile-menu-toggle {
        display: flex;
    }

    /* 3. CHOWAMY NAWIGACJĘ POZA EKRAN (Prawy panel) */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Ukryte całkowicie w prawo */
        width: 320px;
        max-width: 100vw;
        height: 100vh;
        background: rgba(7, 7, 8, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 120px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1500;
        box-shadow: -10px 0 50px rgba(0,0,0,0.8);
    }

    /* Formatowanie linków menu wewnątrz panelu */
    .weywot-nav {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .weywot-nav .nav-link {
        font-size: 1.3rem;
    }

    /* 4. CHOWAMY PRZYCISKI LOGOWANIA (Wyjadą razem z menu na dole) */
    .user-access {
        position: fixed;
        bottom: 40px;
        right: -100%;
        width: 320px;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1501;
    }

    /* 5. CO SIĘ DZIEJE PO KLIKNIĘCIU (Dodana klasa .menu-open przez JS) */
    body.menu-open .main-nav,
    body.menu-open .user-access {
        right: 0; /* Menu wjeżdża z prawej strony! */
    }

    /* Animacja przekształcania Hamburgera w "X" */
    body.menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    body.menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    body.menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* 6. CIEMNE TŁO POD MENU (Overlay) */
    .menu-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.7);
        z-index: 1400;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }
    body.menu-open .menu-overlay {
        opacity: 1;
        visibility: visible;
    }
}