* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background: #0076a3;
    background-image: url(img/ss_1e361f6ed83dc2b821eabb63d04bf3c0d7b06fe5.1920x1080.jpg);
}

.main-layout {
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

h2 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.img-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    width: 100%;
    flex-wrap: wrap;
}

.img-card, .zakaz, .host {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 50, 100, 0.2), 
                inset 0 1px 2px rgba(255, 255, 255, 0.5);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.img-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 350px;
}

.img-thumb {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.img-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    padding: 6px 18px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    transition: background 0.2s ease;
}

.card-link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.img-card:hover, .zakaz:hover, .host:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 30px rgba(0, 50, 100, 0.3), 
                inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.zakaz {
    width: 100%;
    max-width: 800px;
}

.zakaz p {
    font-size: 17px;
}

.tg-link {
    color: #00f0ff;
    font-weight: 600;
    text-decoration: none;
}

.ds-text {
    color: #00ff87;
    font-weight: 600;
}

.host {
    width: 100%;
    max-width: 500px;
}

.host-btn {
    display: inline-block;
    text-decoration: none;
    color: #004471;
    background: linear-gradient(180deg, #ffffff 0%, #edf5f8 100%);
    padding: 10px 30px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.host-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1000px) {
    .img-container {
        flex-direction: column;
        align-items: center;
    }
    .img-card {
        width: 100%;
        max-width: 400px;
    }
}
