

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #0f0f1a, #050510);
    color: white;
    overflow-x: hidden;
}

/* Glow background */
body::before {
    content: "";
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00f0ff33, transparent 70%);
    top: -200px;
    left: -200px;
    z-index: -1;
}

header {
    text-align: center;
    padding: 80px 20px 40px 20px;
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    background: linear-gradient(90deg, #00f0ff, #ff00d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header p {
    opacity: 0.7;
    margin-top: 10px;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.download-row {
    display: flex;
    align-items: center;      /* wyrównanie w pionie */
    margin-top: 10px;
}

.version {
    color: rgb(0, 245, 61);
    margin: 15px 0 0 10px;       /* mały odstęp od przycisku */
    font-weight: 100;
}
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, #00f0ff33, transparent);
    transform: rotate(25deg);
    top: -150%;
    left: -150%;
    transition: 0.7s;
}

.card:hover::before {
    top: 100%;
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px #00f0ff33;
}

.card h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
}

.card p {
    opacity: 0.8;
    font-size: 14px;
}

.download-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 12px;
    background: linear-gradient(90deg, #00f0ff, #ff00d4);
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #ff00d4;
}



footer {
    text-align: center;
    padding: 40px 20px;
    opacity: 0.6;
    font-size: 14px;
}


/* --- Responsywność --- */
@media (max-width: 768px) {
    header h1 {
        font-size: 36px; /* mniejszy nagłówek na tablecie */
    }
    header p {
        font-size: 14px;
    }
    .card {
        padding: 20px;
    }
    .card p {
        font-size: 13px;
    }
    .download-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 28px; /* nagłówek na telefonie */
    }
    header p {
        font-size: 12px;
    }
    .container {
        padding: 20px 10px;
        gap: 20px;
    }
    .card {
        padding: 15px;
        border-radius: 16px;
    }
    .card h2 {
        font-size: 16px;
    }
    .card p {
        font-size: 12px;
    }
    .download-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    body::before {
        width: 400px; /* mniejszy neonowy glow */
        height: 400px;
        top: -100px;
        left: -100px;
    }
}