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

body {
    font-family: ui-rounded, 'SF Pro Rounded', 'SF Compact Rounded', -apple-system-body-rounded, system-ui, Avenir, 'Avenir Next', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

/* Main landing page */
.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.icon-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.main-icon {
    width: 300px;
    height: 300px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.shadow {
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5), transparent);
    border-radius: 50%;
    position: absolute;
    bottom: -30px;
    animation: shadowPulse 3s ease-in-out infinite;
    z-index: 1;
}

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

@keyframes shadowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(0.7);
        opacity: 0.15;
    }
}

.center-content h1 {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 2px;
}

footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    align-items: center;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.7;
}

footer span {
    color: white;
}

/* Content pages (privacy, terms) */
.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 100px;
    background: white;
    min-height: 100vh;
}

.header {
    margin-bottom: 30px;
}

.home-link {
    color: #667eea;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.home-link:hover {
    color: #764ba2;
}

.content-page h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.policy-content {
    line-height: 1.8;
    color: #555;
}

.policy-content h2 {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content strong {
    color: #333;
}

/* Corner Sassy */
.corner-sassy {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: transform 0.3s, opacity 0.3s;
}

.corner-sassy:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .center-content h1 {
        font-size: 2.5rem;
    }

    .main-icon {
        width: 200px;
        height: 200px;
    }

    .shadow {
        width: 140px;
        height: 30px;
        bottom: -40px;
    }

    .content-page {
        padding: 20px 15px 100px;
    }

    .content-page h1 {
        font-size: 2rem;
    }

    .corner-sassy {
        width: 60px;
        height: 60px;
    }
}
