.go-pro-game,.go-pro-stats,.go-pro-leaderboard,.go-pro-buy,.go-pro-lobby,.go-pro-notice{
    --go-board:#dcb35c;--go-grid:#3b2a14;--go-primary:#0f766e;
    font-family:inherit;color:#1f2937;line-height:1.5;
    background:#fff;border-radius:14px;padding:20px;
    box-shadow:0 1px 3px rgba(0,0,0,0.06),0 1px 2px rgba(0,0,0,0.04);
    margin:1.5em 0;
}
.go-pro-section-title{margin:0 0 14px;font-size:1.15rem;font-weight:700;color:#111827;}
.go-pro-muted{color:#6b7280;font-size:.875rem;}

/* Buttons */
.go-pro-btn{display:inline-flex;align-items:center;gap:6px;padding:8px 16px;border-radius:8px;border:0;cursor:pointer;font-weight:600;font-size:.9rem;transition:all .15s;text-decoration:none;}
.go-pro-btn:disabled{opacity:.5;cursor:not-allowed;}
.go-pro-btn-primary{background:var(--go-primary);color:#fff;}
.go-pro-btn-primary:hover:not(:disabled){filter:brightness(1.1);}
.go-pro-btn-accent{background:#b45309;color:#fff;}
.go-pro-btn-accent:hover:not(:disabled){background:#92400e;}
.go-pro-btn-ghost{background:#f3f4f6;color:#1f2937;}
.go-pro-btn-ghost:hover:not(:disabled){background:#e5e7eb;}
.go-pro-btn-danger{background:#fef2f2;color:#b91c1c;}
.go-pro-btn-danger:hover:not(:disabled){background:#fee2e2;}

/* Header */
.go-pro-game-header{display:flex;gap:18px;flex-wrap:wrap;align-items:center;padding-bottom:16px;border-bottom:1px solid #e5e7eb;margin-bottom:18px;}
.go-pro-balance,.go-pro-pot-box,.go-pro-fee-box{display:flex;flex-direction:column;gap:2px;padding:10px 16px;background:#f9fafb;border-radius:10px;min-width:100px;}
.go-pro-balance strong,.go-pro-pot-box strong,.go-pro-fee-box strong{font-size:1.4rem;color:#111827;}

/* Stage */
.go-pro-stage{display:grid;grid-template-columns:1fr 320px;gap:24px;}
@media(max-width:780px){.go-pro-stage{grid-template-columns:1fr;}}

.go-pro-board-wrap{display:flex;flex-direction:column;gap:12px;}
.go-pro-board{position:relative;background:var(--go-board);border-radius:8px;aspect-ratio:1/1;width:100%;max-width:560px;margin:0 auto;box-shadow:inset 0 0 30px rgba(0,0,0,.08);overflow:hidden;}
.go-pro-board.empty .go-pro-empty-state{display:flex;}
.go-pro-empty-state{display:none;position:absolute;inset:0;align-items:center;justify-content:center;color:#5d4422;font-style:italic;text-align:center;padding:20px;}
.go-pro-grid{position:absolute;inset:0;}
.go-pro-grid line{stroke:var(--go-grid);stroke-width:1;}
.go-pro-grid .star{fill:var(--go-grid);}
.go-pro-coords{position:absolute;color:rgba(59,42,20,.6);font-size:10px;}
.go-pro-points{position:absolute;inset:0;}
.go-pro-point{position:absolute;width:11%;height:11%;transform:translate(-50%,-50%);border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;}
.go-pro-point.empty:hover::before{content:"";display:block;width:80%;height:80%;border-radius:50%;background:rgba(0,0,0,0.18);}
.go-pro-point.disabled{cursor:default;}
.go-pro-point.disabled.empty:hover::before{display:none;}
.go-pro-stone{display:block;width:88%;height:88%;border-radius:50%;box-shadow:0 1px 3px rgba(0,0,0,.4);}
.go-pro-stone.black{background:radial-gradient(circle at 30% 30%, #555, #000 70%);}
.go-pro-stone.white{background:radial-gradient(circle at 30% 30%, #fff, #c4c4c4 75%);}
.go-pro-point.last::after{content:"";position:absolute;width:30%;height:30%;border-radius:50%;border:2px solid #ef4444;}

.go-pro-controls{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;}

/* Side panel */
.go-pro-side{display:flex;flex-direction:column;gap:14px;}
.go-pro-players{display:flex;flex-direction:column;gap:8px;}
.go-pro-player{display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:10px;background:#f9fafb;}
.go-pro-player.active{background:#ecfdf5;outline:2px solid var(--go-primary);}
.go-pro-player .dot{width:18px;height:18px;border-radius:50%;flex-shrink:0;}
.go-pro-player.black .dot{background:radial-gradient(circle at 30% 30%, #555, #000 70%);}
.go-pro-player.white .dot{background:radial-gradient(circle at 30% 30%, #fff, #c4c4c4 75%);border:1px solid #d1d5db;}
.go-pro-player .cap{margin-left:auto;color:#6b7280;font-size:.85rem;}
.go-pro-status{padding:10px 12px;background:#fef3c7;border-radius:8px;font-weight:600;color:#92400e;text-align:center;}
.go-pro-status.win{background:#d1fae5;color:#065f46;}
.go-pro-status.lose{background:#fee2e2;color:#991b1b;}

.go-pro-new-game{padding:14px;background:#f9fafb;border-radius:10px;}
.go-pro-new-game h4{margin:0 0 10px;font-size:.95rem;color:#111827;}
.go-pro-form-row{margin-bottom:10px;}
.go-pro-form-row.buttons{display:flex;flex-direction:column;gap:6px;margin-bottom:0;}
.go-pro-form-row label{display:flex;flex-direction:column;gap:4px;font-size:.85rem;color:#374151;}
.go-pro-form-row select{padding:6px 8px;border-radius:6px;border:1px solid #d1d5db;background:#fff;}

.go-pro-message{padding:8px 12px;border-radius:8px;font-size:.875rem;display:none;}
.go-pro-message.show{display:block;}
.go-pro-message.error{background:#fee2e2;color:#991b1b;}
.go-pro-message.success{background:#d1fae5;color:#065f46;}

/* Lobby */
.go-pro-lobby-section{margin-bottom:24px;}
.go-pro-lobby-card{display:flex;justify-content:space-between;align-items:center;padding:12px 14px;background:#f9fafb;border-radius:10px;margin-bottom:8px;}
.go-pro-lobby-card .meta{display:flex;flex-direction:column;}
.go-pro-lobby-card .meta strong{color:#111827;}
.go-pro-lobby-card .meta span{color:#6b7280;font-size:.875rem;}
.go-pro-lobby-card.your-turn{outline:2px solid var(--go-primary);background:#ecfdf5;}

/* Tables */
.go-pro-table{width:100%;border-collapse:collapse;}
.go-pro-table th,.go-pro-table td{padding:10px 12px;text-align:left;border-bottom:1px solid #e5e7eb;}
.go-pro-table th{background:#f9fafb;color:#374151;font-weight:600;font-size:.85rem;text-transform:uppercase;letter-spacing:.03em;}
.go-pro-table tr.top-1{background:#fef3c7;}
.go-pro-table tr.top-2{background:#f3f4f6;}
.go-pro-table tr.top-3{background:#fed7aa;}
.go-pro-tx{font-size:.8rem;padding:2px 8px;border-radius:4px;background:#e5e7eb;color:#374151;}
.go-pro-tx.type-win{background:#d1fae5;color:#065f46;}
.go-pro-tx.type-purchase{background:#dbeafe;color:#1e40af;}
.go-pro-tx.type-entry_fee{background:#fee2e2;color:#991b1b;}
.go-pro-table .pos{color:#065f46;font-weight:600;}
.go-pro-table .neg{color:#991b1b;font-weight:600;}

/* Stats */
.go-pro-stat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:10px;margin-bottom:24px;}
.go-pro-stat-item{padding:14px;background:#f9fafb;border-radius:10px;display:flex;flex-direction:column;gap:2px;}
.go-pro-stat-item strong{font-size:1.4rem;color:#111827;}

/* Buy credits */
.go-pro-buy-header{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;margin-bottom:18px;}
.go-pro-packages{display:grid;grid-template-columns:repeat(auto-fit,minmax(170px,1fr));gap:14px;}
.go-pro-package{position:relative;padding:18px;background:#f9fafb;border-radius:12px;text-align:center;border:2px solid transparent;}
.go-pro-package.featured{border-color:var(--go-primary);background:#ecfdf5;}
.go-pro-package.featured::before{content:"BEST VALUE";position:absolute;top:-10px;left:50%;transform:translateX(-50%);background:var(--go-primary);color:#fff;padding:2px 10px;border-radius:10px;font-size:.7rem;font-weight:700;letter-spacing:.05em;}
.go-pro-pkg-credits{font-size:2rem;font-weight:800;color:#111827;}
.go-pro-pkg-label{color:#6b7280;font-size:.9rem;}
.go-pro-pkg-price{font-size:1.2rem;font-weight:600;color:var(--go-primary);margin:8px 0;}
.go-pro-pkg-rate{font-size:.75rem;color:#6b7280;margin-bottom:10px;}
.go-pro-note{margin-top:18px;font-size:.85rem;color:#6b7280;font-style:italic;}

.go-pro-credits-inline{font-weight:600;color:var(--go-primary);}
.go-pro-notice{text-align:center;}
.go-pro-notice h3{margin-top:0;}
