:root {
    --shadowColor:#000f;

}

html{
    background-color: black;
    width: 100%;
    height: 100%;

}
body{
    width: 100%;
    height: 100%;
    margin: 0;
    color: white;
    overflow: scroll;
}
main{

    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1{
    text-align: center;
    font-size: 6vmin;
}
h2{
    text-align: center;
    font-size: 5vmin;
}

#particles-js{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.balanceImg{
    width: 6vmin;
    height: 6vmin;
    margin: auto 1vmin ;

}
.balanceCount{
    width: 10vmin;
    height: auto;
    text-align: center;
}
.lk{
    width: 6vmin;
    height: 6vmin;
    margin: 2vmin;
}

.gradient-border {
    position: relative;
    border: none;
}
.gradient-border::before {
    border-radius: 2vmin;
    content: "";
    position: absolute;
    pointer-events: none;
    inset: 0;
    padding: 1px;
    background: linear-gradient(125deg, deeppink 6.42%, purple 84.24%),
    linear-gradient(0deg, #FFFFFF, #FFFFFF);
    -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
    mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

#menuButton{
    width: 10vmin;
    height: 10vmin;
}
#menu{
    background-color: #000a;
    position: fixed;
    top: 10vmin;
    left: 0;
    width: 100%;
    height: calc(100vh - 10vmin);
    z-index: 100;
}
.menuInner{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
}
.leftMenu{
    margin: 2vmin;
    padding: 2vmin;
    overflow-y: scroll;
    z-index: 110;
    background-color: #303a;
    border-radius: 2vmin;
}
.rightMenu{
    margin: 2vmin;
    padding: 2vmin;
    background-color: #303a;
    width: 40vmin;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 110;
    border-radius: 2vmin;
}
.menuElement{
    display: flex;
    flex-direction: column;
    align-items: center;
}
hr{
    width: 100%
}
button{
    cursor: pointer;
}
#menuButton{
    cursor: pointer;

}
.menuElementName{
    font-size: 5vmin;
    color: gold;
    margin: 1vmin;
    white-space: nowrap;
}
.menuElementValue{
    font-size: 4vmin;
}



.languages {
    display: flex;
    flex-direction: column;
    vertical-align: middle;
}
.languages a{
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.lang_icon{
    height: 3vmin;
    width: auto;
    margin: 1vmin;
}
.payment-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

/* Grid adjustments for payment page */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 1rem;
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Utility classes for payment page */
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.ml-2 { margin-left: 0.5rem !important; }

.text-center { text-align: center !important; }
.text-muted { color: var(--text-muted) !important; }

/* Form text helper */
.form-text {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

/* Alert styles */
.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: var(--warning-yellow);
}

/* Spinner for loading states */
.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: -0.125em;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* Fix for QR code container on mobile */
@media (max-width: 480px) {
    .qr-code-wrapper {
        padding: 1rem;
    }

    .qr-code-img {
        max-width: 180px;
    }
}
