:root {
            --bg-color: #0b0b0b;
            --card-bg: #111111;
            --primary-green: #19b946;
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --border-color: #222222;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 10%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(11, 11, 11, 0.8);
            backdrop-filter: blur(12.5px);
        }

        .logo {
            font-size: 30px;
            font-weight: 800;
            cursor: pointer;
        }

        .logo span { color: var(--primary-green); }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 37.5px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-main);
            font-size: 17.5px;
            font-weight: 600;
            transition: var(--transition);
        }

        .nav-links a:hover { color: var(--primary-green); }

        .hero {
            padding: 187.5px 10% 100px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 100vh;
        }

        .hero-content { max-width: 625px; animation: fadeInUp 1s ease; }

        .hero-content h1 { font-size: 80px; font-weight: 800; margin-bottom: 25px; }
        .hero-content h1 span { color: var(--primary-green); }
        .hero-content p { color: var(--text-muted); margin-bottom: 43.75px; font-size: 20px; }

        .hero-btns { display: flex; gap: 18.75px; }

        .btn {
            padding: 15px 43.75px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 800;
            font-size: 17.5px;
            transition: var(--transition);
            display: inline-block;
        }

        .btn-green { background: var(--primary-green); color: white; border: 2.5px solid var(--primary-green); }
        .btn-green:hover { background: #159d3b; transform: translateY(-3.75px); box-shadow: 0 12.5px 25px rgba(25, 185, 70, 0.2); }

        .btn-outline { border: 2.5px solid white; color: white; }
        .btn-outline:hover { background: white; color: black; transform: translateY(-3.75px); }

        .hero-img img { width: 562.5px; animation: float 6s ease-in-out infinite; }

        section { padding: 100px 10%; text-align: center; }

        .section-title { font-size: 40px; font-weight: 800; text-transform: uppercase; margin-bottom: 62.5px; }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 37.5px;
        }

        .product-card {
            background: var(--card-bg);
            border-radius: 25px;
            padding: 50px 37.5px;
            border: 1.25px solid var(--border-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .product-card:hover { border-color: var(--primary-green); transform: translateY(-12.5px); }

        .product-card img { width: 125px; height: 125px; margin-bottom: 25px; }
        .product-card h3 { font-size: 25px; font-weight: 800; margin-bottom: 6.25px; }
        .product-badge {
            background: rgba(25, 185, 70, 0.1);
            color: var(--primary-green);
            font-size: 13.75px;
            font-weight: 800;
            padding: 5px 15px;
            border-radius: 25px;
            display: inline-block;
            margin-bottom: 18.75px;
        }

        .price { font-size: 17.5px; font-weight: 700; color: var(--text-muted); margin-bottom: 25px; }
        .product-desc { font-size: 16.25px; color: var(--text-muted); margin-bottom: 37.5px; }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
        }

        .feature-card {
            background: var(--card-bg);
            padding: 50px 37.5px;
            border-radius: 25px;
            text-align: center;
        }

        .feature-icon {
            font-size: 43.75px;
            color: white;
            margin-bottom: 25px;
            display: block;
        }

        .feature-card h4 { font-weight: 800; margin-bottom: 12.5px; }
        .feature-card p { color: var(--text-muted); font-size: 17.5px; }

        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(6.25px);
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--card-bg);
            width: 100%;
            max-width: 562.5px;
            padding: 50px;
            border-radius: 25px;
            border: 1.25px solid var(--border-color);
            position: relative;
            animation: zoomIn 0.3s ease;
        }

        .modal-header h2 { font-size: 30px; font-weight: 800; margin-bottom: 12.5px; text-align: left;}
        .modal-header h2 span { color: var(--primary-green); }
        .close-btn { position: absolute; top: 25px; right: 31.25px; color: var(--text-muted); cursor: pointer; font-size: 30px; }

        .form-group { margin-bottom: 25px; text-align: left; }
        .form-group label { display: block; font-size: 15px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; margin-bottom: 10px; }

        .input-field {
            width: 100%;
            background: #1a1a1a;
            border: 2.5px solid #222;
            border-radius: 15px;
            padding: 15px 18.75px;
            color: white;
            font-family: inherit;
        }

        .input-field:focus { outline: none; border-color: var(--primary-green); }

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(37.5px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-25px); } }

        .feature-card h4 { font-weight: 800; margin-bottom: 12.5px; }
        .feature-card p { color: var(--text-muted); font-size: 17.5px; }
        footer { 
            padding: 50px 10%; 
            text-align: center; 
            border-top: 1.25px solid #111; 
            position: relative; 
        }
        .footer-copyright { font-size: 13.75px; color: #444; margin-top: 25px; text-transform: uppercase; }
        .footer__author__h5 {
            position: absolute;
            bottom: 20px;
            right: 10%;
            font-size: 12px;
            color: #444;
            font-weight: 400;
        }
        .footer__author__h5 a {
            color: #666;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer__author__h5 a:hover {
            color: var(--primary-green);
        }
        .footer-copyright { font-size: 13.75px; color: #444; margin-top: 25px; text-transform: uppercase; }

@media (max-width: 960px) {
    nav {
        padding: 18.75px 5%;
    }
    .nav-links {
        display: none; 
    }

    .hero {
        flex-direction: column; 
        text-align: center;
        padding: 125px 5% 50px;
    }
    .hero-content h1 {
        font-size: 52.5px; 
    }
    .hero-img img {
        width: 100%; 
        max-width: 375px;
        margin-top: 50px;
    }
    .hero-btns {
        justify-content: center;
        flex-direction: column; 
        gap: 12.5px;
    }

    section {
        padding: 50px 5%;
    }
    .section-title {
        font-size: 32.5px;
    }
    .products-grid {
        grid-template-columns: 1fr; 
    }

    .modal-content {
        width: 95%; 
        padding: 31.25px;
    }
    .modal-header h2 {
        font-size: 25px;
    }
    .payment-buttons {
        grid-template-columns: 1fr; 
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    footer {
        padding: 37.5px 5%;
    }
    .footer__author__h5 {
                position: static;
                margin-top: 25px;
                text-align: center;
            }
}
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary-green);
    z-index: 1001;
}

@media (max-width: 960px) {
    .hamburger {
        display: block; 
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%;
        height: 125vh;
        background: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(18.75px);
        transition: 0.4s ease-in-out;
        gap: 50px;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 27.5px; 
        font-weight: 800;
    }
}
    </style>
    <style>
    :root {
        --primary-green: #19b946;
        --card-bg: #111111;
        --input-bg: #1a1a1a;
        --text-muted: #a0a0a0;
        --border-color: #222222;
    }

    /* Tło Modala */
    .modal {
        background-color: rgba(0,0,0,0.85);
        backdrop-filter: blur(5px);
    }

    /* Kontener Modala */
    .modal-content {
        background-color: var(--card-bg) !important;
        max-width: 480px !important;
        border-radius: 20px !important;
        padding: 40px !important;
        border: 1px solid var(--border-color) !important;
        color: white;
        position: relative;
    }

    .close {
        position: absolute;
        top: 20px;
        right: 25px;
        color: var(--text-muted);
        font-size: 28px;
        transition: 0.2s;
    }
    .close:hover { color: white; }

    .modal-content h2 { font-weight: 800; font-size: 24px; margin-bottom: 10px; text-align: left; }
    .modal-content h2 span { color: var(--primary-green); }
    .modal-content p { color: var(--text-muted); font-size: 14px; margin-bottom: 25px; text-align: left; }

    /* Inputy */
    label {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }

    .email, .input-promo {
        width: 100%;
        background: var(--input-bg);
        border: 2px solid var(--border-color);
        border-radius: 12px;
        padding: 12px 15px;
        color: white;
        font-family: inherit;
        box-sizing: border-box;
        margin-bottom: 20px;
        transition: 0.3s;
    }
    .email:focus { border-color: var(--primary-green); outline: none; box-shadow: 0 0 10px rgba(25, 185, 70, 0.2); }

    /* Sekcja Discord */
    #discord-info-mc {
        background: rgba(25, 185, 70, 0.1);
        padding: 15px;
        border-radius: 12px;
        border: 1px solid var(--primary-green);
        margin-bottom: 20px;
        font-size: 14px;
    }

    .discord-login-btn {
        background: #5865F2;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
        border-radius: 12px;
        font-weight: 600;
        gap: 10px;
        transition: 0.3s;
    }
    .discord-login-btn:hover { background: #4752C4; }

    /* Wybór płatności */
    .payment-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 10px;
    }

    .payment-btn {
        background: var(--input-bg);
        border: 2px solid var(--border-color);
        border-radius: 12px;
        padding: 15px 10px;
        cursor: pointer;
        font-weight: 700;
        font-size: 13px;
        text-align: center;
        transition: 0.2s;
        display: block;
    }

    input[type="radio"]:checked + .payment-btn {
        border-color: var(--primary-green);
        background: rgba(25, 185, 70, 0.05);
        color: var(--primary-green);
    }

    /* Przycisk Kupna */
    .buy-button {
        width: 100%;
        background: var(--primary-green) !important;
        border: none !important;
        padding: 16px !important;
        border-radius: 12px !important;
        font-weight: 800 !important;
        font-size: 16px !important;
        color: white !important;
        margin-top: 25px;
        cursor: pointer;
        transition: 0.3s;
    }
    .buy-button:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(25, 185, 70, 0.3); }
    .buy-button:disabled { background: #333 !important; cursor: not-allowed; opacity: 0.6; }

    /* Custom Range Slider */
    input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; }
    input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 6px; background: #222; border-radius: 3px; }
    input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none; height: 18px; width: 18px; border-radius: 50%;
        background: var(--primary-green); cursor: pointer; margin-top: -6px;
        box-shadow: 0 0 10px rgba(25, 185, 70, 0.5);
    }
    .checkbox-container {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.checkbox-group label {
    font-size: 13px;
    text-transform: none; 
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.4;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group label a {
    color: var(--primary-green);
    text-decoration: none;
}
.checkbox-group label a:hover {
    text-decoration: underline;
}

.footer-links {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green);
}

/* Poprawka dla wersji mobilnej */
@media (max-width: 960px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

.price-container {
    margin: 10px 0;
}

/* Styl dla starej, przekreślonej ceny */
.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9em;
    margin-right: 10px;
}

/* Styl dla nowej ceny - większa i wyraźniejsza */
.new-price {
    font-size: 1.4em;
    font-weight: bold;
    color: #e74c3c; /* Czerwony kolor kojarzący się z okazją */
}

/* Opcjonalny styl dla badge'a promocji */
.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ffcc00;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8em;
}