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); }
}

#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;
}

.fee_div {
    display: block; 
    width: 40%;
    margin: 20px 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;
}

.tg_header {
    font-family: "Nosifer", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #38aaff;
    text-shadow: 
        0 0 5px #ffffff,
        0 0 10px #ffffff,
        0 0 15px #38aaff,
        0 0 20px #1b7ccc,
        0 0 30px #0f4f99;
}

#payment_options span b {
    color: red;
}

#payment_options span a {
    color: #f6ad1a;
}

.payment_table {
    margin: 1em auto 3em auto;
    border-collapse: collapse;
    width: 90%;
    font-size: 1.2em;
    color: #38aaff;
    table-layout: fixed;
    text-align: left;
}

.payment_table th,
.payment_table td {
    border: 1px solid rgba(56,170,255,0.3);
    padding: 10px 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.payment_table th {
    background: rgba(56,170,255,0.1);
}

.payment_table tbody tr:hover {
    background: rgba(56,170,255,0.05);
    transition: 0.2s;
}

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);
}
