body {
    font-family: sans-serif;
    background-color: #1a1a2e;
    color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    background-color: #16213e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    text-align: center;
}

h1 {
    color: #e94560;
    margin-bottom: 20px;
}

h2 {
    color: #e94560;
    margin: 30px 0 15px 0;
    font-size: 1.5em;
}

h3 {
    color: #e94560;
    margin-bottom: 10px;
}


.cover-image {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.screenshots img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.screenshots img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1000;
    cursor: pointer;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}


.requirements {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 15px 25px;
    margin: 20px 0;
    text-align: left;
}

.req-col ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.req-col li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.req-col li:last-child {
    border-bottom: none;
}


.download-links {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e94560;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s;
}

.button:hover {
    background-color: #b52b43;
    transform: translateY(-2px);
}

/* Иконки для кнопок */
.button.windows::before {
    font-size: 1.1em;
}

.button.mac::before {
    content: "🍎";
    font-size: 1.1em;
}

.button.android::before {
    content: "📱";
    font-size: 1.1em;
}

.note {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 20px;
}

/* Футер */
.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.8em;
    color: #888;
    text-align: center;
}

.footer a {
    color: #e94560;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Адаптация для мобильных устройств */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    .screenshots img {
        width: 140px;
    }
    
    .button {
        padding: 10px 18px;
        font-size: 0.9em;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, opacity 0.2s;
}

.social-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-btn.vk {
    background-color: #0077ff;
    color: white;
}


.social-btn.telegram {
    background-color: #26a5e4;
    color: white;
}


