/*
Theme Name: WordPress Club Theme Ultimate
Theme URI: https://harrywheat.com/
Author: Harry Wheat
Author URI: https://harrywheat.com/
Description: Premium membership & digital products club theme for Harry Wheat / DrDisk / KidsBooksLLC.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: wp-club-theme
Tags: one-column, two-columns, custom-logo, custom-menu, footer-widgets, theme-options, e-commerce, blog, full-site-editing
*/

/* Basic reset and layout skeleton */
body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #0b0b10;
    color: #f4f4f7;
}

a {
    color: #4fd1ff;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #050509;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.site-footer {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    background: #050509;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.wp-club-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.wp-club-card {
    background: radial-gradient(circle at top, #161629, #050509);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.wp-club-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255,255,255,0.16);
}

.wp-club-badge--free { background: rgba(148,163,184,0.12); }
.wp-club-badge--basic { background: rgba(59,130,246,0.15); }
.wp-club-badge--pro { background: rgba(16,185,129,0.18); }
.wp-club-badge--lifetime { background: rgba(234,179,8,0.18); }

.wp-club-login-wrapper {
    max-width: 420px;
    margin: 3rem auto;
    padding: 2rem;
    border-radius: 20px;
    background: radial-gradient(circle at top, #111827, #020617);
    border: 1px solid rgba(148,163,184,0.35);
}

.wp-club-login-wrapper h1 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.wp-club-login-wrapper p.description {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #9ca3af;
}