/* Базовые стили */
body {
    background-color: #0e0e0e;
    color: white;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

/* Главный блок */
.rectangle {
    width: 100%;
    height: 100px;
    background: #1d1d1d;
    border-radius: 15px;
    border: 3px solid #ffffff;
    box-shadow: 0 0 15px rgba(173, 173, 173, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.what_the_text {
    font-style: italic;
    font-weight: bold;
    font-size: 30px;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    color: white;
    margin: 0;
    flex-shrink: 0;
}

.color1 {
    color: #00fff2;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.color2 {
    color: #ff9100;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

/* Кнопки в .rectangle */
.inline-buttons {
    display: flex;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-inline {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 8px;
    border-radius: 6px;
    transition: 0.2s;
    background-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-inline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Контент */
.content {
    max-width: 700px;
    margin: 0 auto;
}

.yra {
    padding-bottom: 5px;
    border-bottom: 2px solid #333;
    font-size: 20px;
    color: #e0e0e0;
    margin-top: 25px;
}

.porno {
    text-decoration: line-through;
    color: #888;
}

/* Сетка ссылок */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.link-grid a {
    display: block;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    transition: 0.2s;
}

.link-cyan:hover { text-shadow: 0 0 5px cyan; }
.link-red:hover { text-shadow: 0 0 5px red; }
.link-purple:hover { text-shadow: 0 0 5px purple; }

/* Подпись */
.footer {
    text-align: center;
    margin-top: 50px;
    color: #555;
    font-size: 12px;
}

.ps {
    font-size: 10px;
    color: #aaa;
    margin: 5px 0;
}

/* Адаптив */
@media (max-width: 600px) {
    .rectangle {
        height: auto;
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    .inline-buttons {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    .btn-inline {
        min-width: 120px;
    }
}