/* =========================================
   Premium Feedback Banner
   Angezeigt: 27.12. - 31.12.
   ========================================= */

/* Main Container */
.FeedbackBanner {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 8px;
    padding: 16px 12px;
    margin: 0;
    overflow: hidden;
}

/* Floating Bubbles Decoration */
.FeedbackBubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.FeedbackBubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatBubble 6s ease-in-out infinite;
}

.FeedbackBubble:nth-child(1) {
    width: 80px;
    height: 80px;
    top: -20px;
    left: 10%;
    animation-delay: 0s;
}

.FeedbackBubble:nth-child(2) {
    width: 50px;
    height: 50px;
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.FeedbackBubble:nth-child(3) {
    width: 100px;
    height: 100px;
    top: -30px;
    right: 15%;
    animation-delay: 2s;
}

.FeedbackBubble:nth-child(4) {
    width: 40px;
    height: 40px;
    bottom: 10%;
    right: 25%;
    animation-delay: 3s;
}

.FeedbackBubble:nth-child(5) {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 5%;
    animation-delay: 1.5s;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-15px) scale(1.05);
        opacity: 0.25;
    }
}

/* Content Container */
.FeedbackContent {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Emoji Icon */
.FeedbackEmoji {
    font-size: 42px;
    margin-bottom: 12px;
    display: block;
    animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Title */
.FeedbackTitle {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
}

/* Subtitle */
.FeedbackSubtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
    line-height: 1.4;
}

/* Button */
.FeedbackButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff !important;
    color: #764ba2 !important;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.FeedbackButton:hover {
    background: #f0f0ff !important;
}

.FeedbackButtonIcon {
    font-size: 18px;
}

/* Hint Text */
.FeedbackHint {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* Decorative Corner Accents */
.FeedbackAccent {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.FeedbackAccent--topLeft {
    top: -60px;
    left: -60px;
}

.FeedbackAccent--bottomRight {
    bottom: -60px;
    right: -60px;
}

/* Close Icon */
.FeedbackCloseIcon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.8;
    z-index: 10;
    transition: opacity 0.2s ease;
}

.FeedbackCloseIcon:hover {
    opacity: 1;
}

/* =========================================
   Feedback Page Intro Box
   ========================================= */

.FeedbackIntro {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 8px;
    padding: 16px;
    overflow: hidden;
}

.FeedbackIntroContent {
    position: relative;
    z-index: 2;
}

.FeedbackIntroText {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.FeedbackIntroText + .FeedbackIntroText {
    margin-top: 12px;
}

/* =========================================
   Dark Mode
   ========================================= */

@media (prefers-color-scheme: dark) {
    .FeedbackBanner,
    .FeedbackIntro {
        background: linear-gradient(135deg, #4a5899 0%, #5a3a7a 50%, #a06cad 100%);
    }
}
