.privacy-page-wrapper {
max-width: 1340px !important;
}
.privacy-page-wrapper #mainContainer {
max-width: 1140px !important;
}
.privacy-container {
width: 100%;
margin: 0 auto;
padding: 72px 24px 0;
}
.privacy-section {
margin-bottom: 30px;
}
.privacy-hero {
text-align: center;
margin-bottom: 96px;
}
.privacy-hero-overline {
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 20px;
}
.privacy-hero-title {
font-family: 'Inter', sans-serif;
font-size: clamp(2.5rem, 6vw, 4rem);
font-weight: 700;
color: var(--accent);
line-height: 1.15;
letter-spacing: -1px;
margin-bottom: 28px;
}
.privacy-hero-rule {
width: 56px;
height: 3px;
background: linear-gradient(90deg, var(--accent), var(--gold));
margin: 0 auto 28px;
border-radius: 2px;
}
.privacy-hero-subtitle {
font-size: 1.1rem;
color: var(--text-secondary);
max-width: 600px;
margin: 0 auto;
line-height: 1.75;
}
.privacy-section-label {
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 12px;
}
.privacy-section-heading {
font-family: 'Inter', sans-serif;
font-size: clamp(1.5rem, 4vw, 2rem);
font-weight: 700;
color: var(--accent);
line-height: 1.2;
letter-spacing: -0.5px;
margin-bottom: 24px;
}
.privacy-policy-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
margin-bottom: 64px;
}
.privacy-policy-card {
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 32px;
transition: border-color var(--transition), box-shadow var(--transition);
}
.privacy-policy-card:hover {
border-color: var(--gold);
box-shadow: 0 8px 24px rgba(30, 58, 95, 0.08);
}
.privacy-policy-card h3 {
font-family: 'Inter', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 16px;
line-height: 1.3;
}
.privacy-policy-card p {
font-size: 0.95rem;
color: var(--text-secondary);
line-height: 1.75;
margin-bottom: 16px;
}
.privacy-policy-card p:last-child {
margin-bottom: 0;
}
.privacy-policy-card strong {
color: var(--text-primary);
font-weight: 600;
}
.privacy-policy-card code {
background: var(--bg-tertiary);
padding: 2px 6px;
border-radius: 4px;
font-family: 'Courier New', monospace;
font-size: 0.85rem;
color: var(--accent);
}
[data-theme="dark"] .privacy-policy-card code {
background: rgba(74, 144, 196, 0.15);
}
.privacy-policy-card ul {
margin: 12px 0 0 20px;
color: var(--text-secondary);
line-height: 1.75;
}
.privacy-card-note {
margin-top: 12px;
font-size: 0.85rem;
color: var(--text-muted);
}
.privacy-disclaimer-box {
background: linear-gradient(135deg,
rgba(217, 119, 6, 0.08),
rgba(201, 168, 76, 0.08));
border: 1px solid #D97706;
border-radius: var(--radius);
padding: 28px;
margin: 32px 0;
}
[data-theme="dark"] .privacy-disclaimer-box {
background: linear-gradient(135deg,
rgba(251, 191, 36, 0.12),
rgba(240, 192, 96, 0.12));
border-color: #FBBF24;
}
.privacy-disclaimer-box h4 {
font-size: 0.95rem;
font-weight: 700;
color: #D97706;
margin-bottom: 8px;
font-family: 'Inter', sans-serif;
}
[data-theme="dark"] .privacy-disclaimer-box h4 {
color: #FBBF24;
}
.privacy-disclaimer-box p {
font-size: 0.95rem;
color: var(--text-secondary);
line-height: 1.75;
margin: 0 !important;
}
.privacy-contact-block {
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 40px;
text-align: center;
}
.privacy-contact-block h3 {
font-family: 'Inter', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 20px;
}
.privacy-contact-block p {
font-size: 0.95rem;
color: var(--text-secondary);
margin-bottom: 24px;
line-height: 1.75;
}
.privacy-contact-links {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.privacy-contact-link {
display: inline-block;
padding: 10px 20px;
background: var(--bg-tertiary);
border: 1px solid var(--border);
border-radius: 6px;
color: var(--accent);
text-decoration: none;
font-size: 0.95rem;
font-weight: 500;
transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.privacy-contact-link:hover {
background: var(--accent);
color: #fff;
border-color: var(--accent);
}
@media (max-width: 768px) {
.privacy-container {
padding: 60px 16px 0;
}
.privacy-policy-grid {
grid-template-columns: 1fr;
gap: 24px;
}
.privacy-disclaimer-box {
padding: 20px;
}
.privacy-contact-links {
flex-direction: column;
}
.privacy-contact-link {
width: 100%;
text-align: center;
}
}
@keyframes privacyFadeUp {
from { opacity: 0; transform: translateY(18px); }
to   { opacity: 1; transform: translateY(0); }
}
.privacy-hero,
.privacy-section {
animation: privacyFadeUp 0.7s ease-out both;
}
.privacy-section:nth-of-type(1) { animation-delay: 0.1s; }
.privacy-section:nth-of-type(2) { animation-delay: 0.2s; }
.privacy-section:nth-of-type(3) { animation-delay: 0.3s; }