* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #fdf2f8 0%, #fff1f2 30%, #fce7f3 70%, #fdf2f8 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    margin: 0;
    position: relative;
}

.unified-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 2.5rem 2rem 2rem;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06), 0 8px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.avatar-wrapper {
    margin: 0 auto 1.5rem;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #f9a8d4, #fbcfe8, #fce7f3);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.25);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

h1 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #2d1b2e;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.description {
    font-size: 1.05rem;
    font-weight: 400;
    color: #6b5b6b;
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 0 0.5rem;
}

.description span {
    font-weight: 500;
    color: #be185d;
    background: linear-gradient(135deg, #be185d, #9d174d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    padding: 0.9rem 2.5rem;
    border-radius: 3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.35);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(236, 72, 153, 0.45);
    background: linear-gradient(135deg, #f9a8d4 0%, #f472b6 100%);
}

.btn:active {
    transform: translateY(0px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::after {
    left: 100%;
}

.content-text {
    text-align: left;
    color: #4a3b4a;
    line-height: 1.7;
    margin-top: 1rem;
}

.content-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d1b2e;
    margin-bottom: 1rem;
    text-align: center;
}

.content-text p {
    margin-bottom: 1rem;
    font-weight: 400;
}

.content-text strong {
    font-weight: 600;
    color: #be185d;
}

.footer-legal {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(190, 24, 93, 0.1);
    font-size: 0.85rem;
    color: #a08da0;
}

.footer-legal a {
    color: #be185d;
    text-decoration: none;
    font-weight: 500;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #be185d;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.25);
    background: white;
}

.privacy-policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.privacy-policy-modal:target {
    display: flex;
}

.privacy-policy-content {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: left;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.privacy-policy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d1b2e;
    margin-bottom: 1rem;
}

.privacy-policy-content p {
    margin-bottom: 1rem;
    color: #4a3b4a;
    line-height: 1.6;
}

.close-policy {
    display: inline-block;
    margin-top: 0.5rem;
    color: #be185d;
    font-weight: 600;
    text-decoration: none;
}

.close-policy:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    body {
        padding: 1rem;
    }
    .unified-card {
        padding: 2rem 1.5rem 1.8rem;
        border-radius: 1.8rem;
    }
    h1 {
        font-size: 2rem;
    }
    .description {
        font-size: 0.95rem;
    }
    .btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    .content-text {
        text-align: left;
    }
    .content-text h2 {
        font-size: 1.3rem;
    }
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}