@import url("./styles/city.css");
@import url("./styles/mainBackground/mainBackground.css");
@import url("./styles/layout.css");
@import url("./styles/scroller.css");
@import url("./styles/firstBlock.css");
@import url("./styles/secondBlock.css");
@import url("./styles/secondPlatform.css");
@import url("./styles/map.css");
@import url("./styles/bord.css");
@import url("./styles/travel.css");
@import url("./styles/laboratory.css");



.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video pavadinimo overlay */
.video-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

/* Empire Moons pavadinimas su Solana spalvomis ir animacija */
.empire-title {
    font-family: 'Fever', Arial, sans-serif;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 4px;
    margin: 0;
    
    /* Gradientas Solana spalvos */
    background: linear-gradient(45deg, #9945FF, #14F195, #9945FF, #14F195);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Text shadow aura */
    text-shadow: 
        0 0 15px rgba(153, 69, 255, 0.6),
        0 0 30px rgba(20, 241, 149, 0.5),
        0 0 45px rgba(153, 69, 255, 0.4),
        0 0 60px rgba(20, 241, 149, 0.3);
    
    /* Pulsavimo ir gradiento animacija */
    animation: empireGlow 2.5s ease-in-out infinite, gradientFlow 3.5s ease infinite;
}

@keyframes empireGlow {
    0%, 100% {
        text-shadow: 
            0 0 15px rgba(153, 69, 255, 0.6),
            0 0 30px rgba(20, 241, 149, 0.5),
            0 0 45px rgba(153, 69, 255, 0.4),
            0 0 60px rgba(20, 241, 149, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(153, 69, 255, 0.8),
            0 0 40px rgba(20, 241, 149, 0.7),
            0 0 60px rgba(153, 69, 255, 0.6),
            0 0 80px rgba(20, 241, 149, 0.5);
        transform: scale(1.03);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .empire-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .empire-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
}


@font-face {
    font-family: 'Fever';
    src: url('./styles/Fever.woff') format('woff2'),
         url('./styles/Fever.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Pritaikome Fever fontą visam tekstui */
body, .allin, .allin div {
    font-family: 'Fever', Arial, sans-serif;
}

/* Satellite tooltip styles */
.satellite-tooltip {
    position: absolute;
    display: none;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 15px;
    z-index: 9999 !important;
    min-width: 280px;
    color: white;
    font-size: 14px;
    pointer-events: none;
    top: 0;
    left: 0;
}

.sat-tt-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sat-tt-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.sat-tt-name {
    font-weight: bold;
    color: #9945FF;
    margin-bottom: 4px;
}

.sat-tt-desc {
    color: #ccc;
    font-size: 11px;
}


@import url("./main/laboratory.css");