@charset "UTF-8";

/* Custom Styles for LINE Download Page */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Download Button Hover Effects */
.download-btn {
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-btn:hover {
    transform: translateY(-5px);
}

/* FAQ Animation */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

details[open] p {
    animation: fadeIn 0.3s ease-out;
}

/* Mobile Responsiveness tweaks */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
