/* Additional styles for World Peace Wish website */

.peace-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.globe-animation {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(64, 224, 208, 0.1);
    border-radius: 50%;
    animation: globeSpin 20s linear infinite;
}

.globe-animation::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 50%;
    top: 10px;
    left: 10px;
    animation: globeSpin 15s linear infinite reverse;
}

@keyframes globeSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.count-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    font-size: 14px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

.count-icon {
    font-size: 20px;
}

.count-number {
    font-weight: bold;
    font-size: 18px;
}

.count-text {
    font-size: 12px;
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(76, 175, 80, 0.3);
    border-radius: 50%;
}

.particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 30%;
    left: 80%;
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

.particle:nth-child(4) {
    top: 80%;
    left: 60%;
    animation: float 9s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(20px) translateX(10px); }
}

@media (max-width: 768px) {
    .peace-badge {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .globe-animation {
        width: 80px;
        height: 80px;
        top: -40px;
        right: -40px;
    }
    
    .globe-animation::after {
        width: 60px;
        height: 60px;
    }
    
    .count-counter {
        bottom: 10px;
        right: 10px;
        padding: 10px;
        font-size: 12px;
    }
}