﻿.samyron-spot-banner {
    /* Osnovne dimenzije */
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    top:0;

    /* Pozadina sa gradijentom */
    background: 
        radial-gradient(
            circle at center,
            #FFD700 0%,    
            #FF8C00 15%,   
            #B22222 40%,   
            #8B0000 70%,   
            #600000 95%,   
            #450000 100%   
        );

    /* Tekst "Samyron" */
    color: #FFD700;
    font-family: 'Arial Rounded MT Bold', 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 2px;
    -webkit-text-stroke: 3px #450000;
    text-stroke: 3px #450000;
    paint-order: stroke fill;
    text-shadow: 
        0 0 10px rgba(69, 0, 0, 0.8),
        0 0 20px rgba(69, 0, 0, 0.6);

    /* Dodatni efekti */
    position: relative;
    overflow: hidden;
    border-radius: 0; /* Oštri rubovi */
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.6);
}

/* Glow efekt na hover */
.samyron-spot-banner:hover {
    color: #FFF8DC;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.7),
        0 0 25px rgba(255, 215, 0, 0.5),
        0 0 35px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}
