* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
body {
    background: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps the image still while you scroll */
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Navbar link styles */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 0.85rem;
}

.navbar-nav .active-link{
    border-bottom: 2px solid #ff0155;
}

/* The specific pink/magenta button */
.btn-custom {
    background-color: #ff0155 !important; /* Magenta/Pink shade */
    color: white !important;
    border: none;
}


/* Ensure buttons have white borders as seen in image */
.btn-outline-light {
    border-width: 1px;
    font-size: 0.9rem;
    min-width:150px;
}
.btn-outline-light:hover {
    background-color: #ff0155 !important; 
    color: white !important;
    border-color: #ff0155 !important;
}



h1,h2,h3,h4,h5,p{
    color: white !important;
}

.custom-list {
    list-style: none;
    padding-left: 0;
    color: white !important;
}
.custom-list li
{
    line-height: 40px;
}
.custom-list li::before {
    content: "\f058"; /* FontAwesome Unicode for a circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff006e;
    margin-right: 10px;
}
.custom-bg-solana{
    background: url('../images/solana-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps the image still while you scroll */
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.custom-button-color
{
    background: #ff0155 !important;
}
.glass-effect
{
    background: rgb(50,50, 50 / 22%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.075);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); 
}
.lead-form {
    border-radius: 20px;
    padding: 2rem;
    color: white;
}
.form-control {
    background: radial-gradient(79.31% 91.33% at 58.42% -29.63%, rgba(191, 195, 203, 0.1) 0%, rgba(18, 20, 22, 0.17) 100%) !important;
    border-radius: 4px !important;
    box-shadow: 2px 2px 20px 0px #000000 !important;
    border: 1px solid transparent !important;
    font-size: 12px o !important;
    font-weight: 400 !important;
    line-height: 18px !important;
    letter-spacing: 0em !important;
    text-align: left !important;
    color: #fff !important;
    color-scheme: dark !important;
}
.form-control option{
    color: black !important;
}
.video-container
{
    max-width: 600px;
}

.text-custom-color
{
    color: #ff0155;
}





@media (max-width: 576px) {
    .video-container
    {
        width: 90%;
    }

}