@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --neon-green: #39ff14;
    --electric-blue: #0066ff;
    --sunset-orange: #ff6b35;
    --dopamine-pink: #ff49db;
    --brutalist-yellow: #ffff00;
    --dark-bg: #0a0a0a;
    --light-gray: #f5f5f5;
    --medium-gray: #666;
    --trust-blue: #4285f4;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: var(--light-gray);
}

/* Hero Section */
.hero {
    height: 50vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-10px) translateY(-10px);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.privacy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--trust-blue) 0%, #34a853 100%);
    border-radius: 20px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.privacy-icon::before {
    content: '🔒';
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
    line-height: 0.9;
}

.hero .tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 300;
}

.last-updated {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    backdrop-filter: blur(10px);
    display: inline-block;
}

/* Trust Indicators */
.trust-section {
    background: white;
    padding: 60px 20px;
    border-bottom: 1px solid #eee;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

.trust-card {
    text-align: center;
    padding: 30px 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    animation: iconBounce 3s infinite ease-in-out;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }
}

.trust-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.trust-description {
    color: var(--medium-gray);
    font-size: 14px;
}

/* Main Content */
.content-section {
    background: white;
    padding: 80px 20px;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.content-header {
    background: var(--primary-gradient);
    padding: 40px;
    color: white;
    text-align: center;
}

.content-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.content-header p {
    font-size: 18px;
    opacity: 0.9;
}

.content-body {
    padding: 50px;
}

.section {
    margin-bottom: 50px;
}

.section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.subsection {
    margin-bottom: 30px;
    padding-left: 20px;
}

.subsection-title {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

.subsection p,
.section p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.subsection ul {
    margin: 15px 0;
    padding-left: 20px;
}

.subsection li {
    color: var(--medium-gray);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Highlight boxes */
.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-left: 4px solid var(--trust-blue);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.highlight-box h4 {
    color: var(--trust-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.highlight-box p {
    color: #444;
    margin-bottom: 0;
}

/* Code snippets */
.code-snippet {
    background: var(--dark-bg);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    margin: 15px 0;
    overflow-x: auto;
}

/* Contact Section */
.contact-highlight {
    background: var(--dark-bg);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.contact-highlight h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-highlight p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.contact-button {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(240, 147, 251, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 20px 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-content {
    max-width: 400px;
    margin: 0 auto;
}

.footer p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer a {
    color: var(--dopamine-pink);
    text-decoration: none;
    font-weight: 500;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .content-body {
        padding: 30px 25px;
    }

    .content-header {
        padding: 30px 25px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.trust-card:nth-child(1) .trust-icon {
    animation-delay: -0.5s;
}

.trust-card:nth-child(2) .trust-icon {
    animation-delay: -1s;
}

.trust-card:nth-child(3) .trust-icon {
    animation-delay: -1.5s;
}

.trust-card:nth-child(4) .trust-icon {
    animation-delay: -2s;
}