@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a35 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    font-size: 16px;
}

/* Floating Elements Animation */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    color: rgba(107, 125, 255, 0.4);
    font-size: 3rem;
    z-index: -1;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    filter: drop-shadow(0 0 8px rgba(107, 125, 255, 0.2));
}

.code-icon {
    top: 15%;
    left: 10%;
    animation: float-1 15s infinite;
    font-size: 4rem;
}

.gear-icon {
    top: 70%;
    left: 20%;
    animation: float-2 18s infinite;
    animation-delay: 1s;
    font-size: 3.5rem;
}

.server-icon {
    top: 30%;
    right: 15%;
    animation: float-3 20s infinite;
    animation-delay: 2s;
}

.database-icon {
    bottom: 20%;
    right: 25%;
    animation: float-4 17s infinite;
    animation-delay: 3s;
    font-size: 3.2rem;
}

.cloud-icon {
    top: 50%;
    left: 50%;
    animation: float-5 22s infinite;
    animation-delay: 4s;
    font-size: 4.5rem;
}

.browser-icon {
    bottom: 40%;
    left: 30%;
    animation: float-6 19s infinite;
    animation-delay: 5s;
}

@keyframes float-1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 30px) rotate(5deg); }
    50% { transform: translate(100px, -20px) rotate(10deg); }
    75% { transform: translate(50px, -50px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-70px, 40px) rotate(-10deg); }
    66% { transform: translate(40px, 80px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(-50px, -30px) rotate(-5deg); }
    40% { transform: translate(-100px, 20px) rotate(-10deg); }
    60% { transform: translate(-50px, 70px) rotate(-5deg); }
    80% { transform: translate(30px, 30px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-4 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(60px, -40px) rotate(8deg); }
    50% { transform: translate(20px, -80px) rotate(0deg); }
    75% { transform: translate(-40px, -30px) rotate(-8deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-5 {
    0% { transform: translate(0, 0) scale(1); }
    20% { transform: translate(-80px, 40px) scale(1.1); }
    40% { transform: translate(-40px, 120px) scale(1); }
    60% { transform: translate(40px, 80px) scale(0.9); }
    80% { transform: translate(80px, 40px) scale(1); }
    100% { transform: translate(0, 0) scale(1.1); }
}

@keyframes float-6 {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(60px, -60px) rotate(10deg); }
    66% { transform: translate(-30px, -40px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Page Content */
.page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.maintenance-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    z-index: 1;
}

.maintenance-box {
    background-color: rgba(25, 25, 40, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(107, 125, 255, 0.3);
    border: 1px solid rgba(107, 125, 255, 0.3);
    animation: pulse 4s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.3px;
}

.maintenance-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(107, 125, 255, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 30px rgba(107, 125, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(107, 125, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 30px rgba(107, 125, 255, 0.3);
    }
}

.icon {
    margin-bottom: 20px;
    position: relative;
}

.icon img {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0 10px rgba(107, 125, 255, 0.8));
}

.maintenance-info {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(107, 125, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #6b7dff;
}

.maintenance-info p {
    margin: 10px 0;
    text-align: left;
}

.maintenance-info i {
    margin-right: 10px;
    color: #6b7dff;
}

/* Fortschrittsbalken */
.progress-container {
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 20px 0 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4a5cff 0%, #6b7dff 50%, #8a9aff 100%);
    border-radius: 5px;
    transition: width 1.5s ease-in-out;
    box-shadow: 0 0 10px rgba(107, 125, 255, 0.5);
}

.progress-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    margin-bottom: 25px;
}

/* Features Preview */
.features-preview {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(107, 125, 255, 0.05);
    border-radius: 10px;
}

.features-preview h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #6b7dff;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.feature-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: rgba(25, 25, 40, 0.6);
    border-radius: 12px;
    width: 140px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: rgba(107, 125, 255, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 0 10px rgba(107, 125, 255, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: #6b7dff;
    margin-bottom: 10px;
}

.feature-item span {
    text-align: center;
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 500;
}

/* Link Styling */
.maintenance-info a {
    color: #6b7dff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.maintenance-info a:hover {
    color: #8a9aff;
    text-shadow: 0 0 5px rgba(107, 125, 255, 0.5);
}

.rotating {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

h1 {
    color: #6b7dff;
    margin-bottom: 20px;
    font-size: 32px;
    text-shadow: 0 0 10px rgba(107, 125, 255, 0.5);
    animation: glow 3s infinite alternate;
}

h2 {
    color: #6b7dff;
    margin: 25px 0 15px 0;
    font-size: 22px;
    text-shadow: 0 0 5px rgba(107, 125, 255, 0.3);
}

h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 15px 0 10px;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(107, 125, 255, 0.5);
    }
    to {
        text-shadow: 0 0 15px rgba(107, 125, 255, 0.8);
    }
}

p {
    margin: 10px 0;
    line-height: 1.6;
    font-weight: 300;
    font-size: 16px;
}

.signature {
    color: #6b7dff;
    margin-top: 25px;
    font-style: italic;
    font-size: 18px;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 1s;
}

.scroll-hint {
    margin-top: 20px;
    color: #6b7dff;
    font-weight: 500;
    animation: pulse-text 2s infinite;
}

.scroll-hint i {
    margin-right: 8px;
    animation: bounce 2s infinite;
}

@keyframes pulse-text {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Info Section Styles */
.info-section {
    background-color: rgba(15, 15, 30, 0.5);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    text-align: left;
    border-left: 3px solid #6b7dff;
}

.info-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.info-section li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(107, 125, 255, 0.2);
    display: flex;
    align-items: center;
}

.info-section li:last-child {
    border-bottom: none;
}

.info-section li i {
    color: #6b7dff;
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Progress Section Styles */
.progress-section {
    margin-top: 30px;
    width: 100%;
}

.current-project {
    background-color: rgba(107, 125, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #6b7dff;
}

.highlight {
    color: #6b7dff;
    font-weight: 500;
}

.progress-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-fill {
    height: 100%;
    width: 50%;
    background: linear-gradient(to right, #4b5dff, #6b7dff);
    border-radius: 5px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    font-weight: 500;
    color: #6b7dff;
}

.eta {
    font-size: 14px;
    opacity: 0.8;
}

#completion-date {
    font-weight: 500;
    color: #6b7dff;
}

.code-block {
    margin-top: 30px;
    background-color: rgba(15, 15, 30, 0.7);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    text-align: left;
    border-left: 3px solid #6b7dff;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.code-block .code-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7dff;
    font-family: monospace;
    font-weight: bold;
    font-size: 18px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.code-block p {
    margin-left: 40px;
    font-size: 15px;
    color: #cccccc;
    font-family: monospace;
    position: relative;
    overflow: hidden;
}

.code-block p:after {
    content: '|';
    position: absolute;
    right: -5px;
    animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Additional Content Styles */
.additional-content {
    width: 100%;
    max-width: 1200px;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Feature Section */
.feature-section {
    width: 100%;
    margin: 50px 0;
    text-align: center;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background-color: rgba(25, 25, 40, 0.8);
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(107, 125, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(107, 125, 255, 0.2);
}

.feature-card i {
    font-size: 40px;
    color: #6b7dff;
    margin-bottom: 20px;
}

/* Timeline Section */
.timeline-section {
    width: 100%;
    margin: 50px 0;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: rgba(107, 125, 255, 0.5);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 15px;
    width: 20px;
    height: 20px;
    background: #0f0f1e;
    border: 3px solid #6b7dff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background-color: rgba(25, 25, 40, 0.8);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-content h3 {
    margin-top: 0;
    color: #6b7dff;
}

.timeline-date {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.timeline-item.completed .timeline-dot {
    background: #6b7dff;
}

.timeline-item.active .timeline-dot {
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 125, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(107, 125, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(107, 125, 255, 0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s;
    z-index: 10;
}

.scroll-indicator.hidden {
    opacity: 0;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #6b7dff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background-color: #6b7dff;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-indicator p {
    margin: 15px 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
}

/* Developer Signature Styling */
.developer-signature {
    display: flex;
    align-items: center;
    margin-top: 30px;
    background: rgba(30, 30, 50, 0.7);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(100, 100, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.developer-avatar {
    font-size: 2.5rem;
    color: #6b7dff;
    margin-right: 15px;
    background: rgba(20, 20, 40, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #4b5dff;
}

.developer-info {
    display: flex;
    flex-direction: column;
}

.developer-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
    color: #fff;
    letter-spacing: 1px;
}

.developer-title {
    font-size: 0.9rem;
    color: #6b7dff;
    margin: 0;
    opacity: 0.9;
}

.logo-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4b5dff;
    box-shadow: 0 0 20px rgba(75, 93, 255, 0.5);
    margin-bottom: 20px;
}

/* Rating Section */
.rating-section {
    background-color: rgba(25, 25, 40, 0.8);
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.rating-container {
    max-width: 600px;
    text-align: center;
    background-color: rgba(15, 15, 30, 0.7);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(107, 125, 255, 0.3);
    border: 1px solid rgba(107, 125, 255, 0.2);
}

.rating-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background-color: rgba(107, 125, 255, 0.1);
    border-radius: 10px;
}

.average-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid rgba(107, 125, 255, 0.3);
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffcc00;
    margin-bottom: 5px;
}

.rating-stars {
    color: #ffcc00;
    font-size: 1.2rem;
}

.rating-count {
    font-size: 1.1rem;
    color: #ffffff;
}

#rating-count {
    font-weight: 700;
    color: #6b7dff;
}

.star-rating {
    font-size: 2.5rem;
    margin: 20px 0;
    color: #6b7dff;
    cursor: pointer;
}

.star-rating i {
    margin: 0 5px;
    transition: all 0.2s ease;
}

.star-rating i:hover,
.star-rating i.fas {
    color: #ffcc00;
    transform: scale(1.2);
}

.feedback-form {
    margin: 20px 0;
}

.feedback-form textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(107, 125, 255, 0.3);
    background-color: rgba(15, 15, 30, 0.5);
    color: #ffffff;
    font-family: 'Roboto', Arial, sans-serif;
    resize: none;
    margin-bottom: 15px;
}

.submit-button {
    background: linear-gradient(to right, #4b5dff, #6b7dff);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 125, 255, 0.4);
}

.thank-you-message {
    display: none;
    margin-top: 20px;
    color: #6b7dff;
    font-weight: 500;
}

.user-rating-display {
    margin-top: 15px;
    padding: 15px;
    background-color: rgba(107, 125, 255, 0.1);
    border-radius: 10px;
    display: inline-block;
}

.user-rating-display p {
    margin-bottom: 10px;
    color: #ffffff;
}

#user-rating-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffcc00;
}

.user-stars {
    color: #ffcc00;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.feedback-thanks {
    margin-top: 15px;
    color: #ffffff;
    font-style: italic;
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Rating Form Styles */
.rating-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.rating-form .stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-form .stars i {
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.rating-form .stars i.fas {
    color: #ffd700;
}

.rating-form .stars i:hover {
    color: #ffd700;
}

.rating-form .form-group {
    margin-bottom: 15px;
}

.rating-form input,
.rating-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
}

.rating-form textarea {
    min-height: 100px;
    resize: vertical;
}

.rating-form input:focus,
.rating-form textarea:focus {
    outline: none;
    border-color: #6b7dff;
}

.rating-form button {
    width: 100%;
    padding: 12px;
    background: #6b7dff;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rating-form button:disabled {
    background: #444;
    cursor: not-allowed;
}

.rating-form button:not(:disabled):hover {
    background: #5666ff;
}

.rating-stats {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.rating-stats p {
    margin: 5px 0;
    color: #fff;
}

/* Responsive design */
@media (max-width: 768px) {
    .maintenance-box {
        padding: 20px;
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .code-block {
        font-size: 0.8rem;
        padding: 15px;
    }
    
    .projects-list {
        flex-direction: column;
    }
    
    .project-card {
        width: 100%;
        margin: 10px 0;
    }
    
    .timeline-container {
        padding: 0 10px;
    }
    
    .timeline-item {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .timeline-content {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    
    .timeline-dot {
        margin-right: 0;
    }
    
    .timeline-line {
        left: 15px;
    }
    
    .rating-container {
        padding: 20px 15px;
    }
    
    .star-rating {
        font-size: 2rem;
    }
    
    .rating-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .average-rating {
        margin-right: 0;
        margin-bottom: 15px;
        padding-right: 0;
        padding-bottom: 15px;
        border-right: none;
        border-bottom: 1px solid rgba(107, 125, 255, 0.3);
    }
    
    .feedback-form textarea {
        height: 80px;
    }
    
    .user-rating-display {
        width: 90%;
    }
}

/* Kleinere Mobilgeräte */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .maintenance-box {
        padding: 15px;
        margin: 5px;
    }
    
    .icon i {
        font-size: 2.5rem !important;
    }
    
    .progress-bar {
        height: 15px;
    }
    
    .star-rating {
        font-size: 1.8rem;
    }
    
    .submit-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .rating-number {
        font-size: 2rem;
    }
    
    .floating-element {
        font-size: 2rem;
    }
}
