﻿@font-face {
    font-family: 'Hitchcut';
    src: url('../fonts/Hitchcut-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: url("../images/bg.webp") center/cover no-repeat;
        filter: blur(9px);
        transform: scale(1.1); /* prevents blur-edge cutoffs */
        z-index: -1;
    }


/* Custom style for the requested glow and background effects */
.glow-card {
    background: rgba(31, 61, 55, 0.4);
    border: 2px solid #2fe988 !important;
    box-shadow: 0 0 12px #00ff8966, inset 0 0 8px #00ffd033;
}

/* Styles for the pie chart - 10% / 10% / 80% */
.pie-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient( #2fe988 0% 10%, /* Community Rewards Pool (10%) */
    #4eac92 10% 20%, /* Marketing & Growth (10%) */
    #7ac7b1 20% 100% /* Public Sale (IDO) (80%) */ );
}

/* Flashing icon animation */
@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(47, 233, 136, 0.7); /* main-accent */
    }

    50% {
        box-shadow: 0 0 0 6px rgba(47, 233, 136, 0);
    }
}

.online-indicator {
    display: inline-block;
    /* Adjusted size for better visibility */
    width: 10px;
    height: 10px;
    background-color: #2fe988; /* main-accent */
    border-radius: 50%;
    margin-right: 8px; /* Space between dot and text */
    margin-bottom: 2px; /* Slight adjustment for vertical alignment */
    /* Apply the animation */
    animation: pulse-green 2s infinite;
}

/*
.logos-container a {
    filter: drop-shadow(0 0 10px #2fe988);
}*/

.glow-card {
    box-shadow: 0 0 0px #2fe988, 0 0 5px #2fe988, 0 0 50px #2fe988;
    transition: box-shadow 0.3s ease-in-out;
}

    .glow-card:hover {
        box-shadow: 0 0 10px #2fe988, 0 0 20px #2fe988, 0 0 30px #2fe988;
    }

@media (max-width: 500px) {
    .logos-container a {
        flex: 0 0 25%; /* Each logo takes 25% width => 4 per row */
        max-width: 18%;
    }

    .logos-container {
        padding-left: 25px;
    }
}

@keyframes neon-glow {
    0%, 100% {
        box-shadow: 0 0 6px #2fe988, 0 0 10px #2fe988, 0 0 15px #2fe988, 0 0 30px #2fe988;
    }

    50% {
        box-shadow: 0 0 2px #2fe988, 0 0 4px #2fe988, 0 0 12px #2fe988, 0 0 24px #2fe988;
    }
}

.animate-neon-glow {
    animation: neon-glow 1.8s ease-in-out infinite;
}

.particle {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #2fe988;
    border-radius: 50%;
    opacity: 1;
    pointer-events: none;
    box-shadow: 0 0 30px #2fe988;
    animation: pop 700ms ease-out forwards;
    z-index: 99999;
}

@keyframes pop {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--dx), var(--dy)) scale(0.3);
        opacity: 0;
    }
}