{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #1a1a1a, #2c1a2e);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    overflow-x: hidden;
}

.hero {
    text-align: center;
    padding: 18px;
    padding-top: 0;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ff4d4d;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.8);
    margin-bottom: 30px;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    0% { text-shadow: 0 0 10px rgba(255, 77, 77, 0.8), 0 0 20px rgba(255, 77, 77, 0.4); }
    100% { text-shadow: 0 0 20px rgba(255, 77, 77, 1), 0 0 30px rgba(255, 77, 77, 0.6); }
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.btn {
    display: inline-block;
    width: 370px;
    padding: 11px;
    text-align: center;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 650;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.onlyfans-btn {
    background: linear-gradient(90deg, #ff4d4d, #ff1a1a, #ff8c66);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.6);
}

.youtube-btn {
    background: linear-gradient(90deg, #ff0000, #cc0000, #ff4d4d);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 77, 77, 0.8);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    perspective: 1000px;
}

.profile-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #ff4d4d;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.5);
    transition: transform 0.5s ease;
}

.image-container:hover .profile-img {
    transform: rotateY(10deg) rotateX(10deg);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.5);
}

.modal-content h2 {
    color: #ff4d4d;
    margin-bottom: 20px;
}

.modal-content p {
    color: #fff;
    margin-bottom: 30px;
}

.modal-content button {
    padding: 12px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
}

#confirmAge {
    background: #ff4d4d;
    color: #fff;
}

#cancelAge {
    background: #555;
    color: #fff;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .btn {
        width: 250px;
        font-size: 1.2rem;
    }

    .profile-img {
        max-width: 90%;
    }
}

footer {
    margin-top: auto;
    padding: 10px;
    text-align: center;
    color: #555;
    font-size: 0.6rem;
}

footer a {
    color: #ff4d4d;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Стили для страницы Privacy Policy */
.privacy-policy {
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.privacy-policy h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff4d4d;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.8);
    margin-bottom: 20px;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.privacy-policy p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy-policy a {
    color: #ff4d4d;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}