/* ====== Algemene stijl ====== */
body {
    font-family: 'Bitcount Prop Single Ink', sans-serif;
    margin: -120;
    padding: 0;
    height: 100vh;
    color: #e0e0ff;
    overflow-x: hidden;
    position: relative;
    background: radial-gradient(circle at center, #2b2b35 0%, #1a1a24 100%);
}

/* ====== Achtergrond animatie ====== */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(187, 134, 252, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(187, 134, 252, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: moveBackground 30s linear infinite;
    z-index: -2;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-100px, -100px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Gloedlaag bovenop */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(140, 50, 255, 0.05), rgba(0, 0, 0, 0.8));
    z-index: -1;
}

/* ====== Titel ====== */
h1 {
    text-align: center;
    font-size: 3.5em;
    color: #c77dff;
    text-shadow: 0 0 20px rgba(199, 125, 255, 0.6);
    margin-top: 500;
}

/* ====== Crypto teller ====== */
p {
    text-align: center;
    font-size: 2em;
    color: #bb86fc;
    margin-top: 40px;
    text-shadow: 0 0 10px rgba(187, 134, 252, 0.5);
}

/* ====== Hoofd klikknop ====== */
.ButtonContainer {
    display: flex;
    justify-content: center;
    margin: 40px;
}

button {
    background: linear-gradient(145deg, #5b2a86, #4a1f6d);
    color: #e8e8ff;
    border: 2px solid #bb86fc;
    border-radius: 50px;
    padding: 10px;
    margin: 10px;
    transition: all 0.2s ease;
    font-family: 'Bitcount Prop Single Ink', sans-serif;
    font-size: 22px;
    width: 220px;
    height: 75px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(187, 134, 252, 0.3);
}

button:hover {
    background: linear-gradient(145deg, #6930c3, #5e17eb);
	position: fixed
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.6);
}

button:active {
    transform: scale(0.95);
    box-shadow: 0 0 5px rgba(187, 134, 252, 0.3);
}

/* ====== Shop Tabs ====== */
.Clicker-tab, .Miner-tab {
    writing-mode: vertical-rl;
    text-orientation: upright;
    background-color: rgba(50, 0, 70, 0.8);
    color: #d0b3ff;
    padding: 15px 5px;
    font-size: 20px;
    cursor: pointer;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: background-color 0.2s, color 0.2s;
    border: 1px solid #b26cff;
    box-shadow: 0 0 10px rgba(178, 108, 255, 0.4);
}

.Clicker-tab:hover, .Miner-tab:hover {
	position: fixed
    background-color: rgba(80, 0, 120, 0.9);
    color: #fff;
}

/* ====== Shop inhoud ====== */
.Clicker-content, .Miner-content {
    display: none;
    flex-direction: column;
    background: rgba(20, 0, 40, 0.95);
    padding: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 0 20px rgba(178, 108, 255, 0.4);
}

.Shop-Clicker:hover .Clicker-content,
.Shop-Miner:hover .Miner-content {
    display: flex;
	position: fixed
}

/* ====== Shoppositie ====== */
.Shop-Clicker, .Shop-Miner {
    position: fixed;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.Shop-Clicker { top: 10%; }
.Shop-Miner { top: 50%; }

/* ====== Shopknoppen ====== */
.Clicker-content button, .Miner-content button {

    background: linear-gradient(145deg, #3b0066, #4b0082);
    color: #f0e0ff;
    border: 1px solid #b26cff;
    border-radius: 10px;
    margin: 6px 0;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.Clicker-content button:hover, .Miner-content button:hover {
    background: linear-gradient(145deg, #5c00a5, #7100b8);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(178, 108, 255, 0.6);
}

.Clicker-content button:active, .Miner-content button:active {
    transform: scale(0.95);
	position: fixed
}

/* ====== Glow effect bij score ====== */
#score {
    color: #b26cff;
    text-shadow: 0 0 15px rgba(178, 108, 255, 0.8);
}

/* =================== */
/* Klik-animatie       */
/* =================== */
.floating-text {
    position: absolute;
    color: #00ff99;
    font-weight: bold;
    pointer-events: none;
    animation: floatUp 1s ease-out forwards;
    text-shadow: 0 0 6px #00ffcc;
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px);
    }
}