body, html {
    min-height: 100%;
    margin: 0;
    padding: 0;
    background-color: #10103A;
    font-family: 'Raleway', sans-serif;
    color: #FFFFFF;
}
.page-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
h1 {
    font-family: 'Cinzel', serif;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    text-align: center;
}
.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}
.logo {
    max-width: 30%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.logo-small {
    max-width: 15%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}
a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}
.oferta-link {
    font-size: 16px; /* Smaller font size for the oferta link */
    text-decoration: underline
}
.telegram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.telegram-icon {
    color: #FFFFFF;
}
.description-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
    max-width: 85%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    text-align: left;
    line-height: 1.6;
}

.description-box::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.description-box h3 {
    font-family: 'Raleway', sans-serif;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    text-align: center;
}

.description-box p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.description-box .section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description-box .section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.description-box .highlight {
    color: #a3c4ff;
    font-weight: 500;
}

.description-box ul {
    margin: 10px 0 15px 20px;
    padding: 0;
}

.description-box li {
    margin-bottom: 8px;
    list-style-type: none;
    position: relative;
    padding-left: 5px;
}

.description-box .icon {
    margin-right: 8px;
}

.description-box .note {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.95rem;
}

.section-icon {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 30px;
    font-family: 'Raleway', sans-serif;
}

.section-title {
    color: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    text-align: center;
}

.screenshots-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    max-width: 800px;
    flex-wrap: wrap;
}

.screenshot {
    max-width: 45%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .screenshot {
        max-width: 90%;
    }
}

.bottom-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.bottom-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-bottom: 1px solid transparent;
}

.bottom-menu a:hover {
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transform: none;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.bottom-menu a.active {
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}