:root {
    --color-dark-bg: #1A1A1A;
    --color-bg-panel: #2A2A2A;
    --color-primary: #D4AF37; /* Gold */
    --color-secondary: #F5F5F5; /* Off-white for text */
    --color-text-primary: #EAEAEA;
    --color-text-secondary: #B0B0B0;
    --color-border: #444444;
    --font-body: 'Inter', 'Noto Sans JP', sans-serif;
    --font-heading: 'Inter', 'Noto Sans JP', sans-serif;
    --font-code: 'JetBrains Mono', 'Fira Code', 'Consolas', 'Monaco', monospace;
}

/* --- Base Styles & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--color-text-primary);
    background-color: var(--color-dark-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    border-bottom: 1px solid var(--color-border);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    animation: heroTunnelExit 4s ease-out forwards;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1.0;
    filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-top: 15vh;
    padding-bottom: 5vh;
    transform: translateY(10px);
}

.hero-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-footer {
    width: 100%;
}

.brand {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #FFB366; /* より色っぽいオレンジゴールド */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 179, 102, 0.4);
    opacity: 0;
    animation: tunnelExit 3s ease-out forwards;
}

.tagline {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: #FFFFFF;
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 2s ease-out 1.5s forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 0.9rem;
    color: #333333;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 2s ease-out 2s forwards;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.price-section {
    text-align: left;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
}

.price-note {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.cta-button {
    font-family: var(--font-body);
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-primary);
    color: var(--color-dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.scroll-indicator {
    margin-top: 20px;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-text-secondary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes tunnelExit {
    0% {
        opacity: 0;
        transform: scale(3) blur(20px);
        text-shadow: 0 0 100px rgba(255, 255, 255, 1), 0 0 200px rgba(255, 255, 255, 0.8);
        filter: brightness(5) saturate(0);
    }
    30% {
        opacity: 0.3;
        transform: scale(2) blur(10px);
        text-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 0 0 100px rgba(255, 255, 255, 0.6);
        filter: brightness(3) saturate(0.5);
    }
    60% {
        opacity: 0.7;
        transform: scale(1.2) blur(3px);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.6);
        filter: brightness(1.5) saturate(1);
    }
    100% {
        opacity: 1;
        transform: scale(1) blur(0px);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.6), 0 0 25px rgba(212, 175, 55, 0.5);
        filter: brightness(1) saturate(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTunnelExit {
    0% {
        background: rgba(255, 255, 255, 0.95);
        filter: brightness(10) saturate(0);
    }
    25% {
        background: rgba(255, 255, 255, 0.7);
        filter: brightness(5) saturate(0.3);
    }
    50% {
        background: rgba(255, 255, 255, 0.3);
        filter: brightness(2) saturate(0.7);
    }
    75% {
        background: rgba(255, 255, 255, 0.1);
        filter: brightness(1.3) saturate(0.9);
    }
    100% {
        background: transparent;
        filter: brightness(1) saturate(1);
    }
}

/* --- Product Showcase Section --- */
.product-showcase {
    background-color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    border-bottom: none;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-image-main {
    text-align: center;
}

.product-image-main img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    loading: lazy;
}

.product-image-main img:hover {
    transform: scale(1.05);
}

.product-info h2 {
    font-family: var(--font-code);
    font-size: 3rem;
    color: #333333;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.product-info h2::after {
    display: none;
}

.product-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 40px;
}

.product-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #E0E0E0;
}

.highlight-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 100px;
}

.highlight-text {
    font-size: 1.1rem;
    color: #333333;
}

.product-detail-button {
    margin-top: 30px;
    padding: 14px 40px;
    background: var(--color-primary);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.product-detail-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: #C29D2F;
}

.product-detail-button:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .product-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .product-info h2 {
        text-align: center;
    }
    
    .product-detail-button {
        width: 100%;
        margin-top: 40px;
    }
}

/* --- Problem Section --- */
.problem {
    background-color: var(--color-dark-bg);
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.problem-item {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.3s ease;
}

.problem-item:hover::before {
    background-color: rgba(0, 0, 0, 0.4);
}

.problem-item:nth-child(1) { background-image: url('web-assets/深夜作業.webp'); }
.problem-item:nth-child(2) { background-image: url('web-assets/悪天候.webp'); }
.problem-item:nth-child(3) { background-image: url('web-assets/眼精疲労.webp'); }
.problem-item:nth-child(4) { background-image: url('web-assets/時差ぼけ.webp'); }

.problem-item > * {
    position: relative;
    z-index: 2;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: var(--color-primary);
}

.problem-icon-wrapper {
    margin-bottom: 20px;
    display: inline-block;
    background-color: var(--color-bg-panel);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    transition: background-color 0.3s ease;
}

.problem-icon-wrapper img {
    width: 32px;
    height: 32px;
    filter: invert(80%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(150%) contrast(100%);
    transition: filter 0.3s ease;
}

.problem-item:hover .problem-icon-wrapper {
    background-color: var(--color-primary);
}

.problem-item:hover .problem-icon-wrapper img {
    filter: none;
}

.problem-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-text-primary);
}

.problem-item p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* --- Solution Section --- */
.comparison-slider {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    aspect-ratio: 4 / 3;
}

.comparison-slider .comparison-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-slider .comparison-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#comparison-after {
    clip-path: inset(0 0 0 50%);
}

.comparison-slider .comparison-label {
    position: absolute;
    top: 15px;
    padding: 8px 12px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.comparison-slider .before {
    left: 15px;
}

.comparison-slider .after {
    right: 15px;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: ew-resize;
    z-index: 3;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 4px;
    height: 100vh; /* Make it tall enough to not be visible */
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.7);
}

.solution-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Lux Chart --- */
.lux-chart {
    margin-top: 80px;
    padding: 40px;
    background-color: var(--color-bg-panel);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.chart-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.chart-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 250px;
    border-left: 2px solid var(--color-border);
    border-bottom: 2px solid var(--color-border);
    padding: 0 20px;
    gap: 15px;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    position: relative;
}

.bar {
    width: 100%;
    background: linear-gradient(to top, #666666, #888888);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 1s ease-out;
}

.bar.highlight {
    background: linear-gradient(to top, #FFB366, #FFCC99);
}

.chart-bar:first-child .bar {
    background: linear-gradient(to top, #CC6600, #FF8533);
}

.bar .bar-value {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--color-text-primary);
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    white-space: nowrap;
}

.bar-label {
    margin-top: 15px;
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    color: var(--color-text-secondary);
    text-align: center;
    line-height: 1.4;
    width: 100%;
    min-height: 40px; /* ラベルの高さを確保して底辺を揃える */
}

/* --- Features Section --- */
.features {
    background-color: var(--color-bg-panel);
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item.reverse {
    grid-template-columns: 1fr 1fr; /* Keep the same for reverse */
}

.feature-item.reverse .feature-video,
.feature-item.reverse .feature-image {
    order: 2;
}

.feature-video video,
.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

/* --- Use Cases Section --- */
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.use-case-item {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--color-border);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.use-case-item:hover {
    transform: scale(1.03);
}

.use-case-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.3s ease;
}

.use-case-item:hover::before {
    background-color: rgba(0, 0, 0, 0.4);
}

.use-case-item:nth-child(1) { background-image: url('web-assets/エンジニア.webp'); }
.use-case-item:nth-child(2) { background-image: url('web-assets/学生.webp'); }
.use-case-item:nth-child(3) { background-image: url('web-assets/夜勤.webp'); }

.use-case-item > * {
    position: relative;
    z-index: 2;
}

.use-case-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* --- Specs Section --- */
.specs {
    background-color: var(--color-bg-panel);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: var(--color-dark-bg);
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
}

.spec-label {
    font-weight: 500;
    color: var(--color-text-secondary);
}

.spec-value {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--color-text-primary);
}

/* --- Order Section --- */
.order-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-bg-panel);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.product-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.product-summary img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.product-summary h3 {
    font-family: var(--font-code);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.price-summary {
    text-align: center;
    margin-bottom: 30px;
}

.price-large {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.price-details p {
    color: var(--color-text-secondary);
}

.purchase-button {
    width: 100%;
    background: var(--color-primary);
    color: var(--color-dark-bg);
    border: none;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.purchase-button:hover {
    transform: scale(1.02);
}

/* --- Footer --- */
.footer {
    background-color: #2A2A2A;
    padding: 60px 0 30px;
    border-top: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-link:hover {
    color: #FFFFFF;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-text {
    font-family: var(--font-code);
    font-size: 1.5rem;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444444;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-column {
        gap: 12px;
    }
}

/* --- Animation Classes --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.slide-in-bottom {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease-out;
}

.slide-in-bottom.animate {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.stagger-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for multiple items */
.stagger-animation:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation:nth-child(6) { transition-delay: 0.6s; }

/* Floating animation for images */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Pulse animation for highlights */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Typewriter effect */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--color-primary);
    white-space: nowrap;
    animation: typewriter 2s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--color-primary);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
    }

    .feature-item.reverse .feature-video,
    .feature-item.reverse .feature-image {
        order: 0;
    }

    .feature-content {
        text-align: center;
    }

    .chart-bar-container {
        padding: 0 5px;
    }

    .bar .bar-value {
        font-size: 0.7rem;
    }

    .bar-label {
        font-size: 0.7rem;
        min-height: 30px;
    }

    /* Reduce animation intensity on mobile */
    .fade-in-up, .fade-in-left, .fade-in-right, .scale-in, .slide-in-bottom {
        transform: translateY(20px);
    }
    
    .fade-in-left {
        transform: translateX(-20px);
    }
    
    .fade-in-right {
        transform: translateX(20px);
    }
}
