:root {
    --primary-color: #FF9800;
    --primary-hover: #F57C00;
    --secondary-color: #FFCC80;
    --accent-color: #80DEEA;
    --text-main: #4E342E;
    --text-light: #795548;
    --bg-color: #FFF8E1;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-heading: 'M PLUS Rounded 1c', sans-serif;
    --font-body: 'Zen Maru Gothic', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #FFFDE7 0%, #FFE0B2 100%);
    /* Soft Yellow to Orange */
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    transition: transform 0.15s ease-out;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.05em;
    /* Add elegance */
}

h3.section-title {
    font-weight: 900;
    letter-spacing: 0.1em;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    /* Larger padding */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    cursor: pointer;
    border: none;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 128, 171, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 128, 171, 0.6);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--secondary-color);
    color: var(--text-main);
    padding: 10px 24px;
    font-size: 14px;
}

.btn-nav:hover {
    background: #ffe0b2;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    width: 56px;
    height: 56px;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn:active {
    transform: scale(0.92);
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    border-radius: 3px;
    transition: 0.4s;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.mobile-menu-btn span:nth-child(1) {
    top: 17px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn span:nth-child(3) {
    bottom: 17px;
}

/* Hero Section - Fullscreen Video */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: var(--bg-color);
    /* Match website background */
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200% !important;
    /* Default oversized */
    height: 200% !important;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Robust responsive video sizing */

/* WIDE SCREEN (Desktop/Landscape): Align w/ Width */
@media (min-aspect-ratio: 16/9) {
    .hero-video-bg iframe {
        width: 100vw;
        height: 56.25vw;
        min-height: 100vh;
    }
}

/* TALL SCREEN (Mobile/Portrait): Align w/ Height */
@media (max-aspect-ratio: 16/9) {
    .hero-video-bg iframe {
        height: 110vh;
        /* 110% to account for address bars */
        width: 196vh;
        /* 110 * 1.777 */
        min-width: 100vw;
    }
}

/* Force override for portrait orientation/mobile to perform correct scaling */
@media (orientation: portrait),
(max-width: 768px) {
    .hero-video-bg iframe {
        /* Priority: Fill Height */
        height: 100vh !important;
        height: 100dvh !important;
        /* Use dynamic viewport height if supported */

        /* Calculate Width necessary to maintain 16:9 aspect ratio at that height */
        /* 100vh * (16/9) = 177.77vh */
        width: 177.78vh !important;

        /* Remove any constraints that might force it to fit width */
        min-width: 0 !important;
        max-width: none !important;

        /* Center crop */
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darken overlay for better text contrast - Warm Brown instead of Black */
    background: rgba(78, 52, 46, 0.4);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--white);
    /* Stronger shadow for readability */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-title .highlight {
    color: #FFF;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px var(--primary-color);
}

.hero-description {
    font-size: 1.4rem;
    color: #FFF;
    margin-bottom: 48px;
    margin-bottom: 48px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: 700;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Floating Animation */
@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float-y 3s ease-in-out infinite;
}

/* About Section */
.section-header {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 24px 40px;
    border-radius: 60px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-main);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.about-card {
    background: var(--glass-bg);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
}

.about-card .icon-box {
    font-size: 3rem;
    margin-bottom: 24px;
    background: #fff;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-inline: auto;
    box-shadow: var(--shadow-sm);
}

.about-card h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.about-card p {
    color: var(--text-light);
}

/* Activity Section */
.activity-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.activity-info {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.activity-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    color: white;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
}

.activity-list {
    list-style: none;
    margin-top: 32px;
}

.activity-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: var(--text-main);
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 4px;
}

.activity-list strong {
    font-size: 1.1rem;
    color: var(--text-main);
    display: block;
    margin-bottom: 4px;
}

.activity-list p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Schedule Section */
.schedule {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 245, 248, 0.9));
    border-radius: 100px 100px 0 0;
    backdrop-filter: blur(5px);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.schedule-card {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.schedule-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.schedule-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    background: #FFF1F5;
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
}

.schedule-content .large-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.schedule-content .time-text {
    font-size: 1.2rem;
    color: var(--text-light);
}

.schedule-content p {
    color: var(--text-light);
}

.schedule-content .note {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-top: 8px;
}

.divider {
    height: 1px;
    background: #eee;
    margin: 32px 0;
}

.map-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.map-link:hover {
    border-bottom-color: var(--primary-color);
}

/* Contact Section */
.contact {
    position: relative;
    padding: 120px 0;
    color: var(--white);
    overflow: hidden;
    background: rgba(255, 152, 0, 0.92);
    /* High opacity to hide pattern for readability */
    backdrop-filter: blur(5px);
}

.contact-bg-shape {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1.5);
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.contact-text {
    font-size: 1.2rem;
    margin-bottom: 48px;
    opacity: 0.9;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-note {
    margin-top: 32px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-note a {
    color: var(--white);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-main);
    /* Dark brown */
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .activity-wrapper {
        grid-template-columns: 1fr;
    }

    .header-container {
        padding: 0 24px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        padding: 80px 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .nav-list a {
        font-size: 1.2rem;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 25px;
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 25px;
        bottom: auto;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .schedule-row {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .schedule-label {
        margin: 0 auto;
    }

    .schedule-card {
        padding: 32px 20px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Scroll Reveal Animations */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staff Section */
.staff-intro {
    margin-bottom: 60px;
}

.staff-group-image {
    max-width: 600px;
    margin: 0 auto 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 8px solid white;
    transform: rotate(-1deg);
    transition: var(--transition);
}

.staff-group-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.staff-group-image img {
    width: 100%;
    display: block;
}

.staff-message {
    font-size: 1.1rem;
    color: var(--text-main);
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.staff-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 204, 128, 0.3);
    /* Subtle orange border */
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.15);
    border-color: var(--primary-color);
}

.staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.staff-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 5px solid #FFF;
    position: relative;
    background: #fff;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.staff-card:hover .staff-image img {
    transform: scale(1.15) rotate(3deg);
}

.staff-info h4 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.staff-role {
    display: inline-block;
    padding: 4px 12px;
    background: #FFEBEE;
    /* Light pink/orange tone */
    color: var(--primary-color);
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}

.staff-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.staff-card {
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--secondary-color);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

.modal-image-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-title-group h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.modal-title-group span {
    display: inline-block;
    background: #FFEBEE;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.modal-body {
    line-height: 1.8;
    color: var(--text-main);
}

@media (max-width: 500px) {
    .modal-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Toy Poodle Animation */
.poodle-character {
    position: fixed;
    z-index: 50;
    /* Behind modal but in front of content */
    pointer-events: none;
    transition: transform 1s;
}

.poodle-run {
    width: 100px;
    /* Width of one frame */
    height: 100px;
    background-image: url('assets/poodle_run_sprite.png');
    background-size: 400% 100%;
    /* 4 frames horizontal */
    bottom: 20px;
    right: -150px;
    /* Combine movement and sprite animation */
    /* Use a wrapper if you want independent control, but here we can try combined or simple GIF-like */
    animation: runAcross 8s linear infinite, spriteRun 0.6s steps(4) infinite;
    display: none;
    /* Controlled by JS */
}

.poodle-peek {
    width: 120px;
    /* Width of one frame */
    height: 120px;
    background-image: url('assets/poodle_peek_sprite.png');
    background-size: 200% 100%;
    /* 2 frames horizontal */
    background-position: 0 0;
    bottom: -150px;
    left: 40px;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: none;
    /* Controlled by JS */
    /* Blink animation occasionally */
    animation: spriteBlink 3s steps(2) infinite;
}

@keyframes spriteRun {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -400% 0;
    }

    /* Move background left to reveal next frames */
}

@keyframes spriteBlink {

    0%,
    90% {
        background-position: 0 0;
    }

    /* Eyes Open */
    92% {
        background-position: -100% 0;
    }

    /* Eyes Closed */
    94% {
        background-position: 0 0;
    }

    /* Eyes Open */
    100% {
        background-position: 0 0;
    }
}

.poodle-peek.show {
    bottom: -10px;
}

@keyframes runAcross {
    0% {
        right: -150px;
        transform: scaleX(1);
    }

    45% {
        right: 110%;
        transform: scaleX(1);
    }

    50% {
        right: 110%;
        transform: scaleX(-1);
        /* Flip for return */
    }

    95% {
        right: -150px;
        transform: scaleX(-1);
    }

    100% {
        right: -150px;
        transform: scaleX(1);
    }
}