/* ============================================================
   TECHNIKA.AI — Style v2 (visual polish)
   Dark, sporty, Nike/Adidas inspired
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* --- GLOBAL --- */
html {
    scroll-behavior: smooth;
}
body {
    background: #0a0a0a;
    color: #f5f5f5;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* --- NOISE TEXTURE OVERLAY --- */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* --- LAYOUT --- */
.top-bar, .hero, .value-section, .steps-section, .cta-section,
.proof-section, .tips-section, .upload-section, .analysis-section, .feedback-section,
.share-section, .footer {
    max-width: 760px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes glow {
    0%, 100% { text-shadow: 0 0 40px rgba(200, 255, 0, 0.15); }
    50% { text-shadow: 0 0 80px rgba(200, 255, 0, 0.3); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes heroGradient {
    0%, 100% { background-position: 50% 0%; }
    50% { background-position: 50% 100%; }
}
@keyframes textReveal {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0% 0 0); }
}
@keyframes marchingAnts {
    to { stroke-dashoffset: -20; }
}
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.4); }
    50% { box-shadow: 0 0 20px 4px rgba(200, 255, 0, 0.15); }
}
@keyframes countPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* --- SCROLL REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal.revealed:nth-child(2) { transition-delay: 0.1s; }
.reveal.revealed:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #141414;
}
.top-logo {
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f0f0f0;
}
.top-logo .dot { color: #c8ff00; }
.top-badge {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c8ff00;
    padding: 0.25rem 0.6rem;
    border: 1px solid rgba(200, 255, 0, 0.3);
}

/* ============================================================
   HERO — animated gradient background
   ============================================================ */
.hero {
    text-align: center;
    padding: 5rem 1rem 3rem;
    animation: fadeUp 0.8s ease-out;
    position: relative;
    overflow: visible;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200, 255, 0, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 50% 100%, rgba(200, 255, 0, 0.03) 0%, transparent 50%);
    background-size: 100% 200%;
    animation: heroGradient 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.hero > * {
    position: relative;
    z-index: 1;
}
.hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c8ff00;
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(200, 255, 0, 0.3);
}
.hero h1 {
    font-size: 4.8rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 1.5rem;
    animation: glow 4s ease-in-out infinite;
}
.hero h1 .text-reveal {
    display: inline-block;
    padding-bottom: 0.1em;
    animation: textReveal 1.2s ease-out 0.3s both;
}
.hero h1 .accent { color: #c8ff00; }
.hero .tagline {
    font-size: 1.35rem;
    color: #ccc;
    font-weight: 400;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

/* --- ANALYSIS COUNTER --- */
.analysis-counter {
    margin: 1rem auto 0.5rem;
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.counter-number {
    color: #c8ff00;
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- SPORT STRIP --- */
.sports-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 2rem;
    padding: 0 1rem;
}
.sport-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
    padding: 0.3rem 0.7rem;
    border: 1px solid #1a1a1a;
    background: transparent;
    transition: all 0.3s ease;
    cursor: default;
}
.sport-tag:hover {
    color: #c8ff00;
    border-color: rgba(200, 255, 0, 0.4);
    box-shadow: 0 0 12px rgba(200, 255, 0, 0.15), inset 0 0 12px rgba(200, 255, 0, 0.05);
    text-shadow: 0 0 8px rgba(200, 255, 0, 0.4);
}
.sport-tag.highlight {
    color: #c8ff00;
    border-color: rgba(200, 255, 0, 0.25);
}
.sport-tag.highlight:hover {
    box-shadow: 0 0 20px rgba(200, 255, 0, 0.25), inset 0 0 12px rgba(200, 255, 0, 0.08);
}

/* ============================================================
   VALUE CARDS — colored, hover glow + scale
   ============================================================ */
.value-section { padding: 3rem 0 1rem; }
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.value-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.value-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px rgba(200, 255, 0, 0.08);
}
.card-number {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 1rem;
}
.card-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}
.card-desc {
    font-size: 0.78rem;
    line-height: 1.5;
    opacity: 0.7;
    flex: 1;
}
.card-arrow {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 1rem;
    opacity: 0.4;
    transition: opacity 0.3s, transform 0.3s;
}
.value-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(8px);
}

/* Card colors */
.card-lime {
    background: #c8ff00;
    color: #000;
}
.card-lime:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 40px rgba(200, 255, 0, 0.2);
}
.card-dark {
    background: #1a1a1a;
    color: #f0f0f0;
    border: 1px solid #2a2a2a;
}
.card-dark:hover {
    border-color: rgba(200, 255, 0, 0.4);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 25px rgba(200, 255, 0, 0.1);
}
.card-accent {
    background: #111;
    color: #f0f0f0;
    border: 1px solid #c8ff00;
}
.card-accent:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px rgba(200, 255, 0, 0.15);
}
.card-accent .card-number { color: #c8ff00; opacity: 1; }
.card-accent .card-arrow { color: #c8ff00; }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
    width: 60px;
    height: 2px;
    background: #c8ff00;
    margin: 3rem auto;
}

/* ============================================================
   STEPS — differentiated from value cards
   ============================================================ */
.steps-section { padding: 0 0 1rem; }
.steps-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
}
.steps {
    display: flex;
    gap: 1rem;
}
.step {
    flex: 1;
    padding: 2rem 1.5rem;
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c8ff00, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.step:hover {
    background: #111;
    border-color: rgba(200, 255, 0, 0.2);
    transform: translateY(-4px);
}
.step:hover::before {
    opacity: 1;
}
.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 255, 0, 0.08);
    border-radius: 12px;
    transition: background 0.3s;
}
.step:hover .step-icon {
    background: rgba(200, 255, 0, 0.15);
}
.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: #c8ff00;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.step-num {
    font-size: 0.65rem;
    font-weight: 700;
    color: #c8ff00;
    letter-spacing: 0.15em;
    line-height: 1;
    margin-bottom: 0.8rem;
    opacity: 0.6;
}
.step-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.step-desc {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.5;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #0f0f0f;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}
.cta-stat {
    font-size: 3.5rem;
    font-weight: 900;
    color: #c8ff00;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.cta-stat.counting {
    animation: countPulse 0.3s ease;
}
.cta-text {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
    max-width: 440px;
    margin: 0 auto;
}
.cta-text strong { color: #ccc; }
.cta-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}
.cta-feat { text-align: center; }
.cta-feat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 255, 0, 0.06);
    border-radius: 12px;
}
.cta-feat-icon svg {
    width: 24px;
    height: 24px;
    stroke: #c8ff00;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.cta-feat-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #777;
}

/* ============================================================
   VIDEO OPINION RECORDER
   ============================================================ */
.video-opinion-wrap {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #111;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    text-align: center;
}
.video-opinion-header {
    font-size: 1.1rem;
    font-weight: 800;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
}
.video-opinion-desc {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.video-opinion-btn {
    font-size: 0.9rem;
    padding: 0.8rem 2rem;
}
.video-opinion-recorder {
    margin-top: 1rem;
}
.video-opinion-recorder video,
.video-opinion-review video {
    width: 100%;
    max-width: 360px;
    border-radius: 12px;
    background: #000;
    aspect-ratio: 9/16;
    object-fit: cover;
}
.recorder-controls {
    margin-top: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}
.recorder-timer {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff3333;
    margin-top: 0.5rem;
    min-height: 2rem;
}
.video-opinion-review {
    margin-top: 1rem;
}
.review-buttons {
    margin-top: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}
.video-opinion-status {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    min-height: 1.2em;
}

/* ============================================================
   TIPS / ACCORDION
   ============================================================ */
.tips-section, .feedback-section { padding: 1rem 1.5rem; }
.tips-accordion {
    background: #111;
    border: 1px solid #1a1a1a;
    margin-bottom: 1rem;
    border-radius: 12px;
}
.tips-accordion summary {
    padding: 1rem 1.5rem;
    color: #888;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.2s;
}
.tips-accordion summary:hover { color: #c8ff00; }
.tips-content {
    padding: 0 1.5rem 1.5rem;
    color: #888;
    font-size: 0.85rem;
    line-height: 1.7;
}
.tips-content strong { color: #ccc; }
.tips-content ul { padding-left: 1.2rem; margin: 0.5rem 0; }
.tips-content li { margin: 0.3rem 0; }

/* --- FEATURED EXAMPLE (glassmorphism) --- */
.example-featured .example-label {
    color: #c8ff00;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.example-featured .tips-accordion {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(200, 255, 0, 0.02);
    border: 1px solid rgba(200, 255, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(200, 255, 0, 0.05);
}

/* Example analysis sections spacing */
.example-featured .analysis-section-block {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.example-featured .analysis-section-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Improvement pills */
.improvement-pill {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 0.6rem;
    transition: border-color 0.3s ease;
}
.improvement-pill:hover {
    border-color: rgba(200, 255, 0, 0.2);
}
.improvement-pill strong {
    display: block;
    color: #f0f0f0;
    margin-bottom: 0.3rem;
}
.improvement-pill .pill-fix {
    color: #c8ff00;
    font-weight: 600;
    font-size: 0.82rem;
}
.improvement-pill .pill-drill {
    color: #666;
    font-size: 0.78rem;
    font-style: italic;
    margin-top: 0.3rem;
}

.faq-highlighted .tips-accordion {
    background: rgba(200, 255, 0, 0.03);
    border-radius: 16px;
}

/* ============================================================
   UPLOAD / DROP ZONE
   ============================================================ */
.upload-section { padding: 2rem 1.5rem 3rem; }

/* --- UPLOAD TABS --- */
.upload-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
}
.upload-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    color: #666;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}
.upload-tab.active {
    background: #c8ff00;
    color: #0a0a0a;
}
.upload-tab:not(.active):hover {
    color: #ccc;
    background: rgba(200,255,0,0.05);
}

/* --- LINK PASTE ZONE --- */
.link-paste-zone {
    border: 2px dashed #222;
    background: #111;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.3s;
    border-radius: 12px;
}
.link-paste-zone:focus-within {
    border-color: #c8ff00;
}
.link-paste-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
.link-input-wrap {
    max-width: 500px;
    margin: 0 auto;
}
.link-input {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #333;
    color: #f5f5f5;
    font-size: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    text-align: center;
    transition: border-color 0.3s;
}
.link-input:focus {
    border-color: #c8ff00;
}
.link-input::placeholder {
    color: #444;
    font-size: 0.8rem;
}
.link-status {
    font-size: 0.8rem;
    margin-top: 0.6rem;
    min-height: 1.2em;
    transition: color 0.3s;
}
.link-hint {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
}

.link-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 1rem;
    padding: 12px 16px;
    background: rgba(200,255,0,0.05);
    border-radius: 10px;
    border: 1px solid rgba(200,255,0,0.1);
}

.link-step {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.4;
}

.link-step strong {
    color: #c8ff00;
}

.upload-small-note {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

/* --- DROP ZONE — marching ants --- */
.drop-zone {
    background: #111;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    border-radius: 12px;
}
.drop-zone::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px dashed #333;
    pointer-events: none;
    transition: border-color 0.3s;
}
.drop-zone:hover::before, .drop-zone.drag-over::before {
    border-color: #c8ff00;
    animation: none;
}
.drop-zone.drag-over {
    background: #0f0f0f;
}
/* Marching ants via SVG background */
.drop-zone.file-mode-active::before {
    border: none;
    background: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%23333' stroke-width='2' stroke-dasharray='10' stroke-dashoffset='0'%3E%3Canimate attributeName='stroke-dashoffset' values='0;-20' dur='0.8s' repeatCount='indefinite'/%3E%3C/rect%3E%3C/svg%3E");
}

.drop-icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.5; }
.drop-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 0.3rem;
}
.drop-sub { font-size: 0.85rem; color: #666; }
.drop-link { color: #c8ff00; cursor: pointer; }
.drop-formats {
    font-size: 0.7rem;
    color: #444;
    margin-top: 0.8rem;
    letter-spacing: 0.05em;
}

/* --- UPLOAD NOTE --- */
.upload-note {
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(200,255,0,0.08);
    border: 1px solid rgba(200,255,0,0.2);
    border-radius: 12px;
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
}
.upload-note strong {
    color: #c8ff00;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8ff00;
    margin-bottom: 1rem;
}

/* --- FILE LIST --- */
.file-list { margin: 1rem 0; }
.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    background: #111;
    border: 1px solid #1a1a1a;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
    border-radius: 8px;
}
.file-item-name {
    color: #ccc;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.file-item-size { color: #666; margin: 0 1rem; font-size: 0.75rem; }
.file-item-remove {
    color: #555;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0 0.3rem;
}
.file-item-remove:hover { color: #ff3333; }

/* --- CONTEXT INPUT --- */
.context-input { margin: 1rem 0; }
.context-input textarea {
    width: 100%;
    background: #111;
    color: #f5f5f5;
    border: 1px solid #222;
    padding: 0.8rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    resize: vertical;
    transition: border-color 0.2s;
    border-radius: 8px;
}
.context-input textarea:focus {
    outline: none;
    border-color: #c8ff00;
}
.context-input textarea::placeholder { color: #555; }

/* --- BUTTONS --- */
.btn-primary {
    display: block;
    width: 100%;
    background: #c8ff00;
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
    border-radius: 8px;
}
.btn-primary:hover:not(:disabled) {
    background: #fff;
    box-shadow: 0 0 30px rgba(200, 255, 0, 0.2);
}
.btn-primary:active:not(:disabled) { background: #b0e000; transform: scale(0.98); }
.btn-primary:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
/* Pulse animation for analyze button */
.btn-primary.btn-pulse:not(:disabled) {
    animation: btnPulse 2s ease-in-out infinite;
}
.btn-primary.btn-pulse:hover:not(:disabled) {
    animation: none;
    box-shadow: 0 0 30px rgba(200, 255, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #888;
    border: 1px solid #333;
    padding: 0.6rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
    border-radius: 6px;
}
.btn-secondary:hover {
    color: #c8ff00;
    border-color: #c8ff00;
}

/* ============================================================
   ANALYSIS CARD
   ============================================================ */
.analysis-section {
    padding: 2rem 1.5rem;
    animation: fadeUp 0.6s ease-out;
}
.analysis-card-wrap {
    position: relative;
    margin: 1rem 0;
}
.analysis-compliment {
    background: #111;
    border-left: 3px solid #c8ff00;
    padding: 2rem 2.5rem;
    margin-bottom: 0;
    border-radius: 12px 12px 0 0;
}
.analysis-compliment h2 {
    color: #c8ff00;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.analysis-card {
    background: #111;
    border-left: 3px solid #c8ff00;
    padding: 2.5rem;
    transition: filter 0.5s ease, max-height 0.5s ease;
    border-radius: 0 0 12px 12px;
}
.analysis-card.analysis-locked {
    filter: blur(8px);
    user-select: none;
    pointer-events: none;
    max-height: 300px;
    overflow: hidden;
}

.share-wall {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(17,17,17,1) 0%, rgba(17,17,17,0.95) 100%);
    border-left: 3px solid #c8ff00;
    padding: 2rem 1rem;
}
.share-wall-content {
    text-align: center;
    max-width: 400px;
    padding: 1.5rem;
}
.share-wall-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.share-wall-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}
.share-wall-sub {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1.2rem;
}
.share-wall .btn-challenge {
    display: inline-flex;
    margin: 0.3rem;
}
.share-wall .whatsapp-wall {
    background: #25D366;
    color: #fff;
    text-decoration: none;
}
.share-wall .whatsapp-wall:hover {
    background: #1ebe57;
}
.share-wall-skip {
    margin-top: 1rem;
}
.share-wall-skip a {
    font-size: 0.75rem;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}
.share-wall-skip a:hover {
    color: #aaa;
}
.analysis-card h2 {
    color: #c8ff00;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.analysis-card p, .analysis-card li {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.analysis-card strong { color: #f0f0f0; }
.analysis-card h3, .analysis-card h4 { color: #f0f0f0; margin: 1.5rem 0 0.5rem; }
.analysis-card ul, .analysis-card ol { padding-left: 1.5rem; }

/* --- SCORE DISPLAY --- */
.score-section {
    text-align: center;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border: 1px solid #1a1a1a;
    border-radius: 16px;
}
.score-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 0.8rem;
}
.score-ring {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
}
.score-ring svg {
    transform: rotate(-90deg);
    width: 160px;
    height: 160px;
}
.score-ring .ring-bg {
    fill: none;
    stroke: #1a1a1a;
    stroke-width: 8;
}
.score-ring .ring-fill {
    fill: none;
    stroke: #c8ff00;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
}
.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
}
.score-value span { font-size: 1.2rem; color: #666; font-weight: 400; }
.score-verdict {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}
.score-verdict.excellent { background: rgba(200, 255, 0, 0.15); color: #c8ff00; }
.score-verdict.good { background: rgba(0, 180, 255, 0.15); color: #00b4ff; }
.score-verdict.average { background: rgba(255, 170, 0, 0.15); color: #ffaa00; }
.score-verdict.needs-work { background: rgba(255, 60, 60, 0.15); color: #ff3c3c; }

.analysis-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: #444;
    margin: 1rem 0;
}

.post-analysis-share {
    text-align: center;
    padding: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid #1a1a1a;
}
.post-analysis-share p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 1rem;
}

/* ============================================================
   PROGRESS OVERLAY
   ============================================================ */
.progress-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.92);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.progress-card {
    text-align: center;
    padding: 3rem;
    max-width: 400px;
}
.progress-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid #222;
    border-top-color: #c8ff00;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1.5rem;
}
.progress-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 1rem;
}
.progress-bar-wrap {
    width: 100%;
    height: 3px;
    background: #222;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 2px;
}
.progress-bar {
    height: 100%;
    background: #c8ff00;
    width: 0%;
    transition: width 0.5s ease;
}
.progress-sub {
    font-size: 0.8rem;
    color: #555;
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================================
   FEEDBACK
   ============================================================ */
.feedback-section textarea {
    width: 100%;
    background: #0f0f0f;
    color: #f5f5f5;
    border: 1px solid #222;
    padding: 0.8rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    resize: vertical;
    margin-bottom: 0.5rem;
    border-radius: 8px;
}
.feedback-section textarea:focus {
    outline: none;
    border-color: #c8ff00;
}
.feedback-section textarea::placeholder { color: #555; }
.feedback-status {
    font-size: 0.8rem;
    color: #c8ff00;
    margin-top: 0.5rem;
}

/* ============================================================
   SHARE SECTION — platform-colored hovers
   ============================================================ */
.share-section {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    margin: 2rem auto;
    max-width: 760px;
    border-radius: 16px;
}
.share-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 0.5rem;
}
.share-cta {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.share-cta .accent { color: #c8ff00; }
.share-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #222;
    background: #111;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    color: #888;
}
.share-btn .btn-icon { font-size: 1rem; }

/* Platform-specific hover colors */
.share-btn.whatsapp { color: #888; }
.share-btn.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.15);
}
.share-btn.facebook { color: #888; }
.share-btn.facebook:hover {
    border-color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.15);
}
.share-btn.twitter { color: #888; }
.share-btn.twitter:hover {
    border-color: #f0f0f0;
    background: rgba(255, 255, 255, 0.05);
    color: #f0f0f0;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}
.share-btn.copy-link { color: #888; }
.share-btn.copy-link:hover {
    border-color: #c8ff00;
    background: rgba(200, 255, 0, 0.08);
    color: #c8ff00;
    box-shadow: 0 0 20px rgba(200, 255, 0, 0.12);
}

/* ============================================================
   CHALLENGE SHARE
   ============================================================ */
.challenge-share {
    text-align: center;
    padding: 2rem 1.5rem;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border: 2px solid #c8ff00;
    border-radius: 16px;
    animation: fadeUp 0.6s ease;
}
.challenge-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.3rem;
}
.challenge-sub {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1.2rem;
}
.btn-challenge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.5rem;
    background: #c8ff00;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
    border-radius: 8px;
}
.btn-challenge:hover {
    background: #fff;
    transform: scale(1.03);
}
.btn-challenge:active {
    transform: scale(0.97);
}
.challenge-links {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.share-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.9rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1px solid #222;
    background: #0f0f0f;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 99px;
}
.share-pill:hover { border-color: #c8ff00; color: #c8ff00; }
.share-pill.whatsapp:hover { border-color: #25D366; color: #25D366; }
.share-pill.facebook:hover { border-color: #1877F2; color: #1877F2; }

#scoreCardCanvas { display: none; }
.score-card-preview {
    margin: 1rem auto;
    max-width: 360px;
}
.score-card-preview img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #222;
}

/* ============================================================
   BUY COFFEE
   ============================================================ */
.coffee-section {
    text-align: center;
    padding: 2rem 1.5rem;
    margin: 1rem auto;
    max-width: 760px;
}
.coffee-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 50px;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.coffee-btn:hover {
    border-color: #c8ff00;
    color: #c8ff00;
    background: rgba(200, 255, 0, 0.05);
}
.coffee-btn .coffee-icon { font-size: 1.2rem; }
.coffee-sub {
    font-size: 0.7rem;
    color: #444;
    margin-top: 0.5rem;
}

/* ============================================================
   FOOTER — enhanced
   ============================================================ */
.footer {
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 3rem;
    position: relative;
}
.footer::before {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8ff00, transparent);
    margin: 0 auto 2rem;
}
.footer-brand {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #444;
}
.footer-sub {
    font-size: 0.8rem;
    color: #555;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ============================================================
   LINKS
   ============================================================ */
a { color: #c8ff00; text-decoration: none; }
a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
    .hero h1 { font-size: 2.8rem; }
    .hero { padding: 3rem 1rem 2rem; }
    .steps { flex-direction: column; gap: 0.8rem; }
    .step { padding: 1.5rem; }
    .value-grid { grid-template-columns: 1fr; }
    .value-card { min-height: auto; }
    .sports-strip {
        gap: 0.3rem;
        padding: 0 0.5rem;
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: wrap;
        justify-content: center;
    }
    .sport-tag { font-size: 0.5rem; padding: 0.2rem 0.5rem; }
    .cta-features { gap: 1.5rem; }
    .cta-stat { font-size: 2.8rem; }
    .analysis-card { padding: 1.5rem; }
    .share-buttons { flex-direction: column; align-items: center; }
    .score-ring { width: 130px; height: 130px; }
    .score-ring svg { width: 130px; height: 130px; }
    .score-value { font-size: 2.5rem; }
    .example-tabs { flex-wrap: wrap; }
    .example-tab { font-size: 0.8rem; padding: 0.5rem 1rem; }
    .improvement-pill { padding: 0.8rem 1rem; }
}

/* --- EXAMPLE ANALYSIS --- */
.example-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.example-intro {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.example-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.example-tab {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #888;
    padding: 0.6rem 1.2rem;
    border-radius: 99px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.example-tab:hover {
    background: rgba(200,255,0,0.08);
    color: #c8ff00;
    border-color: rgba(200,255,0,0.3);
}

.example-tab.active {
    background: rgba(200,255,0,0.12);
    color: #c8ff00;
    border-color: rgba(200,255,0,0.4);
}

.example-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
}

.example-badge {
    display: inline-block;
    background: rgba(200,255,0,0.1);
    color: #c8ff00;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.example-card h4 {
    color: #fff;
    font-size: 1rem;
    margin: 1.2rem 0 0.5rem 0;
    font-weight: 600;
}

.example-card h4:first-of-type {
    margin-top: 0;
}

.example-card p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.example-card strong {
    color: #c8ff00;
}

/* ============================================================
   NICK INPUT
   ============================================================ */
.nick-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    border-radius: 8px;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    transition: border-color 0.2s;
}
.nick-input:focus {
    outline: none;
    border-color: #c8ff00;
}
.nick-input::placeholder {
    color: #666;
}
.club-select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    border-radius: 8px;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c8ff00' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}
.club-select:focus {
    outline: none;
    border-color: #c8ff00;
}
.club-select option {
    background: #1a1a1a;
    color: #f5f5f5;
}

/* ============================================================
   RANKING
   ============================================================ */
.ranking-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

.ranking-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #f5f5f5;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ranking-sub {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.ranking-table-wrap {
    overflow-x: auto;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.ranking-table thead th {
    color: #c8ff00;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid #333;
    text-align: left;
}

.ranking-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}

.ranking-table tbody tr:hover {
    background: rgba(200,255,0,0.03);
}

.ranking-table td {
    padding: 0.7rem 0.8rem;
    color: #ccc;
}

.ranking-table td:first-child {
    color: #888;
    font-weight: 700;
    width: 40px;
}

.ranking-table .rank-1 td:first-child { color: #FFD700; }
.ranking-table .rank-2 td:first-child { color: #C0C0C0; }
.ranking-table .rank-3 td:first-child { color: #CD7F32; }

.ranking-table .rank-1 td,
.ranking-table .rank-2 td,
.ranking-table .rank-3 td {
    font-weight: 600;
}

.ranking-table .score-cell {
    color: #c8ff00;
    font-weight: 800;
    font-size: 1.1rem;
}

.ranking-table .sport-cell {
    color: #999;
    font-size: 0.85rem;
}

.ranking-empty {
    color: #666;
    padding: 2rem;
    font-style: italic;
}

/* ============================================================
   UPLOAD MICRO TEXT
   ============================================================ */
.upload-micro {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.8rem;
}

/* ============================================================
   FOOTER — consolidated (share + feedback + coffee)
   ============================================================ */
.footer-share {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-share-label {
    display: block;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.footer-share-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-share-btns a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    transition: all 0.2s;
}

.footer-share-btns a:hover {
    border-color: #c8ff00;
    color: #c8ff00;
}

.footer-feedback {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.footer-feedback textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    border-radius: 8px;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    resize: vertical;
}

.footer-feedback textarea:focus {
    outline: none;
    border-color: #c8ff00;
}

.footer-feedback textarea::placeholder {
    color: #555;
}

.footer-feedback .btn-secondary {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
}

.coffee-link {
    display: inline-block;
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.coffee-link:hover {
    color: #c8ff00;
}

/* ============================================================
   FEATURES SHOWCASE
   ============================================================ */
.features-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}
.features-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c8ff00;
    margin-bottom: 2rem;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    transition: border-color 0.3s;
}
.feature-card:hover {
    border-color: rgba(200,255,0,0.3);
}
.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}
.feature-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 0.4rem;
}
.feature-desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

/* ============================================================
   PLAYER CARD (FIFA-style)
   ============================================================ */
.player-card {
    background: linear-gradient(145deg, #111 0%, #1a1a1a 50%, #111 100%);
    border: 2px solid rgba(200,255,0,0.3);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 340px;
    margin: 1.5rem auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.player-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(200,255,0,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.card-logo {
    font-size: 14px;
    font-weight: 900;
    color: #888;
    letter-spacing: -0.5px;
}
.card-date {
    font-size: 11px;
    color: #555;
}
.card-nick {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f5f5f5;
    margin-bottom: 0.3rem;
}
.card-score {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.card-score-max {
    font-size: 1.2rem;
    color: #555;
    font-weight: 600;
}
.card-club {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}
.card-attrs {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.card-attr {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
}
.card-attr-icon {
    font-size: 1.2rem;
    margin-bottom: 2px;
}
.card-attr-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #c8ff00;
}
.card-attr-label {
    font-size: 0.6rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.card-radar {
    margin: 0.5rem auto;
    display: flex;
    justify-content: center;
}
.card-radar svg {
    max-width: 100%;
    height: auto;
}
.card-footer {
    font-size: 0.7rem;
    color: #444;
    margin-top: 0.8rem;
    letter-spacing: 1px;
}

/* ============================================================
   PROFIL GRACZA
   ============================================================ */
.profil-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 6rem 1.5rem 3rem;
}
.profil-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.profil-nick {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f5f5f5;
}
.profil-subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-top: 0.3rem;
}
.profil-section {
    margin-top: 2rem;
}
.profil-section h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c8ff00;
    margin-bottom: 1rem;
}
.progress-chart {
    text-align: center;
}
.attr-bar-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}
.attr-bar-label {
    width: 130px;
    font-size: 0.8rem;
    color: #aaa;
    flex-shrink: 0;
}
.attr-bar-wrap {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}
.attr-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}
.attr-bar-val {
    width: 70px;
    text-align: right;
    font-size: 0.9rem;
    font-weight: 700;
    color: #f5f5f5;
    flex-shrink: 0;
}
.profil-radar {
    text-align: center;
}
.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.history-date {
    color: #666;
    font-size: 0.8rem;
    width: 90px;
}
.history-sport {
    color: #aaa;
    font-size: 0.85rem;
    flex: 1;
}
.history-score {
    font-weight: 800;
    font-size: 1rem;
}

.pulse-input-wrap {
    margin-top: 0.3rem;
}
.pulse-hint {
    display: block;
    font-size: 0.7rem;
    color: #555;
    margin-top: 0.2rem;
    padding-left: 0.2rem;
}

.analysis-text-profil {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.7;
}
.analysis-text-profil strong {
    color: #f5f5f5;
}
.analysis-section-block {
    margin-bottom: 1rem;
}
.analysis-heading {
    color: #c8ff00;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.analysis-point-card {
    background: rgba(255,255,255,0.04);
    border-left: 3px solid #c8ff00;
    padding: 0.6rem 0.8rem;
    margin: 1rem 0 0.5rem;
    border-radius: 0 6px 6px 0;
}
.point-num {
    color: #c8ff00;
    font-weight: 900;
    font-size: 1.1rem;
    margin-right: 0.3rem;
}
.point-title {
    color: #f5f5f5;
    font-weight: 700;
    font-size: 0.95rem;
}
.point-detail {
    padding-left: 1rem;
    margin: 0.3rem 0;
    font-size: 0.85rem;
}
.point-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.4rem;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
}
.point-label.bad { background: rgba(255,68,68,0.15); color: #ff6666; }
.point-label.good { background: rgba(200,255,0,0.15); color: #c8ff00; }
.point-label.drill { background: rgba(100,150,255,0.15); color: #88aaff; }
.super-weapon {
    background: rgba(200,255,0,0.08);
    border: 1px solid rgba(200,255,0,0.25);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    color: #c8ff00;
    font-weight: 700;
    font-size: 1rem;
}

.club-ranking-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c8ff00;
    text-align: center;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 1.5rem 3rem;
}
.blog-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f5f5f5;
    margin-bottom: 0.3rem;
}
.blog-subtitle {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.blog-card {
    display: block;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: border-color 0.3s, transform 0.2s;
}
.blog-card:hover {
    border-color: #c8ff00;
    transform: translateY(-2px);
}
.blog-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f5f5f5;
    margin: 0.5rem 0 0.4rem;
}
.blog-card p {
    color: #aaa;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}
.blog-card-sport {
    display: inline-block;
    background: rgba(200,255,0,0.15);
    color: #c8ff00;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}
.blog-card-date {
    color: #666;
    font-size: 0.8rem;
}

/* Article */
.article-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 6rem 1.5rem 3rem;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.article-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f5f5f5;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.article-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
}
.article-content p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}
.article-content strong {
    color: #f5f5f5;
}
.article-content ul, .article-content ol {
    color: #ccc;
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}
.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.article-content a {
    color: #c8ff00;
}
.article-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(200,255,0,0.06);
    border: 1px solid rgba(200,255,0,0.2);
    border-radius: 12px;
    text-align: center;
}
.article-cta h3 {
    color: #f5f5f5;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.article-cta p {
    color: #aaa;
    margin-bottom: 1rem;
}
.article-more {
    margin-top: 2.5rem;
}
.article-more h3 {
    color: #888;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.article-link {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
}
.article-link:hover {
    color: #c8ff00;
}

/* --- FEATURE HERO CARD (full-width with mini FIFA card) --- */
.feature-card-hero {
    grid-column: 1 / -1;
    border: 1px solid rgba(200,255,0,0.15);
}
.feature-hero-inner {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.feature-hero-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(200,255,0,0.2);
    border-radius: 12px;
    padding: 1.2rem;
    min-width: 180px;
    max-width: 200px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 12px rgba(200,255,0,0.04);
}
.feature-hero-text {
    flex: 1;
}
.feature-hero-text .feature-name {
    margin-bottom: 0.4rem;
}
@media (max-width: 640px) {
    .feature-hero-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .feature-hero-card {
        max-width: 100%;
        min-width: unset;
    }
}
.ptc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.ptc-score {
    font-size: 2.2rem;
    font-weight: 900;
    color: #c8ff00;
    line-height: 1;
}
.ptc-nick {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
}
.ptc-sport {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.ptc-attrs {
    display: flex;
    justify-content: space-between;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
}
.ptc-attr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}
.ptc-attr-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #f5f5f5;
}
.ptc-attr-name {
    font-size: 0.6rem;
    color: #666;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.ptc-progress {
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.profile-teaser-text {
    max-width: 340px;
}
.ptt-item {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
    line-height: 1.5;
}
.ptt-item strong {
    color: #f5f5f5;
}
.ptt-cta {
    display: inline-block;
    margin-top: 0.8rem;
    color: #c8ff00;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 2px solid rgba(200,255,0,0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}
.ptt-cta:hover {
    border-color: #c8ff00;
}
@media (max-width: 640px) {
    .profile-teaser-wrap {
        flex-direction: column;
        gap: 1.5rem;
    }
    .profile-teaser-card {
        width: 100%;
        max-width: 280px;
    }
}
