#main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* General Body & Font Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    overflow-x: hidden; /* Allows vertical scrolling */
}

/* Glassmorphism Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Report Page Card Specifics */
.glass-card:hover {
    transform: translateY(-5px) scale(1.03);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}
.glass-card[data-embed-url] {
    cursor: pointer;
}
.card-content {
    position: relative;
    z-index: 2;
}
.card-bg-icon {
    position: absolute;
    right: -15%;
    bottom: -15%;
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0.1;
    z-index: 1;
    transform: rotate(-10deg);
    transition: opacity 0.3s ease;
}
.glass-card:hover .card-bg-icon {
    opacity: 0.2;
}

/* Lottie Animation Container */
#lottie-quadrant {
    position: absolute;
    bottom: 5%;
    right: -150px;
    width: 70vw;
    height: 70vh;
    max-width: 800px;
    max-height: 800px;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

/* === CORRECTED STYLES FOR QUOTE BUTTON === */
#quote-button-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 30;
}
.quote-text {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.quote-trigger .icon.expanded {
    transform: rotate(45deg);
}

/* Partner Info Icon */
#info-icon {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}