/* Layout Container */
.ficha-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    box-sizing: border-box;
}

/* Header (Yellow Block) */
.ficha-header {
    background-color: #F6B333;
    color: #fff;
    padding: 24px;
    margin-bottom: 30px;
    text-align: center; /* Centered as per mockup aesthetic, or keep right if preferred */
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.ficha-header h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}
.ficha-header .platforms {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.95;
}

/* Game Card Wrapper */
.ficha-card-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

/* Description Text */
.ficha-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    text-align: left; /* Or justify */
}

/* Info Box (Dark Grey) */
.ficha-info-box {
    background-color: #383838; /* Dark Grey matching mockup */
    color: #f0f0f0;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 1.8;
}
.ficha-info-box b {
    color: #aaa; /* Lighter grey label */
    font-weight: 600;
    margin-right: 5px;
}

/* SEO Tags (Mockup Design) */
.ficha-seo-tags {
    text-align: center;
    margin: 40px 0;
}
.ficha-seo-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    display: block;
}
.ficha-seo-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.ficha-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e1e4e8;
    color: #3b82f6; /* Blue link color */
    padding: 8px 16px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.ficha-tag:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.ficha-tag i {
    width: 16px;
    height: 16px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .ficha-header h1 { font-size: 22px; }
    .ficha-layout { padding: 10px; }
}
