/* ===== Winterfell Theme - Game of Thrones Inspired ===== */

/* Import police médiévale type "Game of Thrones" */
@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&display=swap');

:root {
    --winter-bg: #1a1a1a;
    --ice-gray: #ccc;
    --noble-blue: #3e5060;
    --steel-border: #666;
    --highlight: #99c2ff;
    --font-main: 'MedievalSharp', cursive;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: url('https://www.transparenttextures.com/patterns/black-linen.png') repeat;
    color: var(--ice-gray);
    font-family: var(--font-main);
    padding: 20px;
    line-height: 1.6;
    background-color: var(--winter-bg);
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 2px solid var(--steel-border);
    background: rgba(0, 0, 0, 0.4);
}

header h1 {
    font-size: 3rem;
    color: var(--highlight);
    letter-spacing: 2px;
    text-shadow: 0 0 5px #000;
}

nav {
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: var(--ice-gray);
    margin: 0 15px;
    padding: 6px 12px;
    border: 1px solid var(--steel-border);
    background: rgba(62, 80, 96, 0.5);
    border-radius: 4px;
    transition: background 0.3s ease;
}

nav a:hover {
    background: var(--highlight);
    color: #000;
}

main {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--steel-border);
    padding: 20px;
    border-radius: 6px;
    max-width: 800px;
    margin: auto;
}

h2, h3 {
    color: var(--highlight);
    margin-top: 20px;
    text-shadow: 1px 1px #000;
}

a {
    color: var(--highlight);
}

form {
    margin-top: 20px;
    max-width: 400px;
}

input, button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    border: 1px solid var(--steel-border);
    background: #2c2c2c;
    color: var(--ice-gray);
    border-radius: 4px;
}

.btn {
    background: var(--noble-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin: 10px 5px;
    transition: transform 0.2s, background 0.3s;
    border: 1px solid var(--steel-border);
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: var(--highlight);
    color: #000;
}


video {
    width: 100%;
    max-width: 720px;
    margin: 15px 0;
    border: 2px solid var(--steel-border);
    border-radius: 6px;
    background: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.meta {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: #2a9d8f;
    text-decoration: none;
}

.edit-link {
    color: #666;
    font-size: 0.9em;
}
