﻿/*body {
                margin: 0;
                padding: 0;
                font-family: 'Montserrat', sans-serif;
                display: flex;
                justify-content: center;
                align-items: center;
                min-height: 100vh;
                background-color: #f5f7fa;
                overflow: hidden;
            }*/


.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /*background: linear-gradient(135deg, #1a3e72 0%, #0d2a57 100%);*/
    overflow: hidden;
}

.coin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #f5b301 30%, #d4af37 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(245, 179, 1, 0.7);
    opacity: 0.7;
    animation: float linear infinite;
}

    .coin::before {
        content: '₹';
        position: absolute;
        color: #800000;
        font-weight: bold;
        font-size: 14px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.shield {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(76, 175, 80, 0.3);
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2) rotate(10deg);
        opacity: 0.6;
    }
}
