body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #000; /* Черный фон */
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f06292; /* Нежно-розовый для текста */
    overflow-x: hidden;
}

.hero {
    text-align: center;
    padding: 5px;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ec407a; /* Яркий нежно-розовый оттенок */
    text-shadow: 0 0 15px rgba(236, 64, 122, 0.6);
    margin: 0;
    padding-top: 5px;
    text-align: center;
}

.intro, .content p {
    font-size: 1.1rem;
    color: #f06292; /* Нежно-розовый для текста */
    margin: 3px 0;
    max-width: 600px;
    line-height: 1.6;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.image-container {
    position: relative;
    max-width: 600px;
    margin: 5px 0;
    perspective: 1000px;
}

.profile-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #f06292; /* Нежно-розовая рамка */
    box-shadow: 0 0 15px rgba(240, 98, 146, 0.8);
    transition: transform 0.5s ease;
}

.image-container:hover .profile-img {
    transform: rotateY(10deg) rotateX(10deg);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 5px 0;
    align-items: center;
    width: 100%;
}

.btn {
    display: inline-block;
    width: 300px;
    padding: 6px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #ec407a, #d81b60); /* Смелый розовый градиент */
    color: #fff;
    border: 2px solid #ad1457; /* Тёмно-розовый контур для выделения */
    box-shadow: 0 0 10px rgba(236, 64, 122, 0.8);
}

.btn:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #ad1457, #880e4f); /* Темнее розовый при наведении */
    box-shadow: 0 0 15px rgba(173, 20, 87, 0.9);
}

.content {
    font-size: 1.1rem;
    color: #f06292;
    margin: 20px 0;
    max-width: 600px;
    line-height: 1.6;
    text-align: left;
    animation: fadeIn 2s ease-in-out;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ec407a;
    text-shadow: 0 0 10px rgba(236, 64, 122, 0.6);
    margin: 5px 0;
    text-align: center;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #f8bbd0; /* Светло-розовый фон модального окна */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 15px rgba(240, 98, 146, 0.6);
}

.modal-content h2 {
    color: #ec407a;
    margin-bottom: 15px;
}

.modal-content p {
    color: #f06292;
    margin-bottom: 20px;
}

.modal-content button {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    background: #ec407a;
    color: #fff;
}

.modal-content button:hover {
    background: #d81b60;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    .btn {
        width: 250px;
        font-size: 1rem;
    }
    .profile-img {
        max-width: 90%;
    }
    .intro, .content {
        font-size: 1rem;
    }
}

footer {
    margin-top: auto;
    padding: 10px;
    text-align: center;
    color: #f06292;
    font-size: 0.8rem;
}

footer a {
    color: #ec407a;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.privacy-policy {
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f06292;
}

.privacy-policy h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec407a;
    text-shadow: 0 0 10px rgba(236, 64, 122, 0.6);
    margin-bottom: 20px;
}

.privacy-policy p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy-policy a {
    color: #ec407a;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}