@font-face {
    font-family: Manrope;
    src: url(/assets/font/manrope-CZfUxJDf.ttf)
}

* {
    transition: all .2s ease-in-out
}

html {
    background: #040813
}

body {
    margin: 0;
    font-family: Manrope;
    background: #040813;
    color: #fff;
    width: 100vw;
    position: relative;
    overflow-x: hidden
}

button {
    cursor: pointer
}

input,
button {
    border: 0;
    font-family: inherit;
    font-weight: inherit;
    padding: 0
}

input,
button,
a,
select {
    outline: 0
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0;
    padding: 0
}

a {
    text-decoration: none;
    color: currentColor
}

.container {
    max-width: 1460px;
    width: 100%;
    margin: 0 auto
}

@media (max-width: 1460px) {
    .container {
        padding: 0 50px;
        box-sizing: border-box
    }
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 160px;
    margin-bottom: 50px
}

@media (max-width: 1540px) {
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 27px
    }
}

.footer p {
    font-size: 12px;
    opacity: .25
}

.download {
    height: 49px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 33px;
    border-radius: 36px;
    background: radial-gradient(44% 77% at 50% 0%, #00b6f0, #0070f0);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.download svg {
    width: 18px
}




.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(10px + env(safe-area-inset-top)) 20px 10px;
    font-family: 'Manrope', sans-serif;
    box-sizing: border-box;
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 80px;
    height: auto;
    margin-right: 10px;
}

.logo p {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.logo span {
    color: #FF8E05;
}

.logo span {
    color: #FF8E05;
}


.mobile_menu {
    display: none;
    cursor: pointer;
}

.mobile_menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}



.menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #1b1b1b;
    transition: 0.3s ease;
    overflow-x: hidden;
    padding-top: 20px;
    z-index: 1000;
}

.menu.active {
    left: 0;
}


.menu .closebtn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}


.menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
    text-align: center;
}

.menu-logo img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.menu-logo p {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.menu-logo span {
    color: #FF8E05;
}


.menu ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.menu ul li {
    padding: 15px 20px;
}

.menu ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.menu ul li a:hover {
    color: #FF8E05;
}


.head_soc {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.head_soc a img {
    width: 20px;
    height: auto;
}


@media (max-width: 768px) {
    .header {
        padding: calc(20px + env(safe-area-inset-top)) 20px 10px;
    }

    .logo img {
        width: 35px;
        margin-right: 8px;
    }

    .logo p {
        font-size: 20px;
    }

    .mobile_menu {
        display: block;
    }

    .mobile_menu span {
        width: 20px;
    }
}

.gradient-text {
    font-weight: bold;
    background: linear-gradient(135deg, #ff2a6d, #d40000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.desktop_nav {
    display: flex;
    align-items: center;
}

.desktop_nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop_nav ul li {
    margin: 0 15px;
}

.desktop_nav ul li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 8px;
    overflow: hidden;
}

.desktop_nav ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff2a6d, #d40000);
    z-index: -1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

.desktop_nav ul li a:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.desktop_nav ul li a:hover {
    color: #fff; /* Ensures text color stays visible on hover */
    z-index: 1;
}
.head_soc a {
    margin-left: 15px;
}

.head_soc a svg {
    fill: #fff;
    width: 24px;
    height: 24px;
}


.mobile_menu {
    display: none;
}

@media (max-width: 768px) {
    .desktop_nav {
        display: none;
    }


    .mobile_menu {
        display: block;
    }


    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100%;
        background-color: #1b1b1b;
        transition: 0.3s ease;
        z-index: 1000;
    }

    .menu.active {
        left: 0;
    }

    .menu .closebtn {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
    }
}
.decoration {
    position: absolute;
    z-index: -1
}

.main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
    margin-top: 100px
}

@media (max-width: 1540px) {
    .main {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        row-gap: 45px;
        margin-top: 35px;
        align-items: unset
    }
}

.main .thumbnail {
    grid-row: 1/3
}

@media (max-width: 1540px) {
    .main .thumbnail {
        grid-row: 2/3
    }

    .main .thumbnail img {
        width: 100%
    }
}

.donation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 50px;
}


.donation-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
    max-width: 480px;
    width: 100%;
    padding: 30px;
    position: relative;
}


.multiplier-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ff2a6d;
    color: #fff;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 50%;
    font-size: 14px;
}


.donation-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}


.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-size: 14px;
    color: #b3b3b3;
    margin: 10px 0px 5px;
}

.form-input, .form-select {
    background-color: #333333;
    border: 1px solid #4d4d4d;
    color: #e6e6e6;
    font-size: 16px;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: #7a7a7a;
}

.form-input:focus, .form-select:focus {
    border-color: #ff2a6d;
}

.calculated-coin-container {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.calculated-coin-display {
    font-size: 14px;
    color: #ff2a6d;
    font-weight: bold;
}

.multiplier-text {
    color: #b3b3b3;
    font-size: 12px;
    text-align: right;
}

.form-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.submit-button {
    background: linear-gradient(135deg, #ff2a6d, #d40000);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: linear-gradient(135deg, #ff3a7d, #e00000);
}
.popup-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff4c4c;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-notification.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 600px) {
    .multiplier-badge {
        top: 10px;
        left: 10px;
        padding: 4px 10px;
        font-size: 12px;
    }

    .donation-title {
        margin-top: 30px; /* Adding some margin to avoid overlap */
        font-size: 20px;
    }

    .donation-card {
        padding: 20px;
    }

    .donation-title {
        font-size: 20px;
    }

    .form-label,
    .form-input,
    .form-select {
        font-size: 14px;
    }

    .submit-button {
        font-size: 16px;
    }
}