/* Page Common Styles */
.page-header {
    text-align: center;
    padding: 4rem 1rem 2rem;
    position: relative;
    z-index: 10;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    background: linear-gradient(to right, var(--purple-400), var(--pink-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--purple-400);
    text-decoration: none;
    font-size: 1rem;
    margin: 2rem auto;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--purple-400);
    border-radius: 9999px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    margin-left: 2rem;
}

.back-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(-5px);
}

/* Privacy Policy Styles */
.policy-content {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.policy-section {
    background: linear-gradient(to bottom right, rgba(76, 29, 149, 0.1), rgba(131, 24, 67, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.policy-section:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--purple-400);
    margin-bottom: 1.5rem;
}

.policy-text {
    color: #e5e7eb;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-list {
    list-style: none;
    margin-left: 1.5rem;
    color: #e5e7eb;
}

.policy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.policy-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--purple-400);
    font-weight: bold;
}

.highlight {
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--purple-400);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0.5rem;
}

.contact-info {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
}

.contact-title {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--purple-400);
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--purple-300);
}

.email-link {
    color: var(--purple-400);
    text-decoration: none;
}

.email-link:hover {
    color: var(--purple-300);
}

/* Terms of Service Styles */
.terms-content {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.terms-section {
    background: linear-gradient(to bottom right, rgba(76, 29, 149, 0.1), rgba(131, 24, 67, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.terms-section:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.terms-text {
    color: #e5e7eb;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-list {
    list-style: none;
    margin-left: 1.5rem;
    color: #e5e7eb;
}

.terms-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.terms-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--purple-400);
    font-weight: bold;
}

.notice-box {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid var(--pink-400);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
}

.notice-box p {
    color: #f472b6;
    margin: 0;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 1rem 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .back-btn {
        margin-left: 1rem;
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .policy-section,
    .terms-section {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}