/* Wiki global styles - centralisé depuis toutes les pages du wiki EN/FR */

.wiki-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #2c2c2c;
    border-radius: 8px;
}
.wiki-header {
    text-align: center;
    margin-bottom: 30px;
}
.wiki-header h1 {
    color: #FFA000;
    font-family: 'Cinzel', serif;
    font-size: 2.5em;
    margin-bottom: 10px;
}
.wiki-header p {
    color: #eee;
    font-size: 1.2em;
}
.wiki-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}
.wiki-category {
    background: linear-gradient(135deg, #2a2a2a, #222);
    border-radius: 8px;
    padding: 20px;
    width: 280px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}
.wiki-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #FFA000;
}
.wiki-category h2 {
    color: #FFA000;
    font-family: 'Cinzel', serif;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.5em;
}
.wiki-category-icon {
    background-color: rgba(255, 160, 0, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8em;
    color: #FFA000;
}
.wiki-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wiki-links li {
    margin-bottom: 10px;
}
.wiki-links a {
    display: block;
    padding: 8px 10px;
    background-color: #333;
    color: #eee;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.wiki-links a:hover {
    background-color: #444;
    color: #FFA000;
    padding-left: 15px;
}
.back-to-home {
    display: inline-block;
    margin-top: 20px;
    color: #FFA000;
    text-decoration: none;
}
.wiki-article {
    line-height: 1.6;
}
.wiki-article h1 {
    color: #FFA000;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Cinzel', serif;
}
.wiki-article h2 {
    color: #FFA000;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    font-family: 'Cinzel', serif;
}
.wiki-article h3 {
    color: #FFA000;
    margin-top: 25px;
    font-family: 'Cinzel', serif;
}
.wiki-article p {
    margin-bottom: 16px;
}
.wiki-article ul, .wiki-article ol {
    margin-bottom: 20px;
    padding-left: 25px;
}
.wiki-article li {
    margin-bottom: 8px;
}
.wiki-article img {
    max-width: 100%;
    border-radius: 5px;
    margin: 10px 0;
}
.important {
    background-color: rgba(255, 160, 0, 0.1);
    border-left: 4px solid #FFA000;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}
.tip {
    background-color: rgba(100, 200, 100, 0.1);
    border-left: 4px solid #6c6;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}
.recipes-table-container {
    overflow-x: auto;
    margin: 20px 0;
}
.recipes-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #333;
    border-radius: 8px;
}
.recipes-table th,
.recipes-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #444;
}
.recipes-table th {
    background-color: #2a2a2a;
    color: #FFA000;
    font-family: 'Cinzel', serif;
}
.recipes-table tr:hover {
    background-color: #3a3a3a;
}
.recipes-table ul {
    margin: 0;
    padding-left: 20px;
}
.recipes-table li {
    margin-bottom: 5px;
} 