﻿body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #FFFFFF;
    color: #333333;
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* Hero Illustration Animation */
.hero-illustration div {
    animation: bounce-float 3s ease-in-out infinite;
}


@keyframes bounce-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* Glowing Buttons Animation */
.cta-button-glow {
    animation: glow 1.5s ease-in-out infinite;
}


@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 2px #FFCC33, 0 0 5px #FFCC33;
    }
    50% {
        box-shadow: 0 0 10px #FFCC33, 0 0 15px #FFCC33;
    }
}


/* Timeline Connector */
.timeline-line {
    position: relative;
}
.timeline-line:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 80px;
    height: 2px;
    background-color: #FFCC33;
    margin-left: 10px;
}
@media (max-width: 768px) {
    .timeline-line:not(:last-child)::after {
        width: 2px;
        height: 50px;
        top: 100%;
        left: 50%;
        margin-top: 10px;
        margin-left: 0;
        transform: translateX(-50%);
    }
}


/* --- New Animations for Cards (Visibility is handled by main.js) --- */
.card-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


.card-animation.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.card-animation.delay-1 {
    transition-delay: 0.1s;
}
.card-animation.delay-2 {
    transition-delay: 0.2s;
}
.card-animation.delay-3 {
    transition-delay: 0.3s;
}
.card-animation.delay-4 {
    transition-delay: 0.4s;
}
.card-animation.delay-5 {
    transition-delay: 0.5s;
}
.card-animation.delay-6 {
    transition-delay: 0.6s;
}
.card-animation.delay-7 {
    transition-delay: 0.7s;
}
.card-animation.delay-8 {
    transition-delay: 0.8s;
}
.card-animation.delay-9 {
    transition-delay: 0.9s;
}


/* 3D Tilt Effect on Hover */
.card-tilt {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.3s ease;
}
.card-tilt:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}


/* Adjusting for responsiveness on mobile */
@media (max-width: 768px) {
    .card-tilt:hover {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }
}


/* Additional Styles for Policy Pages */
.privacy-table th, .privacy-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}
.privacy-table th {
    font-weight: 700;
}
.guideline-highlight { /* Used in community-guidelines.html */
    color: #FFCC33;
    font-weight: 600;
}
.short-version-box { /* Used in community-guidelines.html */
    background-color: #FFFBEB; /* Light yellow/cream */
    border: 2px solid #FFCC33;
}