/* Bloom AI Entry Panel Styles */
#bloom-entry {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: #030303;
    color: white;
    font-family: 'Satoshi', sans-serif;
    overflow: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

#bloom-entry.fade-out {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);
}

.font-display {
    font-family: 'Clash Display', sans-serif;
}

.serif-italic {
    font-family: 'Georgia', serif;
    font-style: italic;
}

/* Main Panel Borders */
.main-panel {
    border: 1px solid rgba(100, 255, 150, 0.18);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(10, 15, 10, 0.85) 0%, rgba(5, 10, 5, 0.9) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 0 80px rgba(100, 255, 150, 0.15);
}

/* Card Borders */
.card-border {
    border: 1px solid rgba(100, 255, 150, 0.15);
    border-radius: 20px;
    background: rgba(12, 18, 12, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.card-border:hover {
    border-color: rgba(100, 255, 150, 0.35);
    background: rgba(15, 25, 15, 0.75);
    box-shadow: 0 0 30px rgba(100, 255, 150, 0.1);
}

/* Buttons */
.glass-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-button:hover {
    background: rgba(100, 255, 150, 0.15);
    border-color: rgba(100, 255, 150, 0.4);
}

.pill-button {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pill-button:hover {
    background: rgba(100, 255, 150, 0.1);
    border-color: rgba(100, 255, 150, 0.3);
}

#earth-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.green-glow {
    box-shadow: 0 0 100px rgba(100, 255, 150, 0.3);
}

.text-glow {
    text-shadow: 0 0 30px rgba(100, 255, 150, 0.4);
}

.gradient-overlay {
    background: radial-gradient(ellipse at 65% 45%, rgba(30, 100, 60, 0.5) 0%, rgba(10, 20, 10, 0.3) 40%, transparent 70%);
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.icon-btn:hover {
    background: rgba(100, 255, 150, 0.15);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 40px rgba(100, 255, 150, 0.2); }
    50% { box-shadow: 0 0 60px rgba(100, 255, 150, 0.35); }
}

.pulse-glow {
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Social Bar */
.social-bar {
    background: rgba(12, 18, 12, 0.5);
    border: 1px solid rgba(100, 255, 150, 0.15);
    border-radius: 30px;
    padding: 6px 14px;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 12px;
}

.social-bar i {
    font-size: 14px;
    color: rgba(167, 243, 208, 0.7);
    transition: color 0.3s ease;
}

.social-bar i:hover {
    color: #10b981;
}

/* Adjustments for the specific image layout */
#bloom-entry .main-panel {
    background: radial-gradient(circle at center, rgba(16, 44, 32, 0.9) 0%, rgba(3, 3, 3, 0.98) 100%);
    border: 1px solid rgba(100, 255, 150, 0.2);
}
