/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    /* Use premium Google fonts for a modern feel */
    font-family: 'Open Sans', sans-serif;
    background-color: #0e0e0e;
    color: #f3f3f3;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dashboard container retains flex layout for dashboard page */
.dashboard-container {
    display: flex;
    min-height: 100vh;
}

/* Site Header */
.site-header {
    width: 100%;
    background-color: #0b0b0b;
    position: relative;
    z-index: 100;
}
.top-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 6px 20px;
    font-size: 0.85rem;
    background-color: #111;
    color: #aaa;
    gap: 15px;
}
.top-bar span i {
    margin-right: 5px;
    color: #e0b60a;
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #0b0b0b;
    border-bottom: 1px solid #222;
}
.main-nav .logo {
    font-size: 2rem;
    font-weight: 600;
    color: #e0b60a;
    font-family: 'Oswald', sans-serif;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}
.nav-links li a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.nav-links li a:hover {
    color: #e0b60a;
}
.nav-login-btn {
    padding: 8px 16px;
    background-color: #e0b60a;
    color: #0e0e0e;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.nav-login-btn:hover {
    background-color: #f2cb05;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}
.hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    transition: background-image 1s ease-in-out;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10%;
    background: rgba(0, 0, 0, 0.6);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.hero-overlay h1 {
    font-size: 4rem;
    color: #e0b60a;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}
.hero-overlay h2 {
    font-size: 2rem;
    color: #f3f3f3;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}
.hero-overlay p {
    max-width: 600px;
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
}
.cta-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #e0b60a;
    color: #0e0e0e;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.cta-btn:hover {
    background-color: #f2cb05;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #0f0f0f;
    text-align: center;
}
.about-section h2 {
    font-size: 2.4rem;
    color: #e0b60a;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}
.about-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ccc;
}
.program-items {
    /* Use a responsive grid that fills the available width without forcing items to stack */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    width: 100%;
    margin: 0 auto;
}
.program-item {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s;
}
.program-item i {
    font-size: 2rem;
    color: #e0b60a;
    margin-bottom: 10px;
}
.program-item h3 {
    font-size: 1.2rem;
    color: #e0b60a;
    margin-bottom: 8px;
}
.program-item p {
    color: #ccc;
    font-size: 0.95rem;
}
.program-item:hover {
    transform: translateY(-5px);
}

/* Programs / Classes Section */
.programs-section {
    padding: 60px 0;
    background-color: #0e0e0e;
    text-align: center;
}
.programs-section h2 {
    font-size: 2.4rem;
    color: #e0b60a;
    margin-bottom: 40px;
    font-family: 'Oswald', sans-serif;
    text-align: center;
}
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
}
.program-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.program-image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    filter: brightness(0.6);
    transition: transform 0.3s;
}
.program-card:hover .program-image {
    transform: scale(1.05);
}
.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f3f3f3;
    text-align: center;
    padding: 20px;
}
.program-number {
    font-size: 2rem;
    color: #e0b60a;
    margin-bottom: 10px;
    font-weight: bold;
}
.program-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #f3f3f3;
}
.program-overlay p {
    font-size: 0.9rem;
    color: #ddd;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: #0f0f0f;
    text-align: center;
}
.team-section h2 {
    font-size: 2.4rem;
    color: #e0b60a;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}
.team-section .subtitle {
    color: #ccc;
    margin-bottom: 40px;
}
.team-grid {
    display: grid;
    /* Use wider columns for team members */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    width: 100%;
}
.team-member {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.team-member img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}
.team-member h3 {
    font-size: 1.2rem;
    color: #e0b60a;
    margin-bottom: 5px;
}
.team-member p {
    font-size: 0.9rem;
    color: #ccc;
}
.team-member:hover {
    transform: translateY(-5px);
}

/* Timeline Section */
.timeline-section {
    padding: 60px 0;
    background-color: #0f0f0f;
    text-align: center;
}

/* Dark overlay for timeline background */
.timeline-section::before {
    /* Remove overlay since timeline image is displayed separately */
    content: unset;
}

/* Ensure timeline content appears above overlay */
.timeline-section .container {
    position: relative;
    z-index: 1;
}
.timeline-section h2 {
    font-size: 2.4rem;
    color: #e0b60a;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}
.timeline-section .subtitle {
    color: #ccc;
    margin-bottom: 40px;
}
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.timeline-phase {
    background-color: rgba(26,26,26,0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    text-align: left;
}
.phase-icon {
    font-size: 2rem;
    color: #e0b60a;
    margin-bottom: 10px;
}
.timeline-phase h3 {
    font-size: 1.4rem;
    color: #e0b60a;
    margin-bottom: 6px;
}
.phase-date {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 10px;
}
.timeline-phase ul {
    list-style: none;
    margin-bottom: 10px;
}
.timeline-phase ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 4px;
    color: #ccc;
}
.timeline-phase ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #e0b60a;
}
.phase-tagline {
    font-size: 0.9rem;
    color: #aaa;
    font-style: italic;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.value-card {
    background-color: rgba(26,26,26,0.95);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    text-align: center;
}
.value-card h4 {
    font-size: 1.2rem;
    color: #e0b60a;
    margin-bottom: 6px;
}
.value-card p {
    font-size: 0.85rem;
    color: #ccc;
}

/* News Section */
.news-section {
    padding: 60px 0;
    background-color: #0f0f0f;
    text-align: center;
}
.news-section h2 {
    font-size: 2.4rem;
    color: #e0b60a;
    margin-bottom: 40px;
    font-family: 'Oswald', sans-serif;
}
.news-grid {
    display: grid;
    /* Provide spacious layout for news posts */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    width: 100%;
}
.news-post {
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}
.news-post:hover {
    transform: translateY(-5px);
}
.post-image {
    width: 100%;
    height: 180px;
    background-size: contain;
    background-position: center;
}
.post-content {
    padding: 20px;
}
.post-content h3 {
    font-size: 1.4rem;
    color: #e0b60a;
    margin-bottom: 8px;
}
.post-meta {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 10px;
}
.post-excerpt {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
}
.read-more {
    font-size: 0.9rem;
    color: #e0b60a;
    text-decoration: none;
}
.read-more:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: #0e0e0e;
    text-align: center;
}
.testimonials-section h2 {
    font-size: 2.4rem;
    color: #e0b60a;
    margin-bottom: 40px;
    font-family: 'Oswald', sans-serif;
}
.testimonials-grid {
    display: grid;
    /* Make testimonials wider and more balanced */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    width: 100%;
}
.testimonial {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}
.testimonial:hover {
    transform: translateY(-5px);
}
.testimonial-quote {
    font-style: italic;
    color: #ccc;
    margin-bottom: 15px;
}
.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid #e0b60a;
    margin-bottom: 10px;
}
.testimonial-author h4 {
    color: #e0b60a;
    margin-bottom: 4px;
}
.testimonial-author p {
    color: #aaa;
    font-size: 0.85rem;
}

/* Subscribe Section */
.subscribe-section {
    padding: 60px 0;
    background-color: #0f0f0f;
    text-align: center;
}
.subscribe-section h2 {
    font-size: 2.4rem;
    color: #e0b60a;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}
.subscribe-section p {
    color: #ccc;
    margin-bottom: 20px;
}
.subscribe-section form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}
.subscribe-section input[type="email"] {
    padding: 10px 15px;
    flex: 1;
    border-radius: 4px;
    border: none;
    background-color: #1a1a1a;
    color: #f3f3f3;
}
.subscribe-section button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #e0b60a;
    color: #0e0e0e;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.subscribe-section button:hover {
    background-color: #f2cb05;
}

/* Footer */
.site-footer {
    background-color: #0b0b0b;
    color: #ccc;
    padding: 40px 0 20px;
    font-size: 0.9rem;
}
.footer-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.site-footer h3 {
    color: #e0b60a;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-family: 'Oswald', sans-serif;
}
.footer-about p {
    color: #aaa;
}
.footer-contact ul,
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-contact li,
.footer-links li {
    margin-bottom: 6px;
    color: #ccc;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #e0b60a;
}
.footer-social .social-icons a {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #ccc;
    transition: color 0.3s;
}
.footer-social .social-icons a:hover {
    color: #e0b60a;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 10px;
    font-size: 0.8rem;
    color: #777;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-overlay {
        padding-left: 5%;
        align-items: flex-start;
    }
    .nav-links {
        display: none;
    }
    .main-nav {
        flex-wrap: wrap;
    }
    .nav-login-btn {
        margin-top: 10px;
    }
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background: #090909;
    padding: 20px 0;
}

/* Sidebar */
.sidebar {
    width: 220px;
    background-color: #111;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.sidebar .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e0b60a;
    margin-bottom: 30px;
}
.sidebar .logo i {
    margin-right: 10px;
}
.nav-menu {
    list-style: none;
    width: 100%;
}
.nav-menu li {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    cursor: pointer;
    color: #ccc;
    transition: background 0.3s, color 0.3s;
}
.nav-menu li i {
    margin-right: 10px;
}
.nav-menu li.active, .nav-menu li:hover {
    background-color: #2a2a2a;
    color: #e0b60a;
}

/* Main content */
.main-content {
    flex: 1;
    padding: 40px 48px;
    overflow-y: auto;
    background: linear-gradient(180deg, #090909 0%, #070707 100%);
    max-width: 1320px;
    margin: 0 auto;
}
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(145deg, #1a1a1a 0%, #101010 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.hero-info h1 {
    font-size: 2.5rem;
    color: #e0b60a;
}
.hero-info p {
    font-size: 1.2rem;
    color: #ddd;
    margin-top: 8px;
}
.hero-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: contain;
    border: 4px solid #e0b60a;
}

.dashboard-top {
    display: grid;
    grid-template-columns: minmax(420px, 1.45fr) minmax(320px, 0.95fr);
    gap: 28px;
    margin-bottom: 34px;
    align-items: start;
}
.hero-profile {
    min-width: 0;
}
.profile-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    background: rgba(18, 18, 18, 0.96);
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(224, 182, 10, 0.18);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
    align-items: center;
}
.profile-photo img {
    width: 240px;
    height: 240px;
    border-radius: 28px;
    object-fit: contain;
    border: 4px solid #e0b60a;
}
.profile-summary {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.profile-title h1 {
    margin: 0;
    color: #fff;
    font-size: 3rem;
    line-height: 1.05;
}
.profile-title p {
    margin: 12px 0 22px;
    color: #f5c84b;
    font-size: 1.1rem;
}
.profile-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.profile-meta div span {
    display: block;
    color: #8d8d8d;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.profile-meta div strong {
    display: block;
    color: #fff;
    margin-top: 4px;
    font-size: 0.96rem;
}
.status-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.status-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.mini-card {
    padding: 22px;
    background: #141414;
    border-radius: 22px;
    border: 1px solid rgba(224, 182, 10, 0.18);
}
.mini-card span {
    display: block;
    color: #8d8d8d;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.mini-card strong {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 1.05rem;
}
.readiness-card {
    background: #141414;
    border: 1px solid rgba(224, 182, 10, 0.18);
    border-radius: 28px;
    padding: 28px;
}
.readiness-heading {
    color: #e0b60a;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.readiness-ring {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}
.readiness-ring .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: conic-gradient(#e0b60a 0% 78%, #181818 0 100%);
}
.readiness-ring .circle span {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 800;
}
#readiness-metrics {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #ccc;
}
#readiness-metrics li {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 12px 0;
    font-size: 0.95rem;
}
#readiness-metrics li:first-child { border-top: 0; }
#readiness-metrics li span:last-child { color: #e0b60a; }

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}
.dashboard-grid .card {
    border-radius: 24px;
    padding: 24px;
    background: rgba(18, 18, 18, 0.96);
    border: 1px solid rgba(224, 182, 10, 0.14);
    box-shadow: 0 20px 40px rgba(0,0,0,0.22);
    min-height: 240px;
}
.dashboard-grid .card h2 {
    margin-bottom: 16px;
}
.dashboard-grid .strengths { grid-column: span 4; }
.dashboard-grid .weaknesses { grid-column: span 4; }
.dashboard-grid .recent-activity { grid-column: span 4; }
.dashboard-grid .goals { grid-column: span 4; }
.dashboard-grid .coach-note { grid-column: span 4; }
.dashboard-grid .events { grid-column: span 4; }
.dashboard-grid .feedback { grid-column: span 4; }

.dashboard-grid .goals,
.dashboard-grid .coach-note,
.dashboard-grid .events,
.dashboard-grid .feedback {
    min-height: 320px;
}

.feedback ul {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 8px;
}
.activity-summary {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}
.activity-card {
    padding: 18px;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}
.activity-card span {
    display: block;
    color: #8d8d8d;
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}
.activity-card strong {
    display: block;
    color: #fff;
    font-size: 1.3rem;
}
.activity-card small {
    display: block;
    color: #e0b60a;
    margin-top: 10px;
    font-size: 0.88rem;
}
.goals ol {
    margin: 0;
    padding-left: 20px;
}
.goals li {
    margin-bottom: 12px;
    color: #ccc;
    line-height: 1.6;
}
.strengths ul,
.weaknesses ul,
.events ul,
.feedback ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.strengths li,
.weaknesses li,
.events li,
.feedback li {
    margin-bottom: 12px;
    color: #ccc;
}
.events li span.date {
    display: inline-block;
    min-width: 110px;
    color: #e0b60a;
    font-weight: bold;
}
.feedback li span.name {
    font-weight: bold;
    color: #e0b60a;
}
.dashboard-footer {
    text-align: center;
    color: #999;
    padding-top: 18px;
    font-size: 0.95rem;
}

@media (max-width: 1220px) {
    .dashboard-top {
        grid-template-columns: 1fr;
    }
    .profile-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .profile-meta {
        grid-template-columns: 1fr;
    }
    .status-panel {
        order: 2;
    }
    .dashboard-grid .strengths,
    .dashboard-grid .weaknesses,
    .dashboard-grid .recent-activity,
    .dashboard-grid .goals,
    .dashboard-grid .coach-note,
    .dashboard-grid .events,
    .dashboard-grid .feedback {
        grid-column: span 12;
    }
}

@media (max-width: 760px) {
    .main-content {
        padding: 24px 20px;
    }
    .sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 18px 20px;
    }
    .nav-menu {
        display: none;
    }
    .profile-photo img {
        width: 200px;
        height: 200px;
    }
    .readiness-ring .circle {
        width: 150px;
        height: 150px;
    }
}

/* Overview cards */
.overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.card h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #e0b60a;
}
.card ul {
    list-style: none;
}
.card ul li {
    margin-bottom: 6px;
    padding-left: 14px;
    position: relative;
}
.card ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #e0b60a;
}
.note p {
    color: #ccc;
    line-height: 1.4;
}

/* Stats section */
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}
.progress-circle {
    flex: 1;
    max-width: 200px;
    text-align: center;
}
.circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: auto;
    background: conic-gradient(#e0b60a 0% 85%, #333 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.circle span {
    font-size: 2rem;
    color: #e0b60a;
    font-weight: bold;
}
.bars {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.bar {
    margin-bottom: 12px;
}
.bar-label {
    margin-bottom: 4px;
    color: #ccc;
}
.bar-track {
    width: 100%;
    height: 10px;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #e0b60a, #f2cb05);
    border-radius: 5px;
}
.activities {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.activity-item {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    color: #ccc;
}
.activity-item i {
    font-size: 1.4rem;
    margin-right: 10px;
}
.activity-item span.value {
    font-weight: bold;
    margin-left: auto;
    color: #e0b60a;
}

/* Events & Feedback */
.events-feedback {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.events, .feedback {
    flex: 1;
    min-width: 250px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.events h2, .feedback h2 {
    color: #e0b60a;
    margin-bottom: 15px;
}
.events ul, .feedback ul {
    list-style: none;
    max-height: 220px;
    overflow-y: auto;
}
.events li, .feedback li {
    margin-bottom: 12px;
}
.events li span.date {
    display: inline-block;
    width: 90px;
    color: #e0b60a;
    font-weight: bold;
}
.feedback li span.name {
    font-weight: bold;
    color: #e0b60a;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    color: #666;
}

/* Landing page styles */
.welcome-container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}
.welcome-container section {
    margin-bottom: 50px;
}
.welcome-container h1,
.welcome-container h2,
.welcome-container h3 {
    color: #e0b60a;
    margin-bottom: 12px;
}
.welcome-container p {
    margin-bottom: 16px;
    color: #ccc;
    line-height: 1.6;
}
.welcome-container ul {
    list-style: none;
    margin-left: 20px;
    margin-bottom: 16px;
}
.welcome-container ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}
.welcome-container ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #e0b60a;
}
.expectations {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.expectations > div {
    flex: 1;
    min-width: 300px;
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.roadmap .phase {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.roadmap .phase h3 {
    margin-bottom: 10px;
    color: #e0b60a;
}
.roadmap .phase ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #e0b60a;
}
.roadmap-footers {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}
.roadmap-footers li {
    background-color: #1a1a1a;
    padding: 10px 15px;
    border-radius: 6px;
    color: #ccc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 0.9rem;
}
.login-section {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-align: center;
}
.login-section input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #2a2a2a;
    border: none;
    border-radius: 5px;
    color: #f3f3f3;
}
.login-section button {
    padding: 10px 20px;
    background-color: #e0b60a;
    color: #0e0e0e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}
.login-section button:hover {
    background-color: #f2cb05;
}
.login-section .error {
    color: #d9534f;
    margin-top: 10px;
}

/* Dashboard V2 */
.dashboard-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(90, 69, 22, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(90, 69, 22, 0.12), transparent 22%),
        #070707;
    color: #f4f0e6;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.dashboard-shell {
    display: grid;
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 20px;
    max-width: 1540px;
    margin: 0 auto;
    padding: 20px 16px 24px;
    min-height: 100vh;
}

.dashboard-sidebar,
.dashboard-panel,
.dashboard-athlete-card,
.dashboard-chip-card,
.dashboard-readiness-card,
.dashboard-banner {
    border: 1px solid rgba(255, 214, 120, 0.12);
    background: linear-gradient(180deg, rgba(19, 19, 19, 0.98), rgba(10, 10, 10, 0.96));
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.33);
}

.dashboard-sidebar {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 24px 14px 18px;
    display: flex;
    flex-direction: column;
}

.dashboard-sidebar__watermark {
    position: absolute;
    inset: 14px 10px auto auto;
    width: 225px;
    max-width: 88%;
    opacity: 0.18;
    pointer-events: none;
    filter: saturate(0.8);
}

.dashboard-sidebar::after {
    display: none;
}

.dashboard-sidebar__brand {
    text-align: center;
    padding-bottom: 18px;
}

.dashboard-sidebar__logo {
    width: 122px;
    max-width: 100%;
    height: auto;
}

.dashboard-sidebar__roadmap {
    margin-top: 10px;
    color: #f4f0e6;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
}

.dashboard-sidebar__roadmap span {
    display: block;
    color: #dfaf33;
    font-size: 22px;
    font-style: italic;
    letter-spacing: 0.03em;
    text-transform: none;
}

.dashboard-sidebar__nav {
    list-style: none;
    margin: 18px 0 20px;
    padding: 0;
}

.dashboard-sidebar__nav li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    margin-bottom: 7px;
    border-radius: 14px;
    color: #e2e2e2;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
}
.dashboard-sidebar__nav li a {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 13px 16px;
    color: inherit;
    text-decoration: none;
}
.dashboard-sidebar__nav li a:hover {
    color: #ffffff;
}

.dashboard-sidebar__nav li i {
    width: 18px;
    color: #cecece;
    text-align: center;
}

.dashboard-sidebar__nav li.is-active {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 214, 120, 0.16);
    color: #fff;
    box-shadow: inset 3px 0 0 #d9a62e;
}

.dashboard-sidebar__nav li.is-active i {
    color: #d9a62e;
}

.dashboard-sidebar__quote {
    margin-top: auto;
    padding: 18px 12px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2bc5a;
    text-align: center;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1.6;
    text-transform: uppercase;
}

.dashboard-main {
    min-width: 0;
}

.dashboard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(548px, 0.88fr);
    gap: 16px;
    margin-bottom: 18px;
}

.dashboard-athlete-card {
    border-radius: 20px;
    padding: 18px 18px 16px;
    display: grid;
    grid-template-columns: 265px minmax(0, 1fr);
    gap: 18px;
    min-height: 354px;
}

.dashboard-athlete-card__photo-wrap {
    display: flex;
    align-items: stretch;
}

.dashboard-athlete-card__photo {
    width: 100%;
    height: 100%;
    min-height: 318px;
    object-fit: contain;
    object-position: center;
    background-color: #222;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.dashboard-page-hero-icon {
    width: 100%;
    min-height: 318px;
    display: grid;
    place-items: center;
    padding: 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.94), rgba(10, 10, 10, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d9a62e;
}

.dashboard-page-hero-icon i {
    font-size: 72px;
}

.dashboard-athlete-card__summary {
    min-width: 0;
}

.dashboard-athlete-card__title {
    border-bottom: 1px solid rgba(219, 171, 48, 0.45);
    padding-bottom: 10px;
    margin-bottom: 14px;
}

.dashboard-athlete-card__title h1 {
    color: #fdfdfd;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(40px, 3.65vw, 56px);
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.dashboard-athlete-card__title p {
    margin-top: 10px;
    color: #d9a62e;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dashboard-athlete-card__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
}

.meta-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
}

.meta-row span,
.meta-row strong {
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.28;
    letter-spacing: 0.04em;
}

.meta-row span {
    color: #ddd7c8;
}

.meta-row span i {
    color: #d9a62e;
    width: 18px;
    margin-right: 10px;
}

.meta-row strong {
    color: #fff;
    text-transform: uppercase;
}

.dashboard-scoreboard {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 18px;
}

.dashboard-scoreboard__top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.dashboard-chip-card {
    border-radius: 16px;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 76px;
}

.chip-card__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #d9a62e;
    font-size: 28px;
}

.dashboard-chip-card span,
.dashboard-chip-card strong {
    display: block;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dashboard-chip-card span {
    color: #c7c0b2;
    font-size: 14px;
    margin-bottom: 6px;
}

.dashboard-chip-card strong {
    color: #fff;
    font-size: 26px;
}

.dashboard-readiness-card {
    border-radius: 20px;
    padding: 18px 18px 14px;
}

.dashboard-card__heading {
    color: #f3f1ea;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dashboard-card__heading i {
    color: #7e7e7e;
    font-size: 13px;
    margin-left: 6px;
    vertical-align: middle;
}

.dashboard-readiness-card__content {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: stretch;
    gap: 16px;
}

.readiness-ring-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 16px 0 6px;
}

.readiness-ring {
    position: relative;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(#c89a2d 0% 78%, #292929 78% 100%);
}

.readiness-ring::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    background: #101010;
}

.readiness-ring span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 70px;
    line-height: 1;
}

.readiness-caption {
    margin-top: 14px;
    color: #fff;
    text-align: center;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.35;
    text-transform: uppercase;
}

.readiness-bars {
    display: grid;
    gap: 13px;
    padding-top: 4px;
}

.readiness-bar {
    display: grid;
    gap: 8px;
}

.readiness-bar__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.readiness-bar__label span {
    color: #f4f0e6;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.readiness-bar__label span i {
    color: #ddd6c6;
}

.readiness-bar__label strong {
    color: #fff;
    font-weight: 500;
}

.readiness-bar__track {
    height: 8px;
    border-radius: 999px;
    background: #2d2d2d;
    overflow: hidden;
}

.readiness-bar__fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #b98923, #e0b64c);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.dashboard-grid--upper .dashboard-panel--strengths,
.dashboard-grid--upper .dashboard-panel--weaknesses {
    grid-column: span 3;
}

.dashboard-grid--upper .dashboard-panel--activity {
    grid-column: span 6;
}

.dashboard-grid--lower .dashboard-panel--goals,
.dashboard-grid--lower .dashboard-panel--note,
.dashboard-grid--lower .dashboard-panel--events,
.dashboard-grid--lower .dashboard-panel--feedback {
    grid-column: span 3;
}

.dashboard-panel {
    border-radius: 18px;
    padding: 14px 18px 16px;
    min-height: 224px;
}

.dashboard-panel__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.dashboard-panel__title h2 {
    color: #f5f2ea;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dashboard-panel__title i {
    color: #a5a5a5;
    font-size: 22px;
}

.dashboard-panel__title--green h2,
.dashboard-panel__title--green i {
    color: #74c64a;
}

.dashboard-panel__title--red h2,
.dashboard-panel__title--red i {
    color: #f14c4c;
}

.dashboard-panel__title--gold h2,
.dashboard-panel__title--gold i {
    color: #e1b44a;
}

.dashboard-list,
.dashboard-number-list,
.dashboard-event-list,
.dashboard-feedback-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-list li,
.dashboard-number-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 9px;
    color: #f0f0f0;
    font-size: 14px;
    line-height: 1.48;
}

.dashboard-list li::before,
.dashboard-number-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
}

.dashboard-list--good li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #74c64a;
}

.dashboard-list--warn li::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #f14c4c;
    font-size: 8px;
    top: 8px;
}

.dashboard-number-list {
    counter-reset: dashboardGoals;
}

.dashboard-number-list li {
    counter-increment: dashboardGoals;
    padding-left: 30px;
}

.dashboard-number-list li::before {
    content: counter(dashboardGoals) ".";
    color: #e1b44a;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    top: 0;
}

.dashboard-activity-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.activity-stat-card {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0 8px 0 12px;
}

.activity-stat-card:first-child {
    border-left: 0;
    padding-left: 0;
}

.activity-stat-card__heading span,
.activity-stat-card__body span,
.activity-stat-card__body strong,
.activity-stat-card__meter small {
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
}

.activity-stat-card__heading span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f2f0eb;
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: 0.04em;
}

.activity-stat-card__heading i {
    color: #e1b44a;
    font-size: 22px;
}

.activity-stat-card__body {
    display: grid;
    gap: 4px;
    margin-top: 12px;
}

.activity-stat-card__body strong {
    color: #fff;
    font-size: 44px;
    line-height: 0.95;
}

.activity-stat-card__body span {
    color: #d6d4cb;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.activity-stat-card__meter {
    margin-top: 14px;
}

.activity-stat-card__track {
    height: 8px;
    border-radius: 999px;
    background: #303030;
    overflow: hidden;
}

.activity-stat-card__fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #61bc46, #8dde57);
}

.activity-stat-card__meter small {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.activity-stat-card:nth-child(-n+2) .activity-stat-card__heading i {
    color: #e1b44a;
}

.activity-stat-card:nth-child(n+3) .activity-stat-card__heading i {
    color: #79cd4e;
}

.dashboard-note-text {
    color: #f1eee7;
    font-size: 15px;
    line-height: 1.65;
}

.dashboard-note-signature {
    margin-top: 16px;
    color: #e1b44a;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    letter-spacing: 0.03em;
}

.dashboard-event-list {
    display: grid;
    gap: 14px;
}

.dashboard-event-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    color: #f3efe5;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.dashboard-event-item__name {
    color: #f4f2ec;
}

.dashboard-event-item__date {
    color: #f6f1e2;
    white-space: nowrap;
}

.dashboard-event-item--highlight .dashboard-event-item__name,
.dashboard-event-item--highlight .dashboard-event-item__date {
    color: #d9a62e;
}

.dashboard-feedback-list {
    display: grid;
    gap: 14px;
}

.dashboard-feedback-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-feedback-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.dashboard-feedback-item__badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 14px;
}

.dashboard-feedback-item__badge--green {
    background: linear-gradient(180deg, #6cb94e, #438b2d);
}

.dashboard-feedback-item__badge--blue {
    background: linear-gradient(180deg, #4f84dc, #2f5ca9);
}

.dashboard-feedback-item__badge--purple {
    background: linear-gradient(180deg, #a365d8, #7644aa);
}

.dashboard-feedback-item__badge--gold {
    background: linear-gradient(180deg, #dda93b, #b7791f);
}

.dashboard-feedback-item__copy strong {
    display: block;
    color: #f7f4ec;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.dashboard-feedback-item__copy p {
    color: #ebe7de;
    font-size: 14px;
    line-height: 1.42;
}

.dashboard-feedback__cta {
    margin-top: 18px;
    color: #e1b44a;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-align: right;
    text-transform: uppercase;
}

.dashboard-banner {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 4px;
}

.dashboard-banner__crest {
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 86px;
    transform: translateX(-50%);
    opacity: 0.09;
    pointer-events: none;
}

.dashboard-banner__message {
    text-align: center;
    flex: 1;
}

.dashboard-banner__message strong,
.dashboard-banner__message span,
.dashboard-banner__destination span,
.dashboard-banner__destination strong {
    display: block;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
}

.dashboard-banner__message strong {
    color: #d9a62e;
    font-size: 20px;
    letter-spacing: 0.14em;
}

.dashboard-banner__message span {
    color: #f3f0ea;
    font-size: 16px;
    letter-spacing: 0.18em;
    margin-top: 4px;
}

.dashboard-banner__destination {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 300px;
}

.dashboard-banner__badge-image {
    width: 76px;
    height: 76px;
    object-fit: cover;
    object-position: left center;
    border-radius: 50%;
    border: 2px solid rgba(217, 166, 46, 0.65);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    background: #111;
}

.dashboard-banner__destination span {
    color: #f4f0e8;
    font-size: 15px;
    letter-spacing: 0.08em;
}

.dashboard-banner__destination strong {
    color: #d9a62e;
    font-size: 31px;
    line-height: 0.98;
    letter-spacing: 0.03em;
}

@media (max-width: 1380px) {
    .dashboard-shell {
        grid-template-columns: 224px minmax(0, 1fr);
    }

    .dashboard-hero {
        grid-template-columns: 1fr;
    }

    .dashboard-scoreboard__top {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 1180px) {
    .dashboard-grid--upper .dashboard-panel--strengths,
    .dashboard-grid--upper .dashboard-panel--weaknesses,
    .dashboard-grid--upper .dashboard-panel--activity,
    .dashboard-grid--lower .dashboard-panel--goals,
    .dashboard-grid--lower .dashboard-panel--note,
    .dashboard-grid--lower .dashboard-panel--events,
    .dashboard-grid--lower .dashboard-panel--feedback {
        grid-column: span 12;
    }

    .dashboard-activity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        padding-bottom: 20px;
    }

    .dashboard-sidebar__watermark {
        width: 180px;
    }

    .dashboard-athlete-card {
        grid-template-columns: 1fr;
    }

    .dashboard-athlete-card__title h1 {
        white-space: normal;
    }

    .dashboard-athlete-card__photo {
        min-height: 280px;
        max-height: 360px;
    }

    .dashboard-readiness-card__content {
        grid-template-columns: 1fr;
    }

    .readiness-ring-panel {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0 0 16px;
    }
}

@media (max-width: 680px) {
    .dashboard-shell {
        padding: 14px 10px 20px;
    }

    .dashboard-sidebar__nav li {
        font-size: 12px;
    }

    .dashboard-scoreboard__top,
    .dashboard-activity-grid {
        grid-template-columns: 1fr;
    }

    .meta-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .dashboard-banner {
        flex-direction: column;
        text-align: center;
    }

    .dashboard-banner__destination {
        min-width: 0;
        justify-content: center;
        flex-direction: column;
    }

    .dashboard-banner__crest {
        width: 70px;
    }
}

/* Timeline image styling */
.timeline-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

/* Features Section on Welcome Page */
.features {
    margin: 60px 0;
    text-align: center;
}
.features h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #e0b60a;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.feature-item {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
.feature-item:hover {
    transform: translateY(-5px);
}
.feature-item i {
    font-size: 2rem;
    color: #e0b60a;
    margin-bottom: 10px;
}
.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #f2cb05;
}
.feature-item p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px auto;
    max-width: 700px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.cta-section h2 {
    font-size: 2rem;
    color: #e0b60a;
    margin-bottom: 10px;
}
.cta-section p {
    margin-bottom: 20px;
    color: #ccc;
}

/* Login Page Styles */
.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #0e0e0e;
}
.login-hero {
    position: relative;
    flex: 1;
    background-image: url('karate__login-wide.jpg');
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-overlay {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 500px;
}
.login-overlay h1 {
    font-size: 2.8rem;
    color: #e0b60a;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}
.login-overlay p {
    color: #ccc;
    margin-bottom: 20px;
}
.login-card input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #f3f3f3;
}
.login-card button {
    width: 100%;
    padding: 12px;
    background-color: #e0b60a;
    color: #0e0e0e;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}
.login-card button:hover {
    background-color: #f2cb05;
}
.login-card .error {
    color: #d9534f;
    margin-top: 10px;
}

.admin-login-note {
    background: rgba(224, 182, 10, 0.12);
    border: 1px solid rgba(224, 182, 10, 0.35);
    border-radius: 8px;
    color: #f3f3f3;
    display: grid;
    gap: 6px;
    margin-top: 16px;
    padding: 14px 16px;
    text-align: left;
}

.admin-login-note strong {
    color: #e0b60a;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-login-note span {
    color: #ddd;
    font-size: 0.95rem;
}

.admin-login-note code {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #fff;
    padding: 2px 6px;
}
/* Welcome Page Styles */
.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    background-size: contain;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}
.hero-overlay h1 {
    font-size: 3rem;
    color: #e0b60a;
    margin-bottom: 10px;
}
.hero-overlay h2 {
    font-size: 1.5rem;
    color: #f2cb05;
    margin-bottom: 20px;
}
.hero-overlay p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    color: #ddd;
}
.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #e0b60a;
    color: #0e0e0e;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.cta-btn:hover {
    background-color: #f2cb05;
}

/* Section spacing */
.welcome-container section {
    margin-top: 60px;
}

/* Program and Benefits styling */
.program h2,
.benefits h2,
.expectations h2,
.roadmap h2 {
    color: #e0b60a;
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
}
.program ul,
.benefits ul,
.expectations ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.program ul li,
.benefits ul li,
.expectations ul li {
    background-color: #1a1a1a;
    padding: 10px 15px;
    border-radius: 8px;
    position: relative;
    color: #ccc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.program ul li::before,
.benefits ul li::before,
.expectations ul li::before {
    content: '\2022';
    position: absolute;
    left: -10px;
    color: #e0b60a;
}

/* Expectations layout */
.expectations {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
.parent-exp,
.athlete-exp {
    flex: 1 1 45%;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.parent-exp h2,
.athlete-exp h2 {
    margin-bottom: 10px;
    color: #e0b60a;
    font-size: 1.5rem;
}
.parent-exp p,
.athlete-exp p {
    margin-bottom: 10px;
    color: #ccc;
}

/* Roadmap timeline */
.roadmap #phases-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.roadmap .phase {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.roadmap .phase h3 {
    color: #e0b60a;
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.roadmap .phase ul li::before {
    color: #e0b60a;
    left: 0;
}
.roadmap-footers {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}
.roadmap-footers li {
    background-color: #1a1a1a;
    padding: 10px 15px;
    border-radius: 8px;
    color: #ccc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Login section */
.login-section {
    max-width: 500px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-align: center;
}
.login-section h2 {
    color: #e0b60a;
    margin-bottom: 15px;
}
.login-section input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background-color: #2a2a2a;
    border: none;
    border-radius: 5px;
    color: #f3f3f3;
}
.login-section button {
    padding: 12px 30px;
    background-color: #e0b60a;
    color: #0e0e0e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}
.login-section button:hover {
    background-color: #f2cb05;
}
.login-section .error {
    color: #d9534f;
    margin-top: 10px;
}
