/* Custom Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0a1919;
    color: #dcf73e;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    /* Ensures it's in the background */
}

main>section {
    position: relative;
    /* Ensures sections are layered on top of the particle background */
    z-index: 1;
}

.feature-card {
    background: transparent;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.btn-primary-custom {
    background: linear-gradient(90deg, #ffd60a, #dcf73e);
    color: #0a1919;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 195, 0, 0.5);
}

.btn-primary-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 195, 0, 0.8);
}

.glassmorphism {
    background: rgba(17, 17, 17, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-icon {
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #fff;
    transform: scale(1.2);
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 48
}

.gold-text {
    color: #dcf73e;
}

#join-testnet {
    padding-top: 0%;
}