:root {
    /* Catppuccin Macchiato palette */
    --base: #1E1E2E;
    --mantle: #181825;
    --crust: #11111B;
    --text: #CDD6F4;
    --subtext0: #A6ADC8;
    --subtext1: #BAC2DE;
    --surface0: #313244;
    --surface1: #45475A;
    --surface2: #585B70;
    --overlay0: #6C7086;
    --overlay1: #7F849C;
    --overlay2: #9399B2;
    --blue: #89B4FA;
    --lavender: #B4BEFE;
    --sapphire: #74C7EC;
    --sky: #89DCEB;
    --teal: #94E2D5;
    --green: #A6E3A1;
    --yellow: #FAE3B0;
    --peach: #FAB387;
    --maroon: #EBA0AC;
    --red: #F38BA8;
    --mauve: #CBA6F7;
    --pink: #F5C2E7;
    --flamingo: #F2CDCD;
    --rosewater: #F5E0DC;
}

body {
    background-color: var(--base);
    color: var(--text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    transition: background-color 1s ease;
}

.container {
    width: 100%;
    max-width: 800px;
}

.quote-frame {
    background-color: var(--surface0);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.quote-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--mauve), var(--blue));
}

.quote-text {
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

/* Fade animation for quote transitions */
.fade-out {
    opacity: 0 !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .quote-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .quote-text {
        font-size: 1.2rem;
    }
    .quote-frame {
        padding: 20px;
    }
}