:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(18, 18, 18, 0.95);
    --border-gold: rgba(255, 215, 0, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a0a 100%);
    --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.2);
    --glow: 0 0 15px rgba(255, 215, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--gradient-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1), transparent 60%);
    z-index: -1;
    animation: shimmer 12s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Header Styles */
header {
    padding: clamp(1rem, 3vw, 1.5rem) 0;
    border-bottom: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.9);
    width: 100vw;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.logo {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(var(--glow));
}

.bee-emoji {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.wallet-btn {
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    background: var(--card-bg);
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    color: var(--primary-gold);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.wallet-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.wallet-btn:hover::before {
    left: 0;
}

.wallet-btn:hover {
    color: var(--dark-bg);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.wallet-btn.connected {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    box-shadow: var(--shadow-gold);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: clamp(2rem, 8vw, 4rem) 0;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.tagline {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-shadow: var(--glow);
}

/* Main Content Grid */
.main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 45vw, 320px), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    margin: clamp(2rem, 6vw, 4rem) 0;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: clamp(1.5rem, 4vw, 2rem);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

/* Stats Card */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    text-align: center;
}

.stat-label {
    color: var(--text-secondary);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-bottom: 0.5rem;
}

.stat-value {
    color: var(--primary-gold);
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 700;
}

/* Input Section */
.input-section {
    margin: 1.5rem 0;
}

.input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.bnb-input {
    width: 100%;
    padding: clamp(1rem, 3vw, 1.2rem) clamp(1rem, 3vw, 1.2rem) clamp(1rem, 3vw, 1.2rem) clamp(3.5rem, 8vw, 4rem);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
}

.bnb-input:focus {
    border-color: var(--primary-gold);
    box-shadow: var(--glow);
}

.bnb-input::-webkit-outer-spin-button,
.bnb-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bnb-input[type=number] {
    -moz-appearance: textfield;
}

.input-suffix {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    background: rgba(255, 215, 0, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    border: 1px solid var(--border-gold);
}

/* Buttons */
.btn {
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    box-shadow: var(--shadow-gold);
    font-size: clamp(1rem, 3vw, 1.1rem);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-buttons .btn {
    flex: 1;
    min-width: 120px;
}

/* Farm Stats */
.farm-stats h2 {
    color: var(--primary-gold);
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stats-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border-gold);
}

.stats-item-label {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.stats-item-value {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Referral Section */
.referral-section {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-gold);
}

.referral-section h3 {
    color: var(--primary-gold);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 0.8rem;
}

.referral-input-wrapper {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.referral-input {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.copy-btn {
    padding: 0.8rem 1.2rem;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Loader */
.loader {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
    text-align: center;
}

.loader.show {
    display: block;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.8rem;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Footer */
footer {
    padding: clamp(2rem, 6vw, 3rem) 0;
    border-top: 1px solid var(--border-gold);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    width: 100vw;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer h3 {
    color: var(--primary-gold);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 0.8rem;
}

.disclaimer p {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

.disclaimer p strong {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Enhanced Responsive for Instructions (How to Play) */
ol, ul {
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

ol li, ul li {
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

@media (max-width: 768px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
    .action-buttons {
        flex-direction: column;
    }
    .referral-input-wrapper {
        flex-direction: column;
    }
    ol, ul {
        padding-left: 1rem;
    }
    ol li, ul li {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    .card {
        padding: 1.5rem;
    }
}

/* Your existing CSS... (no major changes, just added for the new ul in overview) */

.card ul {
    list-style-type: none; /* Remove default bullets for custom look */
    padding-left: 0;
}

.card ul li::before {
    content: "🍯 "; /* Add honey emoji as bullet */
    color: var(--primary-gold);
    font-weight: bold;
}

/* Responsive enhancement for lists in cards */
@media (max-width: 768px) {
    .card ul li {
        padding: 0.5rem 0;
        font-size: 1rem;
    }
}

/* New: Floating Bee in Hero */
.bee-float {
    position: absolute;
    top: 20%; right: 10%; font-size: 4rem; animation: float 4s ease-in-out infinite;
    opacity: 0.7;
}

/* New: Overview Banner */
.overview-banner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 20px; margin: 2rem 0; padding: 2rem; text-align: center;
    border: 1px solid var(--border-gold);
}

.overview-content h2 {
    color: var(--primary-gold); font-size: 2rem; margin-bottom: 1rem;
}

.honeycomb-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-top: 1.5rem;
}

.honey-cell {
    background: var(--card-bg); padding: 1rem; border-radius: 50%; border: 2px solid var(--border-gold);
    display: flex; flex-direction: column; align-items: center; transition: all 0.3s ease;
}

.honey-cell:hover {
    transform: scale(1.05); box-shadow: var(--glow);
}

.stat-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* New: Journey Section */
.journey-section {
    margin: 3rem 0; text-align: center;
}

.journey-section h2 {
    color: var(--primary-gold); font-size: 1.8rem; margin-bottom: 1rem;
}

.timeline {
    display: flex; justify-content: space-between; align-items: center; position: relative; margin: 2rem 0; max-width: 100%;
    flex-wrap: wrap; /* For mobile stack */
}

.step {
    flex: 1; min-width: 200px; background: var(--card-bg); border-radius: 12px; padding: 1.5rem; margin: 0 0.5rem;
    text-align: center; border: 1px solid var(--border-gold); transition: all 0.3s ease; opacity: 0; transform: translateY(20px);
}

.step.reveal { opacity: 1; transform: translateY(0); }

.step-number {
    background: var(--gradient-gold); color: var(--dark-bg); width: 40px; height: 40px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-weight: bold; margin: 0 auto 1rem;
}

.step-content h3 { color: var(--primary-gold); margin-bottom: 0.5rem; font-size: 1.2rem; }

.step-connector {
    height: 2px; background: var(--border-gold); flex: 1; max-width: 100px; margin: 0 1rem;
}

@media (max-width: 768px) {
    .timeline { flex-direction: column; align-items: stretch; }
    .step { margin: 1rem 0; }
    .step-connector { display: none; } /* Hide on mobile */
}

/* New: Tip Box */
.tip-box {
    background: rgba(255, 215, 0, 0.1); padding: 1rem; border-radius: 10px; border-left: 4px solid var(--primary-gold);
    margin-top: 2rem; text-align: left; color: var(--text-secondary);
}

/* New: Rules Teaser (Sticky on Scroll) */
.rules-teaser {
    background: rgba(0, 0, 0, 0.8); border-top: 1px solid var(--border-gold); padding: 1rem 0; position: sticky; bottom: 0;
    z-index: 10;
}

.rules-teaser h3 { color: var(--primary-gold); margin-bottom: 0.5rem; font-size: 1.2rem; }

.rules-teaser p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }

/* Updated: Bee Badges (Replaces Honeycomb) */
.bee-badges {
    display: flex; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap;
}

.bee-badge {
    background: var(--gradient-gold); color: var(--dark-bg); padding: 1rem 1.5rem; border-radius: 8px;
    display: flex; flex-direction: column; align-items: center; min-width: 150px; transition: all 0.3s ease;
    box-shadow: var(--shadow-gold); position: relative; overflow: hidden;
}

.bee-badge::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: rotate(45deg); transition: all 0.6s ease; opacity: 0;
}

.bee-badge:hover::before {
    animation: shine 0.6s ease-in-out; opacity: 1;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.badge-icon {
    font-size: 1.8rem; margin-bottom: 0.5rem; animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.badge-text {
    font-size: 0.9rem; font-weight: 600; text-align: center; line-height: 1.3;
}

/* Responsive for Badges */
@media (max-width: 768px) {
    .bee-badges { flex-direction: column; align-items: center; gap: 1rem; }
    .bee-badge { min-width: 200px; }
}

/* Enhanced Hero: Tagline Pulse */
.tagline {
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* New: Floating Bee in Hero (same as How-to-Play) */
.bee-float {
    position: absolute;
    top: 20%; right: 10%; font-size: 4rem; animation: float 4s ease-in-out infinite;
    opacity: 0.7; z-index: 1;
}

/* Enhanced Cards: Hive Card Specific */
.hive-card {
    position: relative;
}

.hive-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

/* New: Bee Stats Badges (Adapted for Main) */
.bee-stats {
    display: flex; justify-content: space-around; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}

.stat-badge {
    background: var(--gradient-gold); color: var(--dark-bg); padding: 0.8rem 1rem; border-radius: 8px;
    display: flex; flex-direction: column; align-items: center; min-width: 80px; transition: all 0.3s ease;
    box-shadow: var(--shadow-gold); position: relative; overflow: hidden; cursor: pointer;
}

.stat-badge::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: rotate(45deg); transition: all 0.6s ease; opacity: 0;
}

.stat-badge:hover::before {
    animation: shine 0.6s ease-in-out; opacity: 1;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.badge-icon {
    font-size: 1.5rem; margin-bottom: 0.3rem; animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.badge-text {
    font-size: 0.8rem; font-weight: 600; text-align: center; line-height: 1.2;
}

/* Responsive for Stats Badges */
@media (max-width: 768px) {
    .bee-stats { flex-direction: column; align-items: center; gap: 0.8rem; }
    .stat-badge { min-width: 120px; }
}

/* Enhanced Shimmer in Body */
body::before {
    animation: shimmer 8s ease-in-out infinite alternate; /* Faster for more buzz */
}

/* Fixed: Badge Labels in Stats */
.badge-label {
    font-size: 0.7rem; color: var(--text-secondary); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.5px;
}

/* Adjust badge height for labels */
.stat-badge {
    min-height: 70px; padding: 0.5rem;
}

@media (max-width: 768px) {
    .badge-label { font-size: 0.6rem; }
}

.card h2 {
    color: var(--primary-gold);
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.farm-stats h2 {
    color: var(--primary-gold);
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bee-float {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 4rem;
    animation: float 4s ease-in-out infinite;
    opacity: 0.7;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}
/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(0.8rem, 2vw, 1rem);
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

/* Enhanced Button Styles for How to Play and View Audit */
.how-to-play-btn, .audit-btn {
    padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1rem, 2vw, 1.2rem);
    border-radius: 10px;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    max-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
}

.how-to-play-btn {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    box-shadow: var(--shadow-gold);
}

.how-to-play-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    animation: wiggle 0.5s ease-in-out;
}

.audit-btn {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.audit-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-gold);
    animation: wiggle 0.5s ease-in-out;
}

/* Wiggle Animation for Bee Theme */
@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center; /* Zentriert die Buttons vertikal */
        justify-content: center; /* Zentriert die Buttons horizontal */
        width: 100%; /* Stellt sicher, dass der Container die volle Breite nutzt */
    }
    .how-to-play-btn, .audit-btn {
        width: 100%; /* Buttons nehmen die volle Breite des Containers ein */
        max-width: 150px; /* Behält die maximale Breite bei */
    }
}