@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --primary-bg: #121212;
    --secondary-bg: #1e1e1e;
    --accent-color: #8a2be2;
    --text-color: #ffffff;
    --highlight-color: #00c8ff;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --border-radius: 15px;
    --transition-speed: 0.3s;
    --glow-effect: 0 0 10px rgba(138, 43, 226, 0.5);
}

body{
    background: linear-gradient(134deg, var(--primary-bg), var(--secondary-bg));
    color: var(--text-color);
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
}

.money_show {
    font-size: clamp(50px, 15vw, 120px);
    background: linear-gradient(145deg, #2a2a2a, #333333);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: normal;
    border-radius: 50px;
}

.button_buy button{
    background: linear-gradient(145deg, #2a2a2a, #333333);
    color: var(--text-color);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.shop_name{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
}

.go_back{
    background: #272829;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
}

.go_back_button {
    background-color: #bdc0c2;
    height: 50px;
    width: auto;
}

.buy_multiply:hover,
.buy_speedrun:hover,
.buy_party:hover,
.buy_dvd:hover {
    background: #414243;
}


.go_back_lol{
    background: white;
    text-decoration: none;
}

.button_buy{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: stretch;
    margin: 10px auto;
    padding: 10px;
    background: #0b524f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px var(--shadow-color);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    column-gap: 200px;
}