﻿/* =========================
   FLAG CONTAINER
========================= */

.eu-flag::before {
    content: "";
    position: absolute;
    width: 98%;
    background: linear-gradient( 120deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05) );
    pointer-events: none;
}

@keyframes glossMove {
    0% {
        left: -60%;
    }

    100% {
        left: 120%;
    }
}

.stars-circle {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.eu-visual {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.star {
    --star-color: #FFCC00;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(calc(var(--i) * 30deg)) 
    translateY(-90px) rotate(calc(var(--i) * -30deg)) rotate(-105deg);
    width: 0;
    height: 0;
    border-right: 0.9em solid transparent;
    border-bottom: 0.7em solid var(--star-color);
    border-left: 0.9em solid transparent;
    filter: drop-shadow(0 0 3px rgba(255,204,0,.6));
}

    .star::before,
    .star::after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
    }



    .star::before {
        border-bottom: 0.75em solid var(--star-color);
        border-left: 0.28em solid transparent;
        border-right: 0.28em solid transparent;
        top: -0.42em;
        left: -0.58em;
    
        transform: rotate(-35deg);
    }

    .star::after {
        border-right: 0.9em solid transparent;
        border-bottom: 0.65em solid var(--star-color);
        border-left: 0.9em solid transparent;
        top: 0.02em;
        left: -0.95em;
    
        transform: rotate(-70deg);
    }

.eu-info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    border-radius: 5px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
