/* Ielādējam spēļu stila fontu */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Cinzel', serif;
    /* Pievienojam pielāgoto kursoru */
    cursor: url('../img/arrow.png'), auto;
}

/* Svarīgi: nodrošināt, ka uz pogām kursors joprojām strādā vai mainās */
a, .btn-play-free, .btn-download {
    cursor: url('../img/arrow.png'), pointer;
}

.game-masthead {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.backdrop {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    /* Pievienojam bildi šeit */
    background-image: url("../img/body.webp"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Uzlabots gradients - tumšāks apakšā un malās */
.overlay-black {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    animation: fadeIn 2s ease-in-out;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Logotipa uzlabojums */
.game-logo {
    width: 150px; /* Palielinām izmēru */
    height: auto;
    border: 2px solid #c8aa6e; /* Zelta rāmītis ap logo */
    padding: 5px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(200, 170, 110, 0.6));
    border-radius: 5px;
}

.header-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 40px;

    /* Zelta gradients tekstam */
    background: linear-gradient(to bottom, #f0e6d2 20%, #c8aa6e 50%, #8a6e2f 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Dziļuma efekts - ēna, kas liek tekstam spīdēt */
    filter: drop-shadow(0px 0px 10px rgba(200, 170, 110, 0.5)) 
            drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.9));
    
    /* Maiga pulsācijas animācija */
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0px 0px 5px rgba(200, 170, 110, 0.3)) drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.9)); }
    to { filter: drop-shadow(0px 0px 20px rgba(200, 170, 110, 0.7)) drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.9)); }
}

/* Uzlabotā LoL poga */
.btn-play-free {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #051923 0%, #005a82 100%);
    color: #f0e6d2;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 3px;
    border: 2px solid #c8aa6e;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.btn-play-free:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(200, 170, 110, 0.6);
    color: #fff;
    border-color: #f0e6d2;
}

/* Mazs elements zem pogas - statusam */
.status-info {
    margin-top: 20px;
    font-size: 12px;
    color: #a09b8c;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-logo-css {
    /* IZLABOTS CEĻŠ: iziet no media mapes un iet pa taisno uz img mapi */
    background-image: url("../img/header.png"); 
    
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    position: absolute;
    /* Ja logo joprojām nav redzams, pamēģini top: 20px; (dažreiz -60px izstumj to ārpus ekrāna) */
    top: -80px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;

    /* Pārliecinies, ka šie izmēri sakrīt ar tavas bildes proporcijām */
    width: 300px;  
    height: 150px; 

    border: none;
    outline: none;
    background-color: transparent;
    pointer-events: none; 
}


.download-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
}

.btn-download {
    text-decoration: none;
    color: #f0e6d2;
    border: 1px solid rgba(200, 170, 110, 0.5);
    padding: 10px 20px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-download:hover {
    border-color: #c8aa6e;
    background: rgba(200, 170, 110, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.icon {
    margin-right: 8px;
}

.main-cta {
    margin-bottom: 10px;
    display: block; /* Lai Discord poga būtu pa vidu virs pārējām */
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}


.btn-play-free {
    /* ... tavs esošais kods ... */
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(200, 170, 110, 0.4); }
    50% { box-shadow: 0 0 25px rgba(200, 170, 110, 0.8); }
    100% { box-shadow: 0 0 10px rgba(200, 170, 110, 0.4); }
}
.backdrop {
    /* ... tavs esošais kods ... */
    animation: backgroundZoom 20s infinite alternate linear;
    overflow: hidden;
}

@keyframes backgroundZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}