/* === WIDE SCOUT CARD LAYOUT (20% - 20% - 60%) === */

/* Header Adjustments */
.full-width-header {
    width: 100%;
    margin-bottom: 40px;
}
.header-content {
    display: flex; align-items: center; gap: 20px;
}
.feature-icon-wrapper.small {
    width: 60px; height: 60px;
    margin-bottom: 0;
}
.full-width {
    width: 100%;
    flex: none; /* Override flex-1 from previous blocks */
}
.spider-block.wide-mode {
    flex-direction: column; /* Stack header and card vertically */
    align-items: flex-start;
}

/* --- THE CARD CONTAINER --- */
.scout-card-wide {
    display: grid;
    /* PROPORTIONS: 20% | 20% | 60% */
    grid-template-columns: 2fr 2fr 6fr; 
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid #334155;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.5);
    min-height: 350px;
}

/* --- COL 1: PROFILE --- */
.col-profile {
    background: rgba(255,255,255,0.02);
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-photo-area {
    margin-bottom: 20px;
    position: relative;
}

.photo-circle {
    width: 90px; height: 90px;
    background: #334155;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; color: #94a3b8;
    border: 3px solid #475569;
    position: relative;
}

.ovr-badge {
    position: absolute;
    bottom: 0; right: 0;
    background: #3b82f6; color: white;
    width: 30px; height: 30px;
    border-radius: 50%;
    font-size: 0.9rem; font-weight: bold;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #1e293b;
}

.p-name { color: #fff; margin: 0 0 5px 0; font-size: 1.1rem; }
.p-role { color: #60a5fa; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; margin-bottom: 20px; display: block; }

.p-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.stat-box {
    background: rgba(0,0,0,0.2);
    padding: 8px;
    border-radius: 8px;
}
.stat-box .lbl { display: block; font-size: 0.65rem; color: #64748b; text-transform: uppercase; }
.stat-box .val { display: block; font-size: 0.9rem; color: #fff; font-weight: 700; }


/* --- COL 2: ANALYSIS --- */
.col-analysis {
    padding: 25px;
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    font-size: 0.7rem; color: #64748b; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 5px;
}

.scout-text {
    font-size: 0.85rem; color: #cbd5e1; line-height: 1.5; margin-bottom: 25px; font-style: italic;
}

.ref-card {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.1), transparent);
    border-left: 3px solid #3b82f6;
    padding: 10px;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
}

.ref-icon { font-size: 1.2rem; }
.ref-data { display: flex; flex-direction: column; }
.ref-name { color: #fff; font-weight: 700; font-size: 0.95rem; }
.ref-style { color: #60a5fa; font-size: 0.75rem; }

.tags-section { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: #334155; color: #94a3b8; font-size: 0.7rem; padding: 4px 8px; border-radius: 4px; }


/* --- COL 3: RADAR (BIG) --- */
.col-radar {
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(59,130,246,0.05) 0%, transparent 60%);
}

.radar-header {
    position: absolute;
    top: 20px; right: 30px;
    display: flex; gap: 15px;
}
.legend-item { font-size: 0.75rem; color: #94a3b8; display: flex; align-items: center; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.player { background: #3b82f6; box-shadow: 0 0 8px #3b82f6; }
.dot.team { background: #64748b; opacity: 0.5; }

.radar-wrapper {
    width: 100%;
    height: 100%;
    display: flex; align-items: center; justify-content: center;
}

.radar-wide-svg {
    width: 100%;
    max-width: 320px; /* Limit size so it doesn't look weird on super wide screens */
    height: auto;
    overflow: visible;
}

/* SVG Styles */
.grid-poly { fill: none; stroke: #334155; stroke-width: 0.5; }
.axis { stroke: #334155; stroke-width: 0.5; }

.shape-team {
    fill: rgba(148, 163, 184, 0.1);
    stroke: #64748b;
    stroke-width: 2;
}

.shape-player-wide {
    fill: rgba(59, 130, 246, 0.4);
    stroke: #3b82f6;
    stroke-width: 3;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
    animation: radarPulse 4s infinite alternate;
}

.w-label {
    fill: #64748b; font-size: 10px; font-weight: 700; text-anchor: middle; dominant-baseline: middle; font-family: 'Montserrat', sans-serif;
}
.w-label.top { fill: #f8fafc; font-weight: 800; font-size: 12px; }

/* Responsive Adjustments */
@media (max-width: 900px) {
    .scout-card-wide {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
    }
    .col-profile, .col-analysis, .col-radar {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .radar-header { position: relative; top: 0; right: 0; margin-bottom: 20px; }
}