/* ============================================
   PUBLIC DYNAMIC ISLAND STYLES
   Matching internal system design
   ============================================ */

/* Base Public Island Styling */
.public-island {
    /* Container styling similar to internal dynamic island */
    background: linear-gradient(135deg, var(--island-blue, #0066FF), var(--island-cyan, #00D4FF));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.public-island:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 102, 255, 0.45);
}

.island-public-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.public-info-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.public-info-badge i {
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.btn-public-login-island {
    background: white;
    color: var(--primary-color, #0066FF);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-public-login-island:hover {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-public-login-island i {
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .island-public-info {
        display: none;
    }

    .public-info-badge {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .btn-public-login-island span {
        display: none;
    }

    .btn-public-login-island {
        padding: 0.75rem;
        width: 45px;
        height: 45px;
        justify-content: center;
    }
}