 :root {
    --bg: #0b0e1a;
    --panel: rgba(255,255,255,0.05);
    --border: rgba(255,255,255,0.08);
    --primary: #6c7cff;
    --accent: #00ffd5;
    --text: #eaeaf0;
    --muted: #a1a4c8;
}

a{
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #1a1f3c, var(--bg));
    color: var(--text);
    line-height: 1.6;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 80px;
    backdrop-filter: blur(12px);
    background: rgba(11,14,26,0.7);
    border-bottom: 1px solid var(--border);
}

.navbar {
    max-width: 1100px;
    margin: auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    color: var(--accent);
}

.logo img {
    height: 32px;
}

.nav-links a {
    margin-left: 24px;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    opacity: 0.85;
}

.nav-links a:hover {
    opacity: 1;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px;
}

.section {
    margin-bottom: 100px;
    text-align: center;
}

.section h2 {
    font-size: 30px;
    margin-bottom: 18px;
    text-align: center;
}

.section p {
    max-width: 650px;
    color: var(--muted);
    font-size: 16px;
}

.cards {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}


.card h3 {
    margin-bottom: 10px;
    color: var(--accent);
}

.card p {
    color: var(--muted);
}

.card.muted {
    opacity: 0.6;
}

.block {
    text-align: center;
    padding: 90px 30px;
    background: linear-gradient(135deg, rgba(108,124,255,0.15), rgba(0,255,213,0.15));
    border: 1px solid var(--border);
    border-radius: 28px;
}

.block h1 {
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 14px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.block p {
    margin-bottom: 35px;
    color: var(--muted);
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #000;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0,255,213,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.btn2 {
    display: inline-block;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #000;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0,255,213,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn2:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

button {
  border: none;
  outline: none;
  box-shadow: none;
}

footer {
    padding: 40px 20px;
    text-align: center;
    color: var(--muted);
    border-top: 1px solid var(--border);
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-links a {
        margin-left: 14px;
    }
}
.form-section {
    max-width: 720px;
    margin: 0 auto;
}

.report-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: var(--panel);
    padding: 36px;
    border-radius: 22px;
    border: 1px solid var(--border);
}

.report-form label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: var(--muted);
    gap: 8px;
}

.report-form input,
.report-form select,
.report-form textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text);
    font-size: 14px;
}

.report-form textarea {
    resize: vertical;
    min-height: 120px;
}

.report-form input:focus,
.report-form select:focus,
.report-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.report-form button {
    align-self: flex-start;
    margin-top: 10px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: #000;
    margin-bottom: 50px;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.server-list {
    list-style: none;
    margin-top: 30px;
    max-width: 600px;
    display: inline;
}

.server-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    margin-bottom: 12px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.server-list span {
    font-weight: 600;
}

.server-list code {
    color: var(--accent);
    font-size: 14px;
}

.menu-btn {
    font-size: 26px;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: rgba(15,18,32,0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-menu a {
    text-decoration: none;
    color: var(--text);
    font-size: 18px;
}

.side-menu a:hover {
    color: var(--accent);
}

.close-btn {
    align-self: flex-end;
    font-size: 30px;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    margin-bottom: 20px;
}

body.menu-open .side-menu {
    transform: translateX(0);
}

body.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    transform: translateX(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: none;
    padding: 10px 22px;
    font-size: 14px;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.card-game {
    position: relative;
    padding: 5px;
    height: 230px;

    background-image: url("../files/the-szykjpg.jpg");
    background-size: cover;
    background-position: center;

    border-radius: 20px;
    border: 1px solid var(--border);
    text-decoration: none;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-game::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,12,25,0.85),
        rgba(10,12,25,0.4)
    );
    z-index: 0;
}

.card-game .card-content {
    position: relative;
    z-index: 1;
    padding: 26px;
}

.card-game h3 {
    margin-bottom: 10px;
    color: var(--accent);
}

.card-game p {
    color: var(--muted);
    font-size: 14px;
}
/* HOVER – IDENTYCZNY */
.card-game:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.image-button {
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: white;
    font-size: 20px;
    font-weight: bold;
    
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../files/the-szykjpg.jpg');
    
    background-size: cover;
    background-position: center;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-button:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../files/theszyk2.jpg');
  transform: scale(1.02);
}