/* Reset et variables CSS - Style League of Legends avec couleurs jaune/noir */
@import url('https://fonts.googleapis.com/css2?family=Beaufort+Pro:wght@400;700;900&family=Spiegel:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c8aa6e;
    --gold-light: #f0e6d2;
    --gold-dark: #a0906d;
    --black: #010a13;
    --dark-bg: #0a0a0a;
    --text-primary: #c8aa6e;
    --text-secondary: #a0906d;
    --text-muted: #5b5a56;
    --border-gold: rgba(200, 170, 110, 0.3);
}

body {
    font-family: 'Spiegel', 'Arial', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow: hidden;
    background-image: url('../assets/img/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 10, 19, 0.95) 0%, rgba(1, 10, 19, 0.85) 100%);
    z-index: -1;
    pointer-events: none;
}

.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    position: relative;
}

/* Croix de tombe */
.tombstone-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.tombstone-cross {
    width: 150px;
    height: 200px;
    margin-bottom: 2rem;
}

.tombstone-cross svg {
    width: 100%;
    height: 100%;
}

.tombstone-text {
    font-family: 'Beaufort Pro', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 0 0 20px rgba(200, 170, 110, 0.5);
    margin-bottom: 1rem;
}

.tombstone-subtext {
    font-family: 'Spiegel', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    letter-spacing: 1px;
}
