/* Shoutbox Game Styles */
.wf-shoutbox-game-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.wf-sbg-header {
    text-align: center;
    margin-bottom: 30px;
}

.wf-sbg-header h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.wf-sbg-subtitle {
    color: #666;
    font-size: 1.1em;
}

/* Stats Grid */
.wf-sbg-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.wf-sbg-stat {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.wf-sbg-stat:hover {
    transform: translateY(-5px);
}

.wf-sbg-stat-pool { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.wf-sbg-stat-posters { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.wf-sbg-stat-reward { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.wf-sbg-stat-limit { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.wf-sbg-stat-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.wf-sbg-stat-value {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 5px;
}

.wf-sbg-stat-label {
    font-size: 0.9em;
    opacity: 0.9;
}

.wf-sbg-stat-bonus {
    margin-top: 8px;
    padding: 4px 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
}

/* Rules */
.wf-sbg-rules {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.wf-sbg-rules h3 {
    margin-top: 0;
    color: #1a1a2e;
}

.wf-sbg-rules ul {
    list-style: none;
    padding: 0;
}

.wf-sbg-rules li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.wf-sbg-rules li:last-child {
    border-bottom: none;
}

/* Leaderboard */
.wf-sbg-leaderboard {
    margin-bottom: 30px;
}

.wf-sbg-leaderboard h3 {
    text-align: center;
    margin-bottom: 20px;
}

.wf-sbg-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wf-sbg-table th {
    background: #1a1a2e;
    color: white;
    padding: 15px;
    text-align: left;
}

.wf-sbg-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
}

.wf-sbg-table tr:last-child td {
    border-bottom: none;
}

.wf-sbg-rank {
    font-weight: bold;
    font-size: 1.2em;
}

.wf-sbg-gold { background: linear-gradient(90deg, #ffd70022, transparent); }
.wf-sbg-silver { background: linear-gradient(90deg, #c0c0c022, transparent); }
.wf-sbg-bronze { background: linear-gradient(90deg, #cd7f3222, transparent); }

/* CTA */
.wf-sbg-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.wf-sbg-cta a {
    color: white;
    text-decoration: underline;
}

.wf-sbg-cta .wf-btn-lg {
    font-size: 1.2em;
    padding: 15px 40px;
}

/* Notice */
.wf-sbg-notice {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.wf-sbg-notice-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.wf-sbg-empty {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
    .wf-sbg-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .wf-sbg-header h2 {
        font-size: 1.8em;
    }
}
