/* Google Fonts importálása */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

/* WINNERS CLUB betűtípus módosítása */
.site-name {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    font-style: italic; 
    background: linear-gradient(to bottom, #ffffff, #e6c955, #c9a431);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    text-shadow: 
        0 0 10px rgba(201, 164, 49, 0.8),
        0 0 3px rgba(255, 255, 255, 0.6),
        1px 1px 2px rgba(0, 0, 0, 0.8) !important;
    -webkit-text-stroke: 2px black;
    position: relative;
    z-index: 1;
}

/* Sportfogadás oldalon lévő Winners Club címsor módosítása */
.winners-heading {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    font-style: italic;
    background: linear-gradient(to bottom, #ffffff, #e6c955, #c9a431);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    text-shadow: 
        0 0 10px rgba(201, 164, 49, 0.8),
        0 0 3px rgba(255, 255, 255, 0.6),
        1px 1px 2px rgba(0, 0, 0, 0.8) !important;
    -webkit-text-stroke: 2px black;
    position: relative;
    z-index: 1;
}

/* További csiszolás, hogy mobilon is jól nézzen ki */
@media (max-width: 768px) {
    .site-name, .winners-heading {
        letter-spacing: 2px !important;
    }
}

@media (max-width: 480px) {
    .site-name, .winners-heading {
        letter-spacing: 1px !important;
    }
}