<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-dark: #333333;
    --primary-light: #FFFFFF;
    --accent: #666666;
    --text-highlight: #444444;
    --bg-color: #FFFFFF;
    --font-title: 'Charmonman';
    --font-text: 'Charmonman';
    --border-color: #DDDDDD;
    --arrow-color: #0000ff;
}

/* Font Loading */
.fonts-loaded {
    font-family: 'Charmonman', cursive;
    opacity: 1;
}

@font-face {
    font-family: 'Charmonman';
    font-display: swap;
    src: local('Charmonman');
}

/* Reset and Base Styles */
* {
    padding: 0;
    box-sizing: border-box;
    font-family: 'Charmonman', cursive !important;
}

html, body {
    height: 100vh;
    overflow: hidden;
    background-color: var(--bg-color);
}

body {
    margin: 12px 0 0 0;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    background: var(--bg-color);
    color: var(--primary-dark);
    margin-top: 10px;
    text-align: center;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border-color);
}

.header h1 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: normal;
    text-align: center;
    letter-spacing: 1px;
    margin-top: 10px;
    line-height: .9;
}

/* Carousel Base Styles */
.carousel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-inner {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Carousel Items */
.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.02);
}

.carousel-item.active {
    opacity: 1;
    position: relative;
    transform: scale(1);
}

.carousel-item-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

/* Image Container */
.image-container {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0;
    min-height: 0;
    position: relative;
    max-height: 75vh;
    background: var(--primary-light);
    overflow: hidden;
}

/* Carousel Images */
.carousel-item img {
    max-width: 85%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.carousel-item.active img {
    opacity: 1;
    transform: scale(1);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    min-width: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.carousel-control-prev {
    left: 2%;
    justify-content: flex-end;
    padding-right: 5px;
}

.carousel-control-next {
    right: 2%;
    justify-content: flex-start;
    padding-left: 5px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 35px;
    height: 35px;
    background-color: rgba(51, 51, 51, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: none;
    transition: background-color 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--primary-dark);
}

/* Custom Arrow Design */
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    position: absolute;
}

.carousel-control-prev-icon::after {
    transform: rotate(-135deg);
    right: 6px;
}

.carousel-control-next-icon::after {
    transform: rotate(45deg);
    left: 6px;
}

/* Carousel Title */
.carousel-title {
    font-family: var(--font-title);
    color: var(--primary-dark);
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    font-weight: normal;
    padding: 1rem;
    text-align: center;
    width: 100%;
    background: var(--primary-light);
    z-index: 2;
    position: relative;
}

/* Footer Styles */
footer {
    background: var(--bg-color);
    color: var(--primary-dark);
    padding: 1rem;
    text-align: center;
    width: 100%;
    flex-shrink: 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer p {
    margin: 0.25rem 0;
}

footer a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: normal;
    font-family: var(--font-text);
}

footer a:hover {
    color: var(--accent);
}

/* Loading Indicator */
.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Responsive Design */
@media screen and (min-width: 1200px) {
    .image-container {
        max-height: 65vh;
        padding: 1.5rem;
    }
    
    .carousel-item img {
        max-width: 70%;
        max-height: 60vh;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .image-container {
        max-height: 60vh;
        padding: 1rem;
    }
    
    .carousel-item img {
        max-width: 75%;
        max-height: 55vh;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .image-container {
        max-height: 65vh;
        padding: 0.75rem;
    }
    
    .carousel-item img {
        max-width: 80%;
        max-height: 60vh;
    }
}

@media screen and (max-width: 767px) {
    .image-container {
        max-height: calc(100vh - 150px);
        padding: 0.5rem;
    }
    
    .carousel-item img {
        max-width: 95%;
        max-height: calc(100vh - 180px);
    }
    
    .carousel-control-prev {
        left: 0.5%;
    }
    
    .carousel-control-next {
        right: 0.5%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 480px) {
    .image-container {
        padding: 0.25rem;
    }
    
    .carousel-item img {
        max-width: 98%;
    }
}

@media screen and (min-height: 1000px) {
    .image-container {
        max-height: 60vh;
    }
    
    .carousel-item img {
        max-height: 55vh;
    }
}

@media (max-height: 600px) {
    .header {
        padding: 0.5rem;
    }
    
    .header h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
}</pre></body></html>