body {
    color: #d4d4d4;
    background: linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
    background-attachment: fixed;
    background-size: 100vw 100vh;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    /*background-image: url("./images/tameimpalabg.jpg");*/
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.442);
}

.content-box {
    background: rgba(0, 0, 0, 0.25);
}

.content-box h2 {
    color: rgb(255, 255, 255);
}

.content-box p {
    color: rgb(255, 255, 255);
}

.nav-btn {
    color: rgba(255, 255, 255, 0.85);
}

.nav-btn:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-btn:hover .nav-icon {
    opacity: 0.9;
}

.dropdown-content {
    background: #30847e;
    /*backdrop-filter: blur(10px);*/
}

.dropdown-content a {
    color: rgba(255, 255, 255, 0.8);
}

.dropdown-content a:hover {
    color: rgba(255, 255, 255, 0.9);
    background: #5caca7;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.easter-popup {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("./images/easter-egg-rainbow.gif");
    color: rgb(255, 255, 255);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-family: fantasy;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s ease, opacity 0.5s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
}

.easter-popup.show {
    bottom: 40px;
    opacity: 1;
}

.easter-popup.hide {
    bottom: -80px;
    opacity: 0;
}

.easter-popup p {
    margin: 0;
    padding: 0;
}

.lemon-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.lemon-image {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-position: right;
    background-repeat: no-repeat;
}

.lemonee {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 12%;
    height: 12%;
    z-index: 1;
    rotate: 90deg;
}

.lemon-title {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 2px 4px;
    cursor: grab;
    user-select: none;
    transition: transform 0.5s ease;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.442), rgba(0, 0, 0, 0.442)),
        linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
        
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%, var(--bg-width, 100vw) var(--bg-height, 100vh);
    background-position: 0 0, var(--bg-pos-x, 0) var(--bg-pos-y, 0);
}

.lemon-wrap.dragging .lemon-title {
    cursor: grabbing;
    transition: none;
}

.content-box {
    text-align: center;
}