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

:root {
    --purple-50: #F5F3FF;
    --purple-100: #EDE9FE;
    --purple-200: #DDD6FE;
    --purple-400: #A78BFA;
    --purple-500: #8B5CF6;
    --purple-600: #6C5CE7;
    --purple-700: #4834D4;
    --purple-900: #1E1B4B;
    --green-500: #10B981;
    --green-100: #D1FAE5;
    --blue-500: #3B82F6;
    --blue-100: #DBEAFE;
    --red-500: #EF4444;
    --red-100: #FEE2E2;
    --orange-500: #F59E0B;
    --orange-100: #FEF3C7;
    --yellow-500: #EAB308;
    --yellow-100: #FEF9C3;
    --bg: #0D0D0F;
    --surface: #18181B;
    --surface-2: #1F1F23;
    --text: #F4F4F5;
    --text-secondary: #A1A1AA;
    --border: #27272A;
    --radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 92, 231, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.floating-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--purple-600);
    top: -100px;
    right: -100px;
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--purple-700);
    bottom: 20%;
    left: -80px;
    animation: float2 25s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--purple-400);
    top: 50%;
    right: 10%;
    animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 60px) scale(1.1); }
    66% { transform: translate(30px, -30px) scale(0.95); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -40px) scale(1.15); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-30px, 40px); }
    66% { transform: translate(20px, -20px); }
}

.hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 0 40px;
}

.hero-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 32px;
    animation: heroAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes heroAppear {
    from {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.rabbit-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 30px rgba(108, 92, 231, 0.35));
}

.rabbit-svg .ear-left {
    transform-origin: 45px 40px;
    animation: earWiggle 3s ease-in-out infinite;
}

.rabbit-svg .ear-right {
    transform-origin: 75px 40px;
    animation: earWiggle 3s ease-in-out infinite 0.3s;
}

.rabbit-svg .coin {
    animation: coinBounce 2s ease-in-out infinite;
}

@keyframes earWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(3deg); }
}

@keyframes coinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--purple-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    animation: fadeUp 0.6s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    animation: fadeUp 0.6s ease-out 0.4s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}

.last-updated {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 12px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    display: inline-block;
    margin: 0 auto 40px;
    width: auto;
}

.policy-intro {
    text-align: center;
    margin-bottom: 48px;
}

.policy-intro p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.policy-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 4px 40px rgba(108, 92, 231, 0.08);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.15);
    color: var(--purple-400);
}

.section-icon svg {
    width: 22px;
    height: 22px;
}

.section-icon.icon-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green-500);
}

.section-icon.icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue-500);
}

.section-icon.icon-red {
    background: rgba(239, 68, 68, 0.15);
    color: var(--red-500);
}

.section-icon.icon-orange {
    background: rgba(245, 158, 11, 0.15);
    color: var(--orange-500);
}

.section-icon.icon-yellow {
    background: rgba(234, 179, 8, 0.15);
    color: var(--yellow-500);
}

.section-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.policy-section p {
    color: var(--text-secondary);
    font-size: 15px;
}

.data-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.data-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 16px;
    background: var(--surface-2);
    border-radius: 12px;
    border: 1px solid var(--border);
    line-height: 1.6;
}

.data-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--purple-400);
    background: rgba(108, 92, 231, 0.12);
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.not-collected-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.not-collected-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--surface-2);
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-secondary);
    transition: transform 0.2s ease;
}

.not-collected-item:hover {
    transform: translateY(-2px);
}

.not-collected-item svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: var(--red-500);
    opacity: 0.7;
}

.usage-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.usage-list li {
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.usage-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--purple-500);
    border-radius: 50%;
}

.callout {
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(108, 92, 231, 0.08);
    border-left: 3px solid var(--purple-500);
    border-radius: 0 10px 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.callout strong {
    color: var(--text);
}

.callout-important {
    background: rgba(239, 68, 68, 0.06);
    border-left-color: var(--red-500);
}

.security-badges {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.sec-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-500);
}

.sec-badge svg {
    width: 16px;
    height: 16px;
}

.contact-section {
    text-align: center;
}

.contact-section .section-header {
    justify-content: center;
}

.contact-link {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 100px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.45);
}

footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

footer p {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-rabbit {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    opacity: 0.4;
}

.footer-rabbit svg {
    width: 100%;
    height: 100%;
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 600px) {
    .hero {
        padding: 60px 0 32px;
    }

    .hero-icon {
        width: 110px;
        height: 110px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .policy-section {
        padding: 24px 20px;
    }

    .section-header h2 {
        font-size: 18px;
    }

    .not-collected-grid {
        grid-template-columns: 1fr;
    }

    .security-badges {
        flex-direction: column;
    }
}
