@font-face {

    font-family: 'Cinzel';

    src: url('fonts/metin2.ttf') format('truetype');
}
* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

    font-family: 'Metin2', sans-serif;
}

html,
body {

    width: 100%;
    min-height: 100%;

    background-image:
        linear-gradient(
            rgba(0,0,0,0.72),
            rgba(0,0,0,0.82)
        ),
        url('background.jpg');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    background-attachment: fixed;
}

body {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    min-height: 100vh;
}

#game {

    padding: 25px;

    background: rgba(10, 10, 10, 0.75);

    border: 3px solid #9f7a38;

    border-radius: 12px;

    box-shadow:
        0 0 30px rgba(0,0,0,0.9),
        inset 0 0 20px rgba(255,215,100,0.05);

    backdrop-filter: blur(4px);
}

canvas {

    display: block;

    border: 2px solid #5e4318;
}

#restart-btn {

    margin-top: 20px;

    padding: 12px 24px;

    font-size: 18px;

    background:
        linear-gradient(to bottom, #5b4118, #2a1c08);

    color: #d9b36a;

    border: 2px solid #a88442;

    border-radius: 8px;

    cursor: pointer;

    transition: 0.2s;
}

#restart-btn:hover {

    transform: scale(1.05);

    background:
        linear-gradient(to bottom, #7a5822, #3b270c);
}
#guild-title {

    font-family: 'Metin2', sans-serif !important;

    margin-bottom: 25px;

    font-size: 42px;

    color: #d9b36a;

    letter-spacing: 2px;

    text-align: center;

    text-shadow:
        0 0 10px rgba(0,0,0,0.9),
        0 0 20px rgba(255,215,100,0.25);

    animation: glowPulse 2.5s infinite alternate;
}
#guild-header {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    margin-bottom: 10px;

    position: relative;

    top: -40px;
}
