/* CLUBHOUSE THEME */
.clubhouse-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Raleway', sans-serif;
    color: #e0e0e0;
}

/* HEADER */
.club-header {
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.club-title {
    font-family: 'Playfair Display', serif;
    color: #FAD961;
    font-size: 2.5rem;
    margin: 0;
}
.club-subtitle {
    color: #888;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* ALERTS */
.club-alert { padding: 15px; margin-bottom: 20px; border-radius: 4px; border: 1px solid transparent; text-align: center; }
.club-alert.success { background: rgba(46, 204, 113, 0.2); border-color: #2ecc71; color: #2ecc71; }
.club-alert.error { background: rgba(231, 76, 60, 0.2); border-color: #e74c3c; color: #e74c3c; }

/* MAIN GRID */
.club-grid { display: flex; gap: 40px; }
.club-col-main { flex: 2; }
.club-col-side { flex: 1; display: flex; flex-direction: column; gap: 40px; }

/* CARDS */
.club-card {
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}
.club-section-title {
    color: #fff;
    border-left: 3px solid #AD8C3E;
    padding-left: 10px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

/* NEWS */
.news-meta { color: #AD8C3E; font-size: 0.8rem; font-weight: bold; margin-bottom: 5px; }
.news-title { color: #FAD961; font-size: 1.3rem; margin: 0 0 10px 0; font-family: 'Playfair Display', serif; }
.news-content { color: #ccc; line-height: 1.6; font-size: 0.95rem; }

/* WIDGETS */
.event-card, .highlight-card { background: #111; border: 1px solid #222; }
.event-date { background: #000; border: 1px solid #AD8C3E; color: #FAD961; padding: 8px; text-align: center; border-radius: 4px; font-weight: bold; line-height: 1; font-size: 0.8rem; margin-right: 15px; min-width: 50px; }
.event-link { color: #AD8C3E; font-size: 0.8rem; text-decoration: none; display: block; margin-top: 5px; }
.club-empty { color: #555; font-style: italic; }

/* --- WIDE POLL STYLES --- */
.poll-card-wide {
    padding: 30px;
    background: #0a0a0a;
    border: 1px solid #333;
}
.poll-question-wide {
    margin-top: 0;
    color: #fff;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

/* Poll Grid Layout for Options */
.poll-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}
.poll-opt-wide {
    background: #151515;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.poll-opt-wide:hover {
    background: #222;
    border-color: #AD8C3E;
    transform: translateY(-2px);
}
.poll-opt-wide input { transform: scale(1.2); }

/* Results Grid */
.poll-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
    gap: 30px;
}
.poll-result-item { margin-bottom: 10px; }
.poll-opt-label { font-size: 1rem; color: #ddd; }
.poll-opt-pct { font-weight: bold; color: #FAD961; }
.poll-bar { background: #222; height: 12px; border-radius: 6px; margin-top: 5px; overflow: hidden; }
.poll-fill { background: linear-gradient(90deg, #AD8C3E, #FAD961); height: 100%; }

.club-btn {
    background: #AD8C3E;
    color: #000;
    border: none;
    padding: 12px 25px;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
}
.club-btn:hover { background: #FAD961; }

@media (max-width: 768px) {
    .club-grid { flex-direction: column; }
    .poll-options-grid, .poll-results-grid { grid-template-columns: 1fr; }
}