
body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f0f; /* Фон не белый  */
    color: #ffffff;
    margin: 0;
    padding: 0;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}


.menu {
    background-color: #1a1a1a;
    padding: 15px 0;
    text-align: center;
    border-bottom: 2px solid #ff0055;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.button {
    background-color: transparent;
    color: #ff0055;
    padding: 10px 25px;
    text-decoration: none;
    margin: 5px;
    display: inline-block;
    border: 2px solid #ff0055;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}



.button:hover {
    background-color: #ff0055;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 15px #ff0055;
}


h1, h2 {
    color: #ff0055;
    text-transform: uppercase;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

th {
    background-color: #ff0055;
    color: white;
}


img, iframe {
    max-width: 100%;
    border-radius: 15px;
    border: none;
}

select {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    background-color: #222; /* Темный фон */
    border: 2px solid #ff0055; /* Розовая рамка, как у кнопок */
    color: white; /* Белый текст */
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    appearance: none; /* Убирает стандартную стрелочку браузера */
}


select:hover {
    border-color: #ff88aa;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #222;
    border: 1px solid #444;
    color: white;
    border-radius: 8px;
}

textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #222;
    border: 1px solid #444;
    color: white;
    border-radius: 8px;
    font-family: 'Inter', sans-serif; 
    font-size: 16px;                  
    min-height: 100px;
    resize: vertical;
} 

.card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #ff0055;
    margin-bottom: 20px;
    transition: 0.4s;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(255, 0, 85, 0.3);
}

.status-pill { padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: bold; 
}
#hidden-gallery {
            display: none; 
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        .gallery-grid img {
            width: 100%;
            border-radius: 10px;
        }
     
