body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    background-color: #000;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
    position: relative;
    overflow: hidden; /* Отключаем прокрутку */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 1em 2em;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

header nav ul {
    display: flex;
    gap: 1.5em;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    position: relative;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 0.5em 1em;
    border-radius: 8px;
    transition: all 0.3s ease;
}

header nav ul li a i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

header nav ul li a:hover i {
    transform: scale(1.2);
}

header nav ul li a.active,
header nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

header nav ul li a.donate {
    color: #ff5252;
    font-weight: bold;
    border: 1px solid rgba(255, 82, 82, 0.3);
}

header nav ul li a.donate:hover {
    background: rgba(255, 82, 82, 0.1);
    box-shadow: 0 0 20px rgba(255, 82, 82, 0.2);
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2em 0;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

#donate {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5em;
    width: 85%;
    max-width: 700px;
    background: rgba(0, 0, 0, 0);
    border-radius: 15px;
    padding: 1.5em;
    text-align: center;
    margin-top: 1em;
}

.donation-option {
    flex: 1;
    max-width: 300px;
    background: rgba(0, 0, 0, 0.5);
    padding: 1em;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.donation-option:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0.7);
}

.donation-option h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5em;
    color: #ff5252;
}

.donation-option p {
    margin: 0.5em 0;
    font-size: 0.9rem;
}

.donation-option .price {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 1em;
    color: #ffcc00;
}

#donate ul {
    padding-left: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#donate li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 0.07em;
    text-align: left;
    width: 100%;
}

.bullet {
    margin-right: 10px;
    font-size: 1.5rem;
}

#donate li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5em;
    color: #fff;
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-image {
    background: url('images/csgo-server.jpg') no-repeat center center/cover;
    filter: blur(8px) brightness(0.3);
    height: 100%;
    width: 100%;
    transform: scale(1.1);
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 0.5em;
    background-color: rgba(0, 0, 0, 0);
    color: #bbb;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

.fade-enter {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-enter-active {
    opacity: 1;
    transform: translateY(0);
}

.fade-exit {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-exit-active {
    opacity: 0;
    transform: translateY(-20px);
}

.star {
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100px);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        justify-content: center;
    }
    #donate {
        flex-direction: column;
        width: 100%;
    }
    .donation-option {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    header .logo {
        font-size: 1.2em;
    }
    .main-heading {
        font-size: 2rem;
    }
    .donation-option h2 {
        font-size: 1.1rem;
    }
    .donation-option .price {
        font-size: 1rem;
    }
}
