/* Styling for the W */
.w-style {
    color: white;
    background-color: black;
    padding: 0 5px;
}

/* Styling for the HERE */
.here-style {
    color: black;
    background-color: white;
    padding: 0 5px;
}

/* FIX: Corrected double-dot syntax error and centered imagery layers perfectly */
.micro-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; 
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
}

/* Standardized micro-viewport proportions */
.tile-slideshow-viewport {
    position: relative;
    width: 100%;
    height: 280px;
    background: transparent;
    overflow: hidden;
    display: flex;       
    align-items: center; 
    justify-content: center; 
}

/* NEW: Standardized layout rule for emoji rendering metrics */
.theme-emoji-badge {
    font-size: 2.5rem; 
    line-height: 1;
    display: inline-block;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.theme-tile:hover .theme-emoji-badge {
    transform: scale(1.1); /* Subtle scaling effect on card hover */
}

/* Center the header text */
header {
    text-align: center;
    padding: 20px 20px; 
}

/* Center structural wrappers */
.container {
    max-width: 1200px; 
    margin: 0 auto;    
    text-align: center; 
}

footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    color: #8e8e93; 
    font-size: 0.9rem;
}