/* Dandy Template CSS */
.dandy-card {
    width: 100%;
    background: #2a2a2a;
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    font-family: 'Arial Black', Arial, sans-serif;
}

/* LEFT COLUMN */
.dandy-card .left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dandy-card .portrait-container {
    width: 100%;
    height: 350px;
    background: #000;
    border-radius: 15px;
    border: 4px solid #3a3a3a;
    overflow: hidden;
}

.dandy-card .character-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dandy-card .character-info {
    background: #3a3a3a;
    border-radius: 15px;
    border: 4px solid #000;
    padding: 15px 20px;
    box-shadow: 0 4px 0 rgba(0,0,0,0.5);
    text-align: center;
}

.dandy-card .character-name {
    font-size: 28px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
    margin-bottom: 8px;
}

.dandy-card .character-age {
    font-size: 16px;
    font-weight: 700;
    color: #aaaaaa;
}

.dandy-card .stats-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dandy-card .stat-bar {
    background: linear-gradient(90deg, var(--stat-color) 0%, var(--stat-color-dark) 100%);
    border-radius: 8px;
    padding: 10px 15px;
    border: 3px solid #000;
    box-shadow: 0 4px 0 rgba(0,0,0,0.5);
}

.dandy-card .stat-bar.health {
    --stat-color: #ff6b6b;
    --stat-color-dark: #cc5555;
}

.dandy-card .stat-bar.skill {
    --stat-color: #ffa94d;
    --stat-color-dark: #cc8844;
}

.dandy-card .stat-bar.movement {
    --stat-color: #ffd93d;
    --stat-color-dark: #ccaa33;
}

.dandy-card .stat-bar.stamina {
    --stat-color: #6bcf7f;
    --stat-color-dark: #55a566;
}

.dandy-card .stat-bar.stealth {
    --stat-color: #4dabf7;
    --stat-color-dark: #3388cc;
}

.dandy-card .stat-bar.extraction {
    --stat-color: #b197fc;
    --stat-color-dark: #8866cc;
}

.dandy-card .stat-name {
    font-size: 14px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
    margin-bottom: 8px;
}

.dandy-card .stat-icons {
    display: flex;
    gap: 8px;
    font-size: 28px;
}

.dandy-card .stat-icon {
    opacity: 0.3;
    filter: grayscale(100%);
    transition: all 0.2s ease;
}

.dandy-card .stat-icon.filled {
    opacity: 1;
    filter: grayscale(0%) drop-shadow(0 0 6px currentColor);
}

/* RIGHT COLUMN */
.dandy-card .right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dandy-card .ability-container {
    flex: 1;
    background: #3a3a3a;
    border-radius: 15px;
    border: 4px solid #000;
    padding: 20px;
    box-shadow: 0 4px 0 rgba(0,0,0,0.5);
}

.dandy-card .ability-header {
    font-size: 18px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.dandy-card .ability-content {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 15px;
    min-height: 100px;
}

.dandy-card .ability-text {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    font-weight: normal;
}

.dandy-card .select-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #6bcf7f 0%, #51cf66 100%);
    border: 4px solid #000;
    border-radius: 12px;
    color: white;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 0 #2d8a3f;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.dandy-card .select-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #2d8a3f;
}

.dandy-card .select-button:active {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #2d8a3f;
}

/* Responsive */
@media (max-width: 900px) {
    .dandy-card {
        grid-template-columns: 1fr;
    }
}