body {
    background-color: black;
    margin: 0;
    text-align: center;
    color: white;
    font-family: 'Times New Roman', Times, serif;
}

a {
    text-decoration: none;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 2em;
    background-color: rgb(21, 21, 21);
}

i {
    font-size: 1.5em;
    cursor: pointer;
    color: blueviolet;
}

#photo {
    width: 6em;
    height: 6em;
    background: url('/images/skeleton.png') center/cover;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tg_header {
    font-family: "Bitcount Ink", system-ui;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-variation-settings:
        "slnt" 0,
        "CRSV" 0.5,
        "ELSH" 0,
        "ELXP" 0,
        "SZP1" 0,
        "SZP2" 0,
        "XPN1" 0,
        "XPN2" 0,
        "YPN1" 0,
        "YPN2" 0;
    color: #E0B0FF;
    text-shadow: 
        0 0 5px #E0B0FF,
        0 0 10px #D291FF,
        0 0 20px #C178FF,
        0 0 30px #B05EFF;
}

.fee_div {
    display: block; 
    width: 40%;
    margin: 15px auto;
    text-align: center; 
    background: linear-gradient(90deg, #00ff7f, #32cd32);
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 0 12px rgba(0, 255, 127, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.fee_div:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.7);
}

.fee {
    color: white;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 0 8px #00ff7f, 0 0 15px #32cd32;
}

.benefits p {
    margin: 5px 0 1em 0;
    font-size: 1em;
    color: #ff4c4c;
    text-shadow: 
        0 0 5px #ff4c4c,
        0 0 10px #ff1a1a,
        0 0 15px #cc0000;
    transition: transform 0.2s, text-shadow 0.2s;
    cursor: default;
}

.benefits p:hover {
    transform: scale(1.05);
    text-shadow: 
        0 0 10px #ff4c4c,
        0 0 20px #ff1a1a,
        0 0 30px #cc0000,
        0 0 40px #ff0000;
}

#info {
    margin-top: 2em;
    padding: 1.5em 0;
    background: rgba(16, 15, 15, 0.419);
    backdrop-filter: blur(3px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#info a {
    font-size: 1.1em;
    letter-spacing: 1px;
    color: #38aaff;
    text-shadow: 
        0 0 6px #38aaff,
        0 0 12px #1b7ccc;
    transition: 0.25s ease;
    display: inline-block;
}

#info a:hover {
    transform: scale(1.08);
    color: #7acaff;
    text-shadow:
        0 0 10px #7acaff,
        0 0 20px #4da4ff,
        0 0 30px #1b7ccc;
}

footer {
    margin-top: 3em;
    padding: 1.5em 0;
    font-size: 0.9em;
    color: #888;
    text-shadow: 0 0 6px rgba(255,255,255,0.1);
}

#sideMenu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(4px);
    padding-top: 80px;
    transition: 0.35s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

#sideMenu.open {
    left: 0;
}

#sideMenu a {
    color: #b968ff;
    font-size: 1.1em;
    text-align: left;
    padding: 12px 20px;
    display: block;
    text-shadow: 0 0 8px #b968ff;
    transition: 0.2s;
}

#sideMenu a:hover {
    background: rgba(255,255,255,0.05);
    padding-left: 28px;
}

#closeMenu {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.6em;
    color: #d44;
    cursor: pointer;
    transition: 0.2s ease;
}

#closeMenu:hover {
    transform: scale(1.15);
    color: #ff4f4f;
}

.popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.popup.show {
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    background: #111;
    padding: 25px 40px;
    border: 2px solid #ff0044;
    border-radius: 10px;
    text-align: center;
    font-family: "Rubik Mono One", sans-serif;
    position: relative;
    animation: popIn .4s ease;
}

.popup-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #ff0044;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 25px;
    cursor: pointer;
}

@keyframes popIn {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
