:root{
    --bg:#fafafa;
    --font: 'Inter', sans-serif;
}

*{ box-sizing:border-box }

body {
    margin:0;
    background: var(--bg);
    font-family: var(--font);
}

/* Główna struktura */
#app{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    padding:32px;
    display:flex;
    justify-content:center;
}

.container{
    max-width:1100px;
    width:100%;
    position:relative;
    z-index:10;
}

/* Przełączniki klubów */
.club-switcher{
    display:flex;
    gap:12px;
    padding-bottom:24px;
}

.club-btn {
    width:44px;
    height:44px;
    border-radius:50%;
    background:transparent;
    border:2px solid rgba(0,0,0,0.1);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    transition:0.2s;
}

.club-btn.active {
    transform:translateY(-4px);
    box-shadow:0 6px 16px rgba(0,0,0,0.15);
    color:#fff;
}

/* Główna część */
.top-center {
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* Nagłówek – nazwa */
.header-row{
    display:flex;
    gap:20px;
    align-items:center;
    justify-content:center;
    margin-bottom:32px;
}

.club-name-box{
    padding:18px 36px;
    background:#fff;
    border-radius:6px;
    border:2px solid rgba(0,0,0,0.05);
    font-weight:700;
    font-size:28px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* Herb (sześciokąt) */
.hex-badge{
    width:60px;
    height:60px;
}

/* Wolne miejsca */
.seats-box{
    background:white;
    padding:14px 20px;
    border-radius:8px;
    border:2px solid rgba(0,0,0,0.05);
    text-align:center;
    width:260px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.seats-title{
    font-weight:700;
    font-size:14px;
}

.seats-number{
    font-size:40px;
    font-weight:800;
    margin:8px 0;
}

.seats-meta{
    opacity:0.7;
    font-size:13px;
    display:flex;
    justify-content:center;
    gap:8px;
}

/* Ukośne pasy */
.diagonal-left, .diagonal-right{
    position:absolute;
    top:0;
    bottom:0;
    width:40%;
    z-index:1;
    pointer-events:none;
    overflow:hidden;
}

.diagonal-left{
    left:0;
    transform:skewX(-12deg);
}

.diagonal-right{
    right:0;
    transform:skewX(-12deg);
}

.diagonal-inner{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
